summaryrefslogtreecommitdiff
path: root/libavformat/mpegvideodec.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/mpegvideodec.c')
-rw-r--r--libavformat/mpegvideodec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/mpegvideodec.c b/libavformat/mpegvideodec.c
index 471d2f4d94..a400978d02 100644
--- a/libavformat/mpegvideodec.c
+++ b/libavformat/mpegvideodec.c
@@ -63,8 +63,8 @@ static int mpegvideo_probe(AVProbeData *p)
}
}
if(seq && seq*9<=pic*10 && pic*9<=slice*10 && !pspack && !apes && !res && slice > sicle) {
- if(vpes) return AVPROBE_SCORE_MAX/8;
- else return pic>1 ? AVPROBE_SCORE_MAX/2+1 : AVPROBE_SCORE_MAX/4; // +1 for .mpg
+ if(vpes) return AVPROBE_SCORE_EXTENSION / 4;
+ else return pic>1 ? AVPROBE_SCORE_EXTENSION + 1 : AVPROBE_SCORE_EXTENSION / 2; // +1 for .mpg
}
return 0;
}