diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2010-04-20 01:41:00 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2010-04-20 01:41:00 +0000 |
commit | 2293a2e67fb54aae165bb042d3154a7809a81860 (patch) | |
tree | dcb4d0aebef27f6fba16eed83fd10bc1838fbec4 | |
parent | dbb4f0515f04b7d13f2a2f06f53d5b03a641f6f3 (diff) | |
download | ffmpeg-2293a2e67fb54aae165bb042d3154a7809a81860.tar.gz |
Set AVFMT_NOTIMESTAMPS flag for mp3 muxer
Fixes issue 1026
Originally committed as revision 22916 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/mp3.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/mp3.c b/libavformat/mp3.c index 3ee3cb2a8a..dcb59e8417 100644 --- a/libavformat/mp3.c +++ b/libavformat/mp3.c @@ -360,6 +360,7 @@ AVOutputFormat mp3_muxer = { mp3_write_header, mp3_write_packet, mp3_write_trailer, + AVFMT_NOTIMESTAMPS, .metadata_conv = ff_id3v2_metadata_conv, }; #endif |