[SCM] libav/experimental: rename ff_metadata_sync_compat to ff_metadata_mux_compat

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:34:55 UTC 2013


The following commit has been merged in the experimental branch:
commit 5ce0043367ed44dd17ece7aa6429e08900e1c4de
Author: Aurelien Jacobs <aurel at gnuage.org>
Date:   Fri Jan 9 00:01:42 2009 +0000

    rename ff_metadata_sync_compat to ff_metadata_mux_compat
    
    Originally committed as revision 16501 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavformat/metadata.h b/libavformat/metadata.h
index 88c9c86..b6912ef 100644
--- a/libavformat/metadata.h
+++ b/libavformat/metadata.h
@@ -37,7 +37,7 @@ struct AVMetadata{
 
 #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 */
diff --git a/libavformat/metadata_compat.c b/libavformat/metadata_compat.c
index ab03826..7aef938 100644
--- a/libavformat/metadata_compat.c
+++ b/libavformat/metadata_compat.c
@@ -114,7 +114,7 @@ void ff_metadata_demux_compat(AVFormatContext *ctx)
     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;
 
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 3f26aee..0afc63b 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -2502,7 +2502,7 @@ int av_write_header(AVFormatContext *s)
     }
 
 #if LIBAVFORMAT_VERSION_MAJOR < 53
-    ff_metadata_sync_compat(s);
+    ff_metadata_mux_compat(s);
 #endif
 
     if(s->oformat->write_header){

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list