mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 11:49:48 +00:00
rtpenc: Add an error message
Also return a proper error code. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
c4584f3c1f
commit
ada4e362b9
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user