aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-05-17 22:49:34 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-05-17 22:49:34 +0000
commitfecd7b457e5908f2758bda78753c851159cad91a (patch)
tree86dfe21af0a1fe65c13ee036ecd74d034c7cc3a4 /libavcodec/avcodec.h
parent1095d4425865777a98b510d7af0816e093c6db23 (diff)
downloadffmpeg-fecd7b457e5908f2758bda78753c851159cad91a.tar.gz
Add log_level_offset to AVCodecContext.
Originally committed as revision 23153 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 417a8468b7..5a570fd001 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -31,7 +31,7 @@
#define LIBAVCODEC_VERSION_MAJOR 52
#define LIBAVCODEC_VERSION_MINOR 67
-#define LIBAVCODEC_VERSION_MICRO 1
+#define LIBAVCODEC_VERSION_MICRO 2
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
LIBAVCODEC_VERSION_MINOR, \
@@ -2656,6 +2656,8 @@ typedef struct AVCodecContext {
* - decoding: unused
*/
float crf_max;
+
+ int log_level_offset;
} AVCodecContext;
/**