git.videolan.org
/
ffmpeg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
avformat/icodec: reduce score returned on probing
[ffmpeg.git]
/
libavformat
/
icodec.c
diff --git
a/libavformat/icodec.c
b/libavformat/icodec.c
index
fa308da
..
4c038e9
100644
(file)
--- a/
libavformat/icodec.c
+++ b/
libavformat/icodec.c
@@
-45,7
+45,7
@@
typedef struct {
static int probe(AVProbeData *p)
{
if (AV_RL16(p->buf) == 0 && AV_RL16(p->buf + 2) == 1 && AV_RL16(p->buf + 4))
- return AVPROBE_SCORE_MAX /
3
;
+ return AVPROBE_SCORE_MAX /
4
;
return 0;
}