mirror of https://git.ffmpeg.org/ffmpeg.git
lavf/mov: Don't limit fourcc 0 -> raw/twos to version 0 sample descriptions
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
d7c75a5db0
commit
a51c8a68ad
|
@ -1863,7 +1863,7 @@ static void mov_parse_stsd_audio(MOVContext *c, AVIOContext *pb,
|
|||
}
|
||||
}
|
||||
|
||||
if (version == 0 && sc->format == 0) {
|
||||
if (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