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:
authorMichael Niedermayer <michaelni@gmx.at>2014-07-09 19:02:34 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-07-09 19:02:34 +0400
commitb83e0903ec4d2cb555fb5ba9c28c2dabde8091e5 (patch)
treeff3676441943c4fd7495c12dd76adf6c51f75ce6 /libavformat/m4vdec.c
parentf32c5d1a8daeaf95877757202f78f99ea25adb3c (diff)
avformat/m4vdec: raise threshold slightly for detection
Fixes Ticket3746 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/m4vdec.c')
-rw-r--r--libavformat/m4vdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/m4vdec.c b/libavformat/m4vdec.c
index c2fd4d7ab6..ead0066cca 100644
--- a/libavformat/m4vdec.c
+++ b/libavformat/m4vdec.c
@@ -45,7 +45,7 @@ static int mpeg4video_probe(AVProbeData *probe_packet)
}
if (VOP >= VISO && VOP >= VOL && VO >= VOL && VOL > 0 && res==0)
- return VOP+VO > 3 ? AVPROBE_SCORE_EXTENSION : AVPROBE_SCORE_EXTENSION/2;
+ return VOP+VO > 4 ? AVPROBE_SCORE_EXTENSION : AVPROBE_SCORE_EXTENSION/2;
return 0;
}