comparison ivi_common.h @ 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 7dd2a45249a9
children 4a178e0051d6
comparison
equal deleted inserted replaced
11742:a37818ac3817 11743:55294f889a01
87 int16_t xpos; 87 int16_t xpos;
88 int16_t ypos; 88 int16_t ypos;
89 uint32_t buf_offs; ///< address in the output buffer for this mb 89 uint32_t buf_offs; ///< address in the output buffer for this mb
90 uint8_t type; ///< macroblock type: 0 - INTRA, 1 - INTER 90 uint8_t type; ///< macroblock type: 0 - INTRA, 1 - INTER
91 uint8_t cbp; ///< coded block pattern 91 uint8_t cbp; ///< coded block pattern
92 uint8_t q_delta; ///< quant delta 92 int8_t q_delta; ///< quant delta
93 int8_t mv_x; ///< motion vector (x component) 93 int8_t mv_x; ///< motion vector (x component)
94 int8_t mv_y; ///< motion vector (y component) 94 int8_t mv_y; ///< motion vector (y component)
95 } IVIMbInfo; 95 } IVIMbInfo;
96 96
97 97