diff options
author | Anton Khirnov <wyskas@gmail.com> | 2010-02-16 16:32:25 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2010-02-16 16:32:25 +0000 |
commit | ed7694d8cf4633da444237f4df7efc48936419d2 (patch) | |
tree | 6ceaa52216a94a3914e7978a8dc0f365e68458c7 /libavformat/metadata.h | |
parent | 114315994bc08812eeef51eaace455d86b5098d5 (diff) | |
download | ffmpeg-ed7694d8cf4633da444237f4df7efc48936419d2.tar.gz |
Set lavf identification string globally in av_write_header(), rather
than inside the muxers. Remove special handling of "encoder" tags from
AVI and MP3 muxers.
Patch by Anton Khirnov <wyskas gmail com>.
Originally committed as revision 21850 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/metadata.h')
-rw-r--r-- | libavformat/metadata.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/metadata.h b/libavformat/metadata.h index 9ec2265a41..21724e9774 100644 --- a/libavformat/metadata.h +++ b/libavformat/metadata.h @@ -45,4 +45,7 @@ void ff_metadata_demux_compat(AVFormatContext *s); void ff_metadata_mux_compat(AVFormatContext *s); #endif +void metadata_conv(AVMetadata **pm, const AVMetadataConv *d_conv, + const AVMetadataConv *s_conv); + #endif /* AVFORMAT_METADATA_H */ |