diff avformat.h @ 6040:2bab410094e0 libavformat

change author metadata to artist in mov de/muxer
author bcoudurier
date Sun, 23 May 2010 21:03:14 +0000
parents 7e9deb9f0234
children f8d603e0850f
line wrap: on
line diff
--- a/avformat.h	Sun May 23 18:34:18 2010 +0000
+++ b/avformat.h	Sun May 23 21:03:14 2010 +0000
@@ -23,7 +23,7 @@
 
 #define LIBAVFORMAT_VERSION_MAJOR 52
 #define LIBAVFORMAT_VERSION_MINOR 64
-#define LIBAVFORMAT_VERSION_MICRO  0
+#define LIBAVFORMAT_VERSION_MICRO  1
 
 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
                                                LIBAVFORMAT_VERSION_MINOR, \
@@ -169,6 +169,18 @@
                                                   const AVMetadataConv *s_conv);
 
 /**
+ * Converts metadata set according to the given conversion tables
+ * @param out converted destination metadata
+ * @param in metadata to be converted
+ * @param d_conv destination tags format conversion table
+ * @param s_conv source tags format conversion table
+ */
+void av_metadata_conv_generic(AVMetadata **out,
+                              AVMetadata *in,
+                              const AVMetadataConv *d_conv,
+                              const AVMetadataConv *s_conv);
+
+/**
  * Frees all the memory allocated for an AVMetadata struct.
  */
 void av_metadata_free(AVMetadata **m);