From 5193407cf68e974f599b614b4ef6c5aca9f53045 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Tue, 26 May 2015 00:28:12 +0200 Subject: [PATCH] lavf/dnxhd: Autodetect more files that can be decoded. --- libavformat/dnxhddec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }