diff options
author | Maxim Poliakovski <max_pole@gmx.de> | 2010-05-19 06:46:50 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2010-05-19 06:46:50 +0000 |
commit | 15f9fa3d61f83017da5a7c06d1106aaf223b63f7 (patch) | |
tree | 2ef0377a5c14b09b33aa1d4ec4dc029fdbb488b9 /libavcodec/ivi_common.h | |
parent | 5549aa6d0d695b3563f068cae014a974aa013749 (diff) | |
download | ffmpeg-15f9fa3d61f83017da5a7c06d1106aaf223b63f7.tar.gz |
Fix signedness of q_delta field of the IVIMbInfo.
Patch by Maxim max_pole () gmx * de
Originally committed as revision 23170 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ivi_common.h')
-rw-r--r-- | libavcodec/ivi_common.h | 2 |
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; |