mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
lavf/mov: Confine 0x00000000 to raw/twos fourcc mapping to version 0 sample descriptions
Confine the 0x00000000 to 'raw '/'twos' fourcc mapping to old version 0 sound sample descriptions, since they are the only valid sample descriptions for this type of mapping. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
8f4c3e4b92
commit
b58cfa616c
@ -1863,7 +1863,7 @@ static void mov_parse_stsd_audio(MOVContext *c, AVIOContext *pb,
|
||||
}
|
||||
}
|
||||
|
||||
if (sc->format == 0) {
|
||||
if (version == 0 && sc->format == 0) {
|
||||
if (st->codec->bits_per_coded_sample == 8)
|
||||
st->codec->codec_id = mov_codec_id(st, MKTAG('r','a','w',' '));
|
||||
else if (st->codec->bits_per_coded_sample == 16)
|
||||
|
Loading…
Reference in New Issue
Block a user