[FFmpeg-cvslog] r23170 - trunk/libavcodec/ivi_common.h
benoit
subversion
Wed May 19 08:46:50 CEST 2010
Author: benoit
Date: Wed May 19 08:46:50 2010
New Revision: 23170
Log:
Fix signedness of q_delta field of the IVIMbInfo.
Patch by Maxim max_pole () gmx * de
Modified:
trunk/libavcodec/ivi_common.h
Modified: trunk/libavcodec/ivi_common.h
==============================================================================
--- trunk/libavcodec/ivi_common.h Tue May 18 23:21:37 2010 (r23169)
+++ trunk/libavcodec/ivi_common.h Wed May 19 08:46:50 2010 (r23170)
@@ -89,7 +89,7 @@ typedef struct {
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;
More information about the ffmpeg-cvslog
mailing list