summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2015-08-25 12:06:54 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2015-08-25 12:07:38 +0200
commit91619d195b371d9f8f39268fc00b9456f2fb8974 (patch)
tree035f821f9138df2b2845c9082f3e56c970585488
parent1f4c62e84e586c52282a58ff878022a79feac4d1 (diff)
lavf/dnxhd: Autodetect more valid files.
-rw-r--r--libavformat/dnxhddec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/dnxhddec.c b/libavformat/dnxhddec.c
index 910e6b6684..37e52d54c2 100644
--- a/libavformat/dnxhddec.c
+++ b/libavformat/dnxhddec.c
@@ -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 > 1258)
+ if (compression_id < 1235 || compression_id > 1260)
return 0;
return AVPROBE_SCORE_MAX;
}