diff options
author | Baptiste Coudurier | 2007-08-05 00:47:57 +0000 |
---|---|---|
committer | Baptiste Coudurier | 2007-08-05 00:47:57 +0000 |
commit | c6377f6143d222d658ca8ac183a654415866f0c7 (patch) | |
tree | bf33d66978bf7c02e7ede325c6e2aa7daea704b5 /libavformat | |
parent | 7a97dd84e312777c36cbf3442d85805a9ee5df5b (diff) |
do not write id3v2 header when writing .mp2 files
Originally committed as revision 9924 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/mp3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mp3.c b/libavformat/mp3.c index d8c91e7795..bc12e8e2a5 100644 --- a/libavformat/mp3.c +++ b/libavformat/mp3.c @@ -608,7 +608,7 @@ AVOutputFormat mp2_muxer = { 0, CODEC_ID_MP2, 0, - mp3_write_header, + NULL, mp3_write_packet, mp3_write_trailer, }; |