diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2009-03-01 14:50:03 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2009-03-01 14:50:03 +0000 |
commit | ec26457064142f132edf631fc9dedccde59bec48 (patch) | |
tree | 72063553f785e6661a9148d252739fe8ad854488 /libavformat | |
parent | 95030323d1e287abb9b90959fa5111a0aa0f55e2 (diff) | |
download | ffmpeg-ec26457064142f132edf631fc9dedccde59bec48.tar.gz |
new metadata API is now officially part of public API
Originally committed as revision 17682 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/avformat.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index d1d6d02b2f..df532519a3 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -22,8 +22,8 @@ #define AVFORMAT_AVFORMAT_H #define LIBAVFORMAT_VERSION_MAJOR 52 -#define LIBAVFORMAT_VERSION_MINOR 30 -#define LIBAVFORMAT_VERSION_MICRO 1 +#define LIBAVFORMAT_VERSION_MINOR 31 +#define LIBAVFORMAT_VERSION_MICRO 0 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \ LIBAVFORMAT_VERSION_MINOR, \ @@ -51,7 +51,6 @@ struct AVFormatContext; /* * Public Metadata API. - * !!WARNING!! This is a work in progress. Don't use outside FFmpeg for now. * The metadata API allows libavformat to export metadata tags to a client * application using a sequence of key/value pairs. * Important concepts to keep in mind: |