summaryrefslogtreecommitdiff
path: root/libavformat/id3v2.h
diff options
context:
space:
mode:
authorAnton Khirnov <wyskas@gmail.com>2009-09-29 07:05:03 +0000
committerCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>2009-09-29 07:05:03 +0000
commit6378b062081f461b4e7d245aad7c8f67ba4bb2f1 (patch)
tree896ba9f20dcc6331cdab91ec8444fdaa1eabe677 /libavformat/id3v2.h
parenta5568f460826b7ce068e81b2d51f35c5052287ed (diff)
Add id3v2 metadata conversion table and use it in mp3 muxer.
Patch by Anton Khirnov, wyskas gmail Originally committed as revision 20073 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/id3v2.h')
-rw-r--r--libavformat/id3v2.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/id3v2.h b/libavformat/id3v2.h
index 791c00c595..3e981a439a 100644
--- a/libavformat/id3v2.h
+++ b/libavformat/id3v2.h
@@ -24,6 +24,7 @@
#include <stdint.h>
#include "avformat.h"
+#include "metadata.h"
#define ID3v2_HEADER_SIZE 10
@@ -51,4 +52,6 @@ void ff_id3v2_parse(AVFormatContext *s, int len, uint8_t version, uint8_t flags)
*/
void ff_id3v2_read(AVFormatContext *s);
+extern const AVMetadataConv ff_id3v2_metadata_conv[];
+
#endif /* AVFORMAT_ID3V2_H */