]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
rename ff_metadata_sync_compat to ff_metadata_mux_compat
authoraurel <aurel@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Fri, 9 Jan 2009 00:01:42 +0000 (00:01 +0000)
committeraurel <aurel@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Fri, 9 Jan 2009 00:01:42 +0000 (00:01 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16501 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavformat/metadata.h
libavformat/metadata_compat.c
libavformat/utils.c

index 88c9c86626991c7d85b3281827fb0e5fbe19dd1a..b6912efc5f5de69d09a45158a695bd2dc618e64d 100644 (file)
@@ -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 */
index ab03826d539fd3cd3706d59141765a143618e756..7aef9389ab427f156d945bc36410f15b2f21eed9 100644 (file)
@@ -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;
 
index 3f26aee991f63de4fa136520b09ca7dde0c51531..0afc63bb9489bc076fbbcec85aa0c15af8135b4b 100644 (file)
@@ -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){