Browse Source

fix MPEG-TS missdetected as MPEG-PS

Originally committed as revision 2194 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 22 years ago
parent
commit
149f7c029c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/mpeg.c

+ 1
- 1
libavformat/mpeg.c View File

@@ -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;
}


Loading…
Cancel
Save