changeset 4181:17a8a3696ee1 libavformat

rename ff_metadata_sync_compat to ff_metadata_mux_compat
author aurel
date Fri, 09 Jan 2009 00:01:42 +0000
parents 0df2e345a1a8
children 313d987dd2b4
files metadata.h metadata_compat.c utils.c
diffstat 3 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/metadata.h	Thu Jan 08 23:30:02 2009 +0000
+++ b/metadata.h	Fri Jan 09 00:01:42 2009 +0000
@@ -37,7 +37,7 @@
 
 #if LIBAVFORMAT_VERSION_MAJOR < 53
 void ff_metadata_demux_compat(AVFormatContext *s);
-void ff_metadata_sync_compat(AVFormatContext *s);
+void ff_metadata_mux_compat(AVFormatContext *s);
 #endif
 
 #endif /* AVFORMAT_METADATA_H */
--- a/metadata_compat.c	Thu Jan 08 23:30:02 2009 +0000
+++ b/metadata_compat.c	Fri Jan 09 00:01:42 2009 +0000
@@ -114,7 +114,7 @@
     snprintf(number, sizeof(number), "%d", s->key);                           \
     if(s->key)  FILL_METADATA(s, key, number) }
 
-void ff_metadata_sync_compat(AVFormatContext *ctx)
+void ff_metadata_mux_compat(AVFormatContext *ctx)
 {
     int i;
 
--- a/utils.c	Thu Jan 08 23:30:02 2009 +0000
+++ b/utils.c	Fri Jan 09 00:01:42 2009 +0000
@@ -2502,7 +2502,7 @@
     }
 
 #if LIBAVFORMAT_VERSION_MAJOR < 53
-    ff_metadata_sync_compat(s);
+    ff_metadata_mux_compat(s);
 #endif
 
     if(s->oformat->write_header){