changeset 11743:55294f889a01 libavcodec

Fix signedness of q_delta field of the IVIMbInfo. Patch by Maxim max_pole () gmx * de
author benoit
date Wed, 19 May 2010 06:46:50 +0000
parents a37818ac3817
children a85d4655ad52
files ivi_common.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ivi_common.h	Tue May 18 19:16:40 2010 +0000
+++ b/ivi_common.h	Wed May 19 06:46:50 2010 +0000
@@ -89,7 +89,7 @@
     uint32_t    buf_offs; ///< address in the output buffer for this mb
     uint8_t     type;     ///< macroblock type: 0 - INTRA, 1 - INTER
     uint8_t     cbp;      ///< coded block pattern
-    uint8_t     q_delta;  ///< quant delta
+    int8_t      q_delta;  ///< quant delta
     int8_t      mv_x;     ///< motion vector (x component)
     int8_t      mv_y;     ///< motion vector (y component)
 } IVIMbInfo;