[FFmpeg-cvslog] lavf/dnxhd: Autodetect more valid files.
Carl Eugen Hoyos
git at videolan.org
Tue Aug 25 12:08:50 CEST 2015
ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Tue Aug 25 12:06:54 2015 +0200| [91619d195b371d9f8f39268fc00b9456f2fb8974] | committer: Carl Eugen Hoyos
lavf/dnxhd: Autodetect more valid files.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=91619d195b371d9f8f39268fc00b9456f2fb8974
---
libavformat/dnxhddec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/dnxhddec.c b/libavformat/dnxhddec.c
index 910e6b6..37e52d5 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;
}
More information about the ffmpeg-cvslog
mailing list