mirror of https://git.ffmpeg.org/ffmpeg.git
mp3enc: clarify meaning of "Unsupported" messages.
They will only cause us to skip writing the Xing header, not cause any serious breakage. Related to trac issue #1027. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
This commit is contained in:
parent
64bd7f8e4d
commit
4c53c66a21
|
@ -131,14 +131,14 @@ static int mp3_write_xing(AVFormatContext *s)
|
|||
break;
|
||||
}
|
||||
if (i == FF_ARRAY_ELEMS(avpriv_mpa_freq_tab)) {
|
||||
av_log(s, AV_LOG_ERROR, "Unsupported sample rate.\n");
|
||||
av_log(s, AV_LOG_WARNING, "Unsupported sample rate, not writing Xing header.\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
switch (codec->channels) {
|
||||
case 1: channels = MPA_MONO; break;
|
||||
case 2: channels = MPA_STEREO; break;
|
||||
default: av_log(s, AV_LOG_ERROR, "Unsupported number of channels.\n"); return -1;
|
||||
default: av_log(s, AV_LOG_WARNING, "Unsupported number of channels, not writing Xing header.\n"); return -1;
|
||||
}
|
||||
|
||||
/* dummy MPEG audio header */
|
||||
|
|
Loading…
Reference in New Issue