summaryrefslogtreecommitdiff
path: root/libavformat/dnxhddec.c
diff options
context:
space:
mode:
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 e5c438197f..7b554003f1 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 < 1237 || compression_id > 1253)
+ if (compression_id < 1235 || compression_id > 1253)
return 0;
return AVPROBE_SCORE_MAX;
}