diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-10-28 16:11:25 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-10-28 16:11:25 +0000 |
commit | 973cbc2a28d78761654efdd1cd54e13a8eee806c (patch) | |
tree | 00994dafc186998faa55d52cfc1ae7b6d4379c94 /libavcodec/mpegvideo.h | |
parent | 1928d04640208a7638a769fce99ed335fbc05963 (diff) | |
download | ffmpeg-973cbc2a28d78761654efdd1cd54e13a8eee806c.tar.gz |
lambda* should be unsigned
Originally committed as revision 6824 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 524bbb3de7..de37dc423c 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -321,8 +321,8 @@ typedef struct MpegEncContext { int qscale; ///< QP int chroma_qscale; ///< chroma QP - int lambda; ///< lagrange multipler used in rate distortion - int lambda2; ///< (lambda*lambda) >> FF_LAMBDA_SHIFT + unsigned int lambda; ///< lagrange multipler used in rate distortion + unsigned int lambda2; ///< (lambda*lambda) >> FF_LAMBDA_SHIFT int *lambda_table; int adaptive_quant; ///< use adaptive quantization int dquant; ///< qscale difference to prev qscale |