From c6377f6143d222d658ca8ac183a654415866f0c7 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Sun, 5 Aug 2007 00:47:57 +0000 Subject: [PATCH] do not write id3v2 header when writing .mp2 files Originally committed as revision 9924 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mp3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, };