Fix signedness of q_delta field of the IVIMbInfo.

Patch by Maxim max_pole () gmx * de


backport r23170 by benoit


Originally committed as revision 23227 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
This commit is contained in:
Maxim Poliakovski 2010-05-21 20:20:01 +00:00 committed by Reinhard Tartler
parent b9a35435a5
commit 34a0dee17e

View File

@ -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;