[Ffmpeg-cvslog] r6824 - trunk/libavcodec/mpegvideo.h

michael subversion
Sat Oct 28 18:11:25 CEST 2006


Author: michael
Date: Sat Oct 28 18:11:25 2006
New Revision: 6824

Modified:
   trunk/libavcodec/mpegvideo.h

Log:
lambda* should be unsigned


Modified: trunk/libavcodec/mpegvideo.h
==============================================================================
--- trunk/libavcodec/mpegvideo.h	(original)
+++ trunk/libavcodec/mpegvideo.h	Sat Oct 28 18:11:25 2006
@@ -321,8 +321,8 @@
 
     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




More information about the ffmpeg-cvslog mailing list