Commit adcb72b5 authored by Michael Niedermayer's avatar Michael Niedermayer

set pict_type to I type during init so parsers which dont set it get all i...

set pict_type to I type during init so parsers which dont set it get all i frames, fixes mp3 seeking

Originally committed as revision 8528 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent d215d07a
......@@ -70,6 +70,7 @@ AVCodecParserContext *av_parser_init(int codec_id)
}
}
s->fetch_timestamp=1;
s->pict_type = FF_I_TYPE;
return s;
}
......
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