rtpenc: Add an error message

Also return a proper error code.

Signed-off-by: Martin Storsjö <martin@martin.st>
pull/3/merge
Martin Storsjö 15 years ago
parent c4584f3c1f
commit ada4e362b9
  1. 6
      libavformat/rtpenc.c

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

Loading…
Cancel
Save