diff options
Diffstat (limited to 'ffmpeg/libavformat/h263dec.c')
| -rw-r--r-- | ffmpeg/libavformat/h263dec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ffmpeg/libavformat/h263dec.c b/ffmpeg/libavformat/h263dec.c index 667fdbd..e6e0345 100644 --- a/ffmpeg/libavformat/h263dec.c +++ b/ffmpeg/libavformat/h263dec.c @@ -56,9 +56,9 @@ static int h263_probe(AVProbeData *p) } } if(valid_psc > 2*invalid_psc + 2*res_change + 3){ - return 50; + return AVPROBE_SCORE_EXTENSION; }else if(valid_psc > 2*invalid_psc) - return 25; + return AVPROBE_SCORE_EXTENSION / 2; return 0; } |
