mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
avformat/m4vdec: raise threshold slightly for detection
Fixes Ticket3746 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
f32c5d1a8d
commit
b83e0903ec
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user