diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-03-22 12:09:02 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-03-22 12:09:02 +0000 |
commit | 1984f6359ebaf2856b8254747255d154a2a2fe73 (patch) | |
tree | ee1e0d21653f2b167e1b379d0e4a064c31698e47 /libavcodec/avcodec.h | |
parent | 65f7062dfaa6aeedb68b0d0b10cbe71ca5b8b2c9 (diff) | |
download | ffmpeg-streaming-1984f6359ebaf2856b8254747255d154a2a2fe73.zip ffmpeg-streaming-1984f6359ebaf2856b8254747255d154a2a2fe73.tar.gz |
user setable quantizer bias
Originally committed as revision 1701 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 00b0a19..6977159 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -15,8 +15,8 @@ extern "C" { #define LIBAVCODEC_VERSION_INT 0x000406 #define LIBAVCODEC_VERSION "0.4.6" -#define LIBAVCODEC_BUILD 4662 -#define LIBAVCODEC_BUILD_STR "4662" +#define LIBAVCODEC_BUILD 4663 +#define LIBAVCODEC_BUILD_STR "4663" #define LIBAVCODEC_IDENT "FFmpeg" LIBAVCODEC_VERSION "b" LIBAVCODEC_BUILD_STR @@ -1038,8 +1038,23 @@ typedef struct AVCodecContext { * - decoding: set by lavc. * @todo move this after frame_rate */ - int frame_rate_base; + int frame_rate_base; + /** + * intra quantizer bias. + * - encoding: set by user. + * - decoding: unused + */ + int intra_quant_bias; +#define FF_DEFAULT_QUANT_BIAS 999999 + + /** + * inter quantizer bias. + * - encoding: set by user. + * - decoding: unused + */ + int inter_quant_bias; + } AVCodecContext; |