summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2009-01-09 00:01:42 +0000
committerAurelien Jacobs <aurel@gnuage.org>2009-01-09 00:01:42 +0000
commit5ce0043367ed44dd17ece7aa6429e08900e1c4de (patch)
tree64d04e3d0a1b3f917b87130d79a8a164efcdb332
parent97ca83a566782e8d136adc086e74f1942bb2e4f3 (diff)
rename ff_metadata_sync_compat to ff_metadata_mux_compat
Originally committed as revision 16501 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavformat/metadata.h2
-rw-r--r--libavformat/metadata_compat.c2
-rw-r--r--libavformat/utils.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/metadata.h b/libavformat/metadata.h
index 88c9c86626..b6912efc5f 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 ab03826d53..7aef9389ab 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 3f26aee991..0afc63bb94 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){