# HG changeset patch # User benoit # Date 1274251610 0 # Node ID 55294f889a016f8d56fb6eb4ef9e20b5e6a0e97d # Parent a37818ac38170141ea3883922315daba49383779 Fix signedness of q_delta field of the IVIMbInfo. Patch by Maxim max_pole () gmx * de diff -r a37818ac3817 -r 55294f889a01 ivi_common.h --- 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;