Commit 0c904db1 authored by Michael Niedermayer's avatar Michael Niedermayer

typo

Originally committed as revision 10910 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent eb1c687b
......@@ -78,7 +78,7 @@ static int mpegps_probe(AVProbeData *p)
for(i=0; i<p->buf_size; i++){
code = (code<<8) + p->buf[i];
if ((code & 0xffffff00) == 0x100) {
int pes= check_pes(p->buf+i, p->buf+i+p->buf_size);
int pes= check_pes(p->buf+i, p->buf+p->buf_size);
if(code == SYSTEM_HEADER_START_CODE) sys++;
else if(code == PRIVATE_STREAM_1) priv1++;
......
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