Commit e993bc03 authored by Michael Niedermayer's avatar Michael Niedermayer

10000l vbr mp3 fix

Originally committed as revision 3911 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 38d5c282
......@@ -502,7 +502,7 @@ typedef struct MpegAudioParseContext {
/* header + layer + bitrate + freq + lsf/mpeg25 */
#define SAME_HEADER_MASK \
(0xffe00000 | (3 << 17) | (0xf << 12) | (3 << 10) | (3 << 19))
(0xffe00000 | (3 << 17) | (3 << 10) | (3 << 19))
static int mpegaudio_parse_init(AVCodecParserContext *s1)
{
......
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