summaryrefslogtreecommitdiff
path: root/libavformat/h261dec.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/h261dec.c')
-rw-r--r--libavformat/h261dec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/h261dec.c b/libavformat/h261dec.c
index 9b9e3f46a6..4a5805020f 100644
--- a/libavformat/h261dec.c
+++ b/libavformat/h261dec.c
@@ -56,9 +56,9 @@ static int h261_probe(AVProbeData *p)
}
}
if(valid_psc > 2*invalid_psc + 6){
- return 50;
+ return AVPROBE_SCORE_EXTENSION;
}else if(valid_psc > 2*invalid_psc + 2)
- return 25;
+ return AVPROBE_SCORE_EXTENSION / 2;
return 0;
}