Browse Source

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
tags/n0.8
Maxim Poliakovski Benoit Fouet 15 years ago
parent
commit
15f9fa3d61
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/ivi_common.h

+ 1
- 1
libavcodec/ivi_common.h 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;


Loading…
Cancel
Save