mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-19 05:40:56 +00:00
lavf/dnxhd: Autodetect more files that can be decoded.
This commit is contained in:
parent
83a04f8cc1
commit
5193407cf6
@ -37,7 +37,7 @@ static int dnxhd_probe(AVProbeData *p)
|
||||
if (!w || !h)
|
||||
return 0;
|
||||
compression_id = AV_RB32(p->buf + 0x28);
|
||||
if (compression_id < 1235 || compression_id > 1253)
|
||||
if (compression_id < 1235 || compression_id > 1258)
|
||||
return 0;
|
||||
return AVPROBE_SCORE_MAX;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user