Added version bump and APIchanges entry.
>From 80822254796a4566ed5fc62f0c571955cd7829a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20K=C3=BChnel?= <[email protected]> Date: Mon, 26 Sep 2011 22:26:13 +0200 Subject: [PATCH 1/3] avcodec: add metadata to AVFrame --- doc/APIchanges | 3 +++ libavcodec/avcodec.h | 7 +++++++ libavcodec/version.h | 2 +- 3 files changed, 11 insertions(+), 1 deletions(-) diff --git a/doc/APIchanges b/doc/APIchanges index e3236e9..d979201 100644 --- a/doc/APIchanges +++ b/doc/APIchanges @@ -13,6 +13,9 @@ libavutil: 2011-04-18 API changes, most recent first: +2011-10-xx - xxxxxxx - lavc 53.13.0 + Add metadata to AVFrame. + 2011-09-03 - fb4ca26 - lavc 53.10.0 lavf 53.6.0 lsws 2.1.0 diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 4d61f44..db75810 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1127,6 +1127,13 @@ typedef struct AVFrame { * - decoding: Set by libavcodec. */ void *thread_opaque; + + /** + * Metadata. + * - encoding: Set by user. + * - decoding: Set by libavcodec. + */ + AVDictionary *metadata; } AVFrame; /** diff --git a/libavcodec/version.h b/libavcodec/version.h index d745fae..94597eb 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -21,7 +21,7 @@ #define AVCODEC_VERSION_H #define LIBAVCODEC_VERSION_MAJOR 53 -#define LIBAVCODEC_VERSION_MINOR 12 +#define LIBAVCODEC_VERSION_MINOR 13 #define LIBAVCODEC_VERSION_MICRO 0 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ -- 1.7.6.4
_______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
