Commit db033d3f authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Fix signed warning for postproc

parent 837374f8
...@@ -108,7 +108,7 @@ struct picture_t ...@@ -108,7 +108,7 @@ struct picture_t
bool b_progressive; /**< is it a progressive frame ? */ bool b_progressive; /**< is it a progressive frame ? */
unsigned int i_nb_fields; /**< # of displayed fields */ unsigned int i_nb_fields; /**< # of displayed fields */
bool b_top_field_first; /**< which field is first */ 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_qstride; /**< quantification stride */
int i_qtype; /**< quantification style */ int i_qtype; /**< quantification style */
/**@}*/ /**@}*/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment