Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2014-12-05 17:31:20 +0300
committerLuca Barbato <lu_zero@gentoo.org>2014-12-07 15:15:03 +0300
commit4f5906a1d7f4368cec43b224e8a675f54d2001d2 (patch)
treec81d91396fd010fa2cf3fea2634baf60faeb5790 /libavformat/rawdec.c
parent71f29410e7c58f2ce4aef1d4b8d8d3c064c8ec06 (diff)
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.c2
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;