From 5ce0043367ed44dd17ece7aa6429e08900e1c4de Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Fri, 9 Jan 2009 00:01:42 +0000 Subject: [PATCH] rename ff_metadata_sync_compat to ff_metadata_mux_compat Originally committed as revision 16501 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/metadata.h | 2 +- libavformat/metadata_compat.c | 2 +- libavformat/utils.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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){ -- 2.7.4