mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-28 02:12:28 +00:00
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
This commit is contained in:
parent
5549aa6d0d
commit
15f9fa3d61
@ -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…
Reference in New Issue
Block a user