diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2014-12-05 15:31:20 +0100 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2014-12-07 13:15:03 +0100 |
commit | 4f5906a1d7f4368cec43b224e8a675f54d2001d2 (patch) | |
tree | c81d91396fd010fa2cf3fea2634baf60faeb5790 /libavformat/rawdec.c | |
parent | 71f29410e7c58f2ce4aef1d4b8d8d3c064c8ec06 (diff) | |
download | ffmpeg-4f5906a1d7f4368cec43b224e8a675f54d2001d2.tar.gz |
latm: Do not give a score for a single instance
Bug-Id: 773
CC: libav-stable@libav.org
Diffstat (limited to 'libavformat/rawdec.c')
-rw-r--r-- | libavformat/rawdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rawdec.c b/libavformat/rawdec.c index 09fdbc327f..65cb6bb00f 100644 --- a/libavformat/rawdec.c +++ b/libavformat/rawdec.c @@ -155,7 +155,7 @@ static int latm_read_probe(AVProbeData *p) return AVPROBE_SCORE_EXTENSION; else if (max_frames >= 3) return AVPROBE_SCORE_EXTENSION / 2; - else if (max_frames >= 1) + else if (max_frames > 1) return 1; else return 0; |