mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-22 15:00:10 +01:00
avformat/flac_picture: print a warning when mimetype is unknown
It's not an error since bba6df9ac7.
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
@@ -89,7 +89,7 @@ int ff_flac_parse_picture(AVFormatContext *s, uint8_t **bufp, int buf_size,
|
|||||||
mime++;
|
mime++;
|
||||||
}
|
}
|
||||||
if (id == AV_CODEC_ID_NONE) {
|
if (id == AV_CODEC_ID_NONE) {
|
||||||
av_log(s, AV_LOG_ERROR, "Unknown attached picture mimetype: %s.\n",
|
av_log(s, AV_LOG_WARNING, "Unknown attached picture mimetype: %s.\n",
|
||||||
mimetype);
|
mimetype);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user