summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMaxim Poliakovski <max_pole@gmx.de>2010-05-21 20:20:01 +0000
committerReinhard Tartler <siretart@tauware.de>2010-05-21 20:20:01 +0000
commit34a0dee17e924caec491e3a2002bdf743b3cacd3 (patch)
treeb41c8f0989ab4295190ecdf2f31efb0103ae0976 /libavcodec
parentb9a35435a50ce160f13164f943c94c43d2affa81 (diff)
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
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/ivi_common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ivi_common.h b/libavcodec/ivi_common.h
index 9d0eac1a34..64793e479e 100644
--- a/libavcodec/ivi_common.h
+++ b/libavcodec/ivi_common.h
@@ -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;