diff options
author | Baptiste Coudurier | 2006-08-02 08:45:10 +0000 |
---|---|---|
committer | Baptiste Coudurier | 2006-08-02 08:45:10 +0000 |
commit | e81e3ced6df0ca98cbc4dbefcee33e6a494eebcc (patch) | |
tree | 1d11867c5b91bb31f7d81b1425b6db0a7a4a628e /libavformat | |
parent | 7fe4744bcdc9689786015fca2390169e6e439813 (diff) |
do not set unneeded fourcc
Originally committed as revision 5886 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/gxf.c | 5 |
1 files changed, 0 insertions, 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; |