[SCM] libav/experimental: Fix signedness of q_delta field of the IVIMbInfo. Patch by Maxim max_pole () gmx * de

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 17:07:18 UTC 2013


The following commit has been merged in the experimental branch:
commit 15f9fa3d61f83017da5a7c06d1106aaf223b63f7
Author: Maxim Poliakovski <max_pole at gmx.de>
Date:   Wed May 19 06:46:50 2010 +0000

    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

diff --git a/libavcodec/ivi_common.h b/libavcodec/ivi_common.h
index 9d0eac1..64793e4 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;

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list