From: Jean-Baptiste Kempf Date: Sun, 23 Aug 2009 10:55:26 +0000 (+0200) Subject: Fix signed warning for postproc X-Git-Tag: 1.1.0-ff~4010 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=db033d3f073fee661b2f44c28f326280e7f0e9f6;p=vlc Fix signed warning for postproc --- diff --git a/include/vlc_picture.h b/include/vlc_picture.h index 621b65951b..278754390b 100644 --- a/include/vlc_picture.h +++ b/include/vlc_picture.h @@ -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 */ /**@}*/