Commit 39af625e authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Solve a sign warning

parent eecec236
...@@ -156,7 +156,7 @@ int picture_Setup( picture_t *p_picture, vlc_fourcc_t i_chroma, ...@@ -156,7 +156,7 @@ int picture_Setup( picture_t *p_picture, vlc_fourcc_t i_chroma,
*/ */
int i_modulo_w = 1; int i_modulo_w = 1;
int i_modulo_h = 1; int i_modulo_h = 1;
int i_ratio_h = 1; unsigned int i_ratio_h = 1;
for( unsigned i = 0; i < p_dsc->plane_count; i++ ) for( unsigned i = 0; i < p_dsc->plane_count; i++ )
{ {
i_modulo_w = LCM( i_modulo_w, 16 * p_dsc->p[i].w.den ); i_modulo_w = LCM( i_modulo_w, 16 * p_dsc->p[i].w.den );
......
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