diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-11-02 23:19:47 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-11-02 23:19:47 +0000 |
commit | 821cb11f76d55111dd747346313dad3b9568810b (patch) | |
tree | 99cd5a9ce5d46729bbd50f13098150c444868f76 /libavcodec/avcodec.h | |
parent | 432d84c395a0ccdbed383767a87ef037817e56f8 (diff) | |
download | ffmpeg-821cb11f76d55111dd747346313dad3b9568810b.tar.gz |
noise reduction of dct coefficients
Originally committed as revision 2468 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 e3b47536f0..b169748ba0 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -16,7 +16,7 @@ extern "C" { #define FFMPEG_VERSION_INT 0x000408 #define FFMPEG_VERSION "0.4.8" -#define LIBAVCODEC_BUILD 4689 +#define LIBAVCODEC_BUILD 4690 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT #define LIBAVCODEC_VERSION FFMPEG_VERSION @@ -1358,6 +1358,13 @@ typedef struct AVCodecContext { * - decoding: set by user. */ struct AVPaletteControl *palctrl; + + /** + * noise reduction strength + * - encoding: set by user. + * - decoding: unused + */ + int noise_reduction; } AVCodecContext; |