rtpenc: Add an error message

Also return a proper error code.

Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
Martin Storsjö 2010-09-05 01:10:54 +03:00
parent c4584f3c1f
commit ada4e362b9

View File

@ -85,8 +85,10 @@ static int rtp_write_header(AVFormatContext *s1)
int max_packet_size, n;
AVStream *st;
if (s1->nb_streams != 1)
return -1;
if (s1->nb_streams != 1) {
av_log(s1, AV_LOG_ERROR, "Only one stream supported in the RTP muxer\n");
return AVERROR(EINVAL);
}
st = s1->streams[0];
if (!is_supported(st->codec->codec_id)) {
av_log(s1, AV_LOG_ERROR, "Unsupported codec %x\n", st->codec->codec_id);