From db033d3f073fee661b2f44c28f326280e7f0e9f6 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Sun, 23 Aug 2009 12:55:26 +0200 Subject: [PATCH 1/1] Fix signed warning for postproc --- include/vlc_picture.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ /**@}*/ -- 2.39.2