mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
lavf: check that the codec is supported by extract_extradata
Avoids superfluous error message spam after
8e2ea69135
This commit is contained in:
parent
788544ff0e
commit
096a8effa3
@ -2099,6 +2099,16 @@ static int extract_extradata_init(AVStream *st)
|
||||
if (!f)
|
||||
goto finish;
|
||||
|
||||
/* check that the codec id is supported */
|
||||
if (f->codec_ids) {
|
||||
const enum AVCodecID *ids;
|
||||
for (ids = f->codec_ids; *ids != AV_CODEC_ID_NONE; ids++)
|
||||
if (*ids == st->codecpar->codec_id)
|
||||
break;
|
||||
if (*ids == AV_CODEC_ID_NONE)
|
||||
goto finish;
|
||||
}
|
||||
|
||||
i->extract_extradata.pkt = av_packet_alloc();
|
||||
if (!i->extract_extradata.pkt)
|
||||
return AVERROR(ENOMEM);
|
||||
|
Loading…
Reference in New Issue
Block a user