[vlc-devel] commit: Fix signed warning for postproc (Jean-Baptiste Kempf )
git version control
git at videolan.org
Sun Aug 23 13:13:07 CEST 2009
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sun Aug 23 12:55:26 2009 +0200| [db033d3f073fee661b2f44c28f326280e7f0e9f6] | committer: Jean-Baptiste Kempf
Fix signed warning for postproc
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=db033d3f073fee661b2f44c28f326280e7f0e9f6
---
include/vlc_picture.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/vlc_picture.h b/include/vlc_picture.h
index 621b659..2787543 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 */
/**@}*/
More information about the vlc-devel
mailing list