From 9ed0023447c3bbdf9a080cc386ce0ef7590a4195 Mon Sep 17 00:00:00 2001 From: Reimar Döffinger Date: Wed, 22 Nov 2006 18:31:28 +0000 Subject: Set st->need_parsing = 2 for MPEG-content. Originally committed as revision 7158 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/gxf.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavformat/gxf.c') diff --git a/libavformat/gxf.c b/libavformat/gxf.c index 5f4ce83906..186f61191e 100644 --- a/libavformat/gxf.c +++ b/libavformat/gxf.c @@ -130,11 +130,13 @@ static int get_sindex(AVFormatContext *s, int id, int format) { case 20: st->codec->codec_type = CODEC_TYPE_VIDEO; st->codec->codec_id = CODEC_ID_MPEG2VIDEO; + st->need_parsing = 2; // get keyframe flag etc. break; case 22: case 23: st->codec->codec_type = CODEC_TYPE_VIDEO; st->codec->codec_id = CODEC_ID_MPEG1VIDEO; + st->need_parsing = 2; // get keyframe flag etc. break; case 9: st->codec->codec_type = CODEC_TYPE_AUDIO; -- cgit v1.2.3