Commit 5ce00433 authored by Aurelien Jacobs's avatar Aurelien Jacobs

rename ff_metadata_sync_compat to ff_metadata_mux_compat

Originally committed as revision 16501 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 97ca83a5
...@@ -37,7 +37,7 @@ struct AVMetadata{ ...@@ -37,7 +37,7 @@ struct AVMetadata{
#if LIBAVFORMAT_VERSION_MAJOR < 53 #if LIBAVFORMAT_VERSION_MAJOR < 53
void ff_metadata_demux_compat(AVFormatContext *s); void ff_metadata_demux_compat(AVFormatContext *s);
void ff_metadata_sync_compat(AVFormatContext *s); void ff_metadata_mux_compat(AVFormatContext *s);
#endif #endif
#endif /* AVFORMAT_METADATA_H */ #endif /* AVFORMAT_METADATA_H */
...@@ -114,7 +114,7 @@ void ff_metadata_demux_compat(AVFormatContext *ctx) ...@@ -114,7 +114,7 @@ void ff_metadata_demux_compat(AVFormatContext *ctx)
snprintf(number, sizeof(number), "%d", s->key); \ snprintf(number, sizeof(number), "%d", s->key); \
if(s->key) FILL_METADATA(s, key, number) } if(s->key) FILL_METADATA(s, key, number) }
void ff_metadata_sync_compat(AVFormatContext *ctx) void ff_metadata_mux_compat(AVFormatContext *ctx)
{ {
int i; int i;
......
...@@ -2502,7 +2502,7 @@ int av_write_header(AVFormatContext *s) ...@@ -2502,7 +2502,7 @@ int av_write_header(AVFormatContext *s)
} }
#if LIBAVFORMAT_VERSION_MAJOR < 53 #if LIBAVFORMAT_VERSION_MAJOR < 53
ff_metadata_sync_compat(s); ff_metadata_mux_compat(s);
#endif #endif
if(s->oformat->write_header){ if(s->oformat->write_header){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment