diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-03-27 12:19:59 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-03-27 12:19:59 +0000 |
commit | 09c3e44e8a2ab04bd6ed56888e7f412b24512f2b (patch) | |
tree | d067b22bc709979b65ff209880e2f634d08fed50 /libavcodec/avcodec.h | |
parent | 048bfeeb12e9d0b8d7c5439deaada1ef6103a7bc (diff) | |
download | ffmpeg-09c3e44e8a2ab04bd6ed56888e7f412b24512f2b.tar.gz |
motion estimation bitrate penalty compensation
Originally committed as revision 4092 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index c9251c6c13..b43dfc4aa7 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -17,7 +17,7 @@ extern "C" { #define FFMPEG_VERSION_INT 0x000409 #define FFMPEG_VERSION "0.4.9-pre1" -#define LIBAVCODEC_BUILD 4749 +#define LIBAVCODEC_BUILD 4750 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT #define LIBAVCODEC_VERSION FFMPEG_VERSION @@ -1781,6 +1781,13 @@ typedef struct AVCodecContext { * - decoding: unused */ int mb_lmax; + + /** + * + * - encoding: set by user. + * - decoding: unused + */ + int me_penalty_compensation; } AVCodecContext; |