diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-02-02 03:52:58 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-02-02 03:52:58 +0000 |
commit | 77ea0d4bdd4dcd9507fd611e7a5631ad98bd6408 (patch) | |
tree | 7b679847f75af6c8f477f2eb218909a3e9656ae0 /libavcodec/avcodec.h | |
parent | 95ba2c8f433550de45f6897ee1a92b2315f3f7cd (diff) | |
download | ffmpeg-77ea0d4bdd4dcd9507fd611e7a5631ad98bd6408.tar.gz |
quantizer noise shaping
Originally committed as revision 2742 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index b6dee00eaf..857afa2b26 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -17,7 +17,7 @@ extern "C" { #define FFMPEG_VERSION_INT 0x000408 #define FFMPEG_VERSION "0.4.8" -#define LIBAVCODEC_BUILD 4699 +#define LIBAVCODEC_BUILD 4700 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT #define LIBAVCODEC_VERSION FFMPEG_VERSION @@ -1504,6 +1504,12 @@ typedef struct AVCodecContext { #define FF_AA_FASTINT 1 //not implemented yet #define FF_AA_INT 2 #define FF_AA_FLOAT 3 + /** + * Quantizer noise shaping. + * - encoding: set by user + * - decoding: unused + */ + int quantizer_noise_shaping; } AVCodecContext; |