mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avformat/mov: Read multiple stsd from DV
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
6f0a1710d7
commit
a765ba647d
@ -2213,6 +2213,8 @@ static int mov_skip_multiple_stsd(MOVContext *c, AVIOContext *pb,
|
||||
(codec_tag != format &&
|
||||
// prores is allowed to have differing data format and codec tag
|
||||
codec_tag != AV_RL32("apcn") && codec_tag != AV_RL32("apch") &&
|
||||
// so is dv (sigh)
|
||||
codec_tag != AV_RL32("dvpp") && codec_tag != AV_RL32("dvcp") &&
|
||||
(c->fc->video_codec_id ? video_codec_id != c->fc->video_codec_id
|
||||
: codec_tag != MKTAG('j','p','e','g')))) {
|
||||
/* Multiple fourcc, we skip JPEG. This is not correct, we should
|
||||
|
Loading…
Reference in New Issue
Block a user