Commit 5193407c authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

lavf/dnxhd: Autodetect more files that can be decoded.

parent 83a04f8c
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment