From e81e3ced6df0ca98cbc4dbefcee33e6a494eebcc Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Wed, 2 Aug 2006 08:45:10 +0000 Subject: do not set unneeded fourcc Originally committed as revision 5886 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/gxf.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/libavformat/gxf.c b/libavformat/gxf.c index dccfdd7474..d247e2fb97 100644 --- a/libavformat/gxf.c +++ b/libavformat/gxf.c @@ -112,32 +112,27 @@ static int get_sindex(AVFormatContext *s, int id, int format) { case 4: st->codec->codec_type = CODEC_TYPE_VIDEO; st->codec->codec_id = CODEC_ID_MJPEG; - st->codec->codec_tag = MKTAG('M', 'J', 'P', 'G'); break; case 13: case 15: st->codec->codec_type = CODEC_TYPE_VIDEO; st->codec->codec_id = CODEC_ID_DVVIDEO; - st->codec->codec_tag = MKTAG('d', 'v', 'c', ' '); break; case 14: case 16: st->codec->codec_type = CODEC_TYPE_VIDEO; st->codec->codec_id = CODEC_ID_DVVIDEO; - st->codec->codec_tag = MKTAG('d', 'v', 'c', 'p'); break; case 11: case 12: case 20: st->codec->codec_type = CODEC_TYPE_VIDEO; st->codec->codec_id = CODEC_ID_MPEG2VIDEO; - st->codec->codec_tag = MKTAG('M', 'P', 'G', '2'); break; case 22: case 23: st->codec->codec_type = CODEC_TYPE_VIDEO; st->codec->codec_id = CODEC_ID_MPEG1VIDEO; - st->codec->codec_tag = MKTAG('M', 'P', 'G', '1'); break; case 9: st->codec->codec_type = CODEC_TYPE_AUDIO; -- cgit v1.2.3