Browse Source

rename ff_metadata_sync_compat to ff_metadata_mux_compat

Originally committed as revision 16501 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Aurelien Jacobs 17 years ago
parent
commit
5ce0043367
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      libavformat/metadata.h
  2. +1
    -1
      libavformat/metadata_compat.c
  3. +1
    -1
      libavformat/utils.c

+ 1
- 1
libavformat/metadata.h View 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 */

+ 1
- 1
libavformat/metadata_compat.c View 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;



+ 1
- 1
libavformat/utils.c View 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){


Loading…
Cancel
Save