Commit 149f7c02 authored by Michael Niedermayer's avatar Michael Niedermayer

fix MPEG-TS missdetected as MPEG-PS

Originally committed as revision 2194 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 77ee78bc
......@@ -429,7 +429,7 @@ static int mpegps_probe(AVProbeData *p)
code == PROGRAM_STREAM_MAP ||
code == PRIVATE_STREAM_1 ||
code == PADDING_STREAM)
return AVPROBE_SCORE_MAX - 1;
return AVPROBE_SCORE_MAX - 2;
else
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