Fix signedness of q_delta field of the IVIMbInfo.
authorMaxim Poliakovski <max_pole@gmx.de>
Wed, 19 May 2010 06:46:50 +0000 (06:46 +0000)
committerBenoit Fouet <benoit.fouet@free.fr>
Wed, 19 May 2010 06:46:50 +0000 (06:46 +0000)
Patch by Maxim max_pole () gmx * de

Originally committed as revision 23170 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/ivi_common.h

index 9d0eac1..64793e4 100644 (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;