Commit 5c96527b authored by benoit's avatar benoit

Fix signedness of q_delta field of the IVIMbInfo.

Patch by Maxim max_pole () gmx * de


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@23170 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a43dac6a
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment