# HG changeset patch # User bcoudurier # Date 1154515030 0 # Node ID a1ca540b2f00ffe70bfd73bbe9867a53fa6b62bf # Parent ad456312dd5e318ea77ec0ab042508f45153d125 remove unneeded audio fourcc as well diff -r ad456312dd5e -r a1ca540b2f00 gxf.c --- a/gxf.c Wed Aug 02 09:59:10 2006 +0000 +++ b/gxf.c Wed Aug 02 10:37:10 2006 +0000 @@ -137,7 +137,6 @@ 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 @@ 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 @@ 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;