projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4baee11
)
latm: Do not give a score for a single instance
author
Luca Barbato
<lu_zero@gentoo.org>
Fri, 5 Dec 2014 14:31:20 +0000
(15:31 +0100)
committer
Luca Barbato
<lu_zero@gentoo.org>
Mon, 12 Jan 2015 22:18:01 +0000
(23:18 +0100)
Bug-Id: 773
CC: libav-stable@libav.org
libavformat/rawdec.c
patch
|
blob
|
history
diff --git
a/libavformat/rawdec.c
b/libavformat/rawdec.c
index 09fdbc327f787f43e4177f8e77c55afd1fb2dcd8..65cb6bb00f1a8c5ad8c0f9635dfa917d1d3d3927 100644
(file)
--- 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;