diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-01-21 12:44:58 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-01-21 12:44:58 +0000 |
commit | bb85077fc97b186c270ba82f820b2ec6928d05c6 (patch) | |
tree | ed1ce352159e32d666357e934193d4e9eab53f2c /libavformat/au.c | |
parent | 07495657fb32501c1a8b1361ca5680ded1364cd5 (diff) | |
download | ffmpeg-bb85077fc97b186c270ba82f820b2ec6928d05c6.tar.gz |
remove now useless codec_tag setting code in muxers
Originally committed as revision 7603 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/au.c')
-rw-r--r-- | libavformat/au.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/au.c b/libavformat/au.c index 4bd8b1e253..6326de6f51 100644 --- a/libavformat/au.c +++ b/libavformat/au.c @@ -47,8 +47,6 @@ static const AVCodecTag codec_au_tags[] = { static int put_au_header(ByteIOContext *pb, AVCodecContext *enc) { if(!enc->codec_tag) - enc->codec_tag = codec_get_tag(codec_au_tags, enc->codec_id); - if(!enc->codec_tag) return -1; put_tag(pb, ".snd"); /* magic number */ put_be32(pb, 24); /* header size */ |