diff options
author | Baptiste Coudurier | 2006-08-02 10:37:10 +0000 |
---|---|---|
committer | Baptiste Coudurier | 2006-08-02 10:37:10 +0000 |
commit | 51a0a721aba377ce843eede07395ce9eb00d528e (patch) | |
tree | 76f6fa9a01ee2822f55f230ba01d702614701f63 /libavformat/gxf.c | |
parent | 0019b662aece0e548115141765acb524c83ee7d3 (diff) |
remove unneeded audio fourcc as well
Originally committed as revision 5889 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/gxf.c')
-rw-r--r-- | libavformat/gxf.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavformat/gxf.c b/libavformat/gxf.c index 26c3fc1c0f..3cfce38253 100644 --- a/libavformat/gxf.c +++ b/libavformat/gxf.c @@ -137,7 +137,6 @@ static int get_sindex(AVFormatContext *s, int id, int format) { case 9: st->codec->codec_type = CODEC_TYPE_AUDIO; st->codec->codec_id = CODEC_ID_PCM_S24LE; - st->codec->codec_tag = 0x1; st->codec->channels = 1; st->codec->sample_rate = 48000; st->codec->bit_rate = 3 * 1 * 48000 * 8; @@ -147,7 +146,6 @@ static int get_sindex(AVFormatContext *s, int id, int format) { case 10: st->codec->codec_type = CODEC_TYPE_AUDIO; st->codec->codec_id = CODEC_ID_PCM_S16LE; - st->codec->codec_tag = 0x1; st->codec->channels = 1; st->codec->sample_rate = 48000; st->codec->bit_rate = 2 * 1 * 48000 * 8; @@ -157,7 +155,6 @@ static int get_sindex(AVFormatContext *s, int id, int format) { case 17: st->codec->codec_type = CODEC_TYPE_AUDIO; st->codec->codec_id = CODEC_ID_AC3; - st->codec->codec_tag = 0x2000; st->codec->channels = 2; st->codec->sample_rate = 48000; break; |