diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-06-07 17:30:02 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-06-07 17:30:02 +0000 |
commit | d4c5d2adf3cb15fd67bad5a916bac52089fdba82 (patch) | |
tree | 687264872cd9f7abc2a48b22fdc54e387328f934 /libavcodec/avcodec.h | |
parent | e6a2ac3474986280dda041521229683f00f04759 (diff) | |
download | ffmpeg-d4c5d2adf3cb15fd67bad5a916bac52089fdba82.tar.gz |
nsse weight
Originally committed as revision 3205 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 70df542500..de6fd958fc 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 4715 +#define LIBAVCODEC_BUILD 4716 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT #define LIBAVCODEC_VERSION FFMPEG_VERSION @@ -1591,11 +1591,18 @@ typedef struct AVCodecContext { int mb_threshold; /** - * + * precision of the intra dc coefficient - 8. * - encoding: set by user * - decoding: unused */ int intra_dc_precision; + + /** + * noise vs. sse weight for the nsse comparsion function. + * - encoding: set by user + * - decoding: unused + */ + int nsse_weight; } AVCodecContext; |