diff options
author | John Ryland <jryland@trolltech.com> | 2002-11-14 19:53:14 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-11-14 19:53:14 +0000 |
commit | b24cf8283e2aa25029019dcc96ecc35bc3137fa7 (patch) | |
tree | 61d61fb55ec9e2987c21aaa80bc6dad107cae3f0 | |
parent | a32072d0e98e7a1642eacdd3367f94699de0bfad (diff) | |
download | ffmpeg-b24cf8283e2aa25029019dcc96ecc35bc3137fa7.tar.gz |
fixing mp3 detection patch by (John Ryland <jryland at trolltech dot com>)
Originally committed as revision 1213 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libav/raw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libav/raw.c b/libav/raw.c index 1825f4b21d..6418ec5fa6 100644 --- a/libav/raw.c +++ b/libav/raw.c @@ -169,7 +169,7 @@ static int mpegvideo_probe(AVProbeData *p) if (code == SEQ_START_CODE || code == GOP_START_CODE || code == PICTURE_START_CODE) - return AVPROBE_SCORE_MAX - 1; + return 50 - 1; else return 0; } |