Commit 73365dce authored by michaelni's avatar michaelni

fixing mp3 detection patch by (John Ryland <jryland at trolltech dot com>)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@1213 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f12200c4
...@@ -169,7 +169,7 @@ static int mpegvideo_probe(AVProbeData *p) ...@@ -169,7 +169,7 @@ static int mpegvideo_probe(AVProbeData *p)
if (code == SEQ_START_CODE || if (code == SEQ_START_CODE ||
code == GOP_START_CODE || code == GOP_START_CODE ||
code == PICTURE_START_CODE) code == PICTURE_START_CODE)
return AVPROBE_SCORE_MAX - 1; return 50 - 1;
else else
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment