Browse Source

Improve sofdec dectection to avoid false positives for MP2.

Patch by tralph11, tralph11 yahoo

Originally committed as revision 20333 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
tralph11@yahoo.com Carl Eugen Hoyos 16 years ago
parent
commit
711e69a730
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavformat/mpeg.c

+ 2
- 0
libavformat/mpeg.c View File

@@ -113,6 +113,8 @@ static int mpegps_read_header(AVFormatContext *s,
m->sofdec++;
} while (v == sofdec[i] && i++ < 6);

m->sofdec = (m->sofdec == 6) ? 1 : 0;

/* no need to do more */
return 0;
}


Loading…
Cancel
Save