]> git.sesse.net Git - vlc/commitdiff
Fix signed warning for postproc
authorJean-Baptiste Kempf <jb@videolan.org>
Sun, 23 Aug 2009 10:55:26 +0000 (12:55 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Sun, 23 Aug 2009 10:55:26 +0000 (12:55 +0200)
include/vlc_picture.h

index 621b65951b6883b2b3448254ef7349e4c6ed2879..278754390b1cec0af4f6fec71c96607e866f40a1 100644 (file)
@@ -108,7 +108,7 @@ struct picture_t
     bool            b_progressive;          /**< is it a progressive frame ? */
     unsigned int    i_nb_fields;                  /**< # of displayed fields */
     bool            b_top_field_first;             /**< which field is first */
-    uint8_t        *p_q;                           /**< quantification table */
+    int8_t         *p_q;                           /**< quantification table */
     int             i_qstride;                    /**< quantification stride */
     int             i_qtype;                       /**< quantification style */
     /**@}*/