diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-05-26 00:28:12 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-05-26 00:29:36 +0200 |
commit | 5193407cf68e974f599b614b4ef6c5aca9f53045 (patch) | |
tree | 7b8f319be52fca6a4fff3aa0b0099956b741dcde /libavformat | |
parent | 83a04f8cc16f656ee14b71fd7979a48c49c4b830 (diff) | |
download | ffmpeg-5193407cf68e974f599b614b4ef6c5aca9f53045.tar.gz |
lavf/dnxhd: Autodetect more files that can be decoded.
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/dnxhddec.c | 2 |
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; } |