summaryrefslogtreecommitdiff
path: root/libavformat/dnxhddec.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2015-05-26 00:28:12 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2015-05-26 00:29:36 +0200
commit5193407cf68e974f599b614b4ef6c5aca9f53045 (patch)
tree7b8f319be52fca6a4fff3aa0b0099956b741dcde /libavformat/dnxhddec.c
parent83a04f8cc16f656ee14b71fd7979a48c49c4b830 (diff)
lavf/dnxhd: Autodetect more files that can be decoded.
Diffstat (limited to 'libavformat/dnxhddec.c')
-rw-r--r--libavformat/dnxhddec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/dnxhddec.c b/libavformat/dnxhddec.c
index 7b554003f1..910e6b6684 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 > 1253)
+ if (compression_id < 1235 || compression_id > 1258)
return 0;
return AVPROBE_SCORE_MAX;
}