diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2009-01-08 23:24:51 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2009-01-08 23:24:51 +0000 |
commit | e99f76ab79e0f1285ef8a6c8700beed228c0b98f (patch) | |
tree | eab672e81096cfc63e245b6c7799777f75af8069 /libavformat/metadata.h | |
parent | 420169e5209b629b362757473cf2a69faad72e2c (diff) | |
download | ffmpeg-e99f76ab79e0f1285ef8a6c8700beed228c0b98f.tar.gz |
Add a second metadata compatibility layer, so that metadata that gets
demuxed with new API is automatically converted to the old API,
allowing old applications to stay functional.
Originally committed as revision 16499 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/metadata.h')
-rw-r--r-- | libavformat/metadata.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/metadata.h b/libavformat/metadata.h index 2826ecc72e..88c9c86626 100644 --- a/libavformat/metadata.h +++ b/libavformat/metadata.h @@ -36,6 +36,7 @@ struct AVMetadata{ }; #if LIBAVFORMAT_VERSION_MAJOR < 53 +void ff_metadata_demux_compat(AVFormatContext *s); void ff_metadata_sync_compat(AVFormatContext *s); #endif |