Commit c4b2a84b authored by Jean-Paul Saman's avatar Jean-Paul Saman

codec/rawvideo.c: use boolean initialization for b_invert.

parent 0dd0a8d4
...@@ -132,7 +132,7 @@ static int OpenDecoder( vlc_object_t *p_this ) ...@@ -132,7 +132,7 @@ static int OpenDecoder( vlc_object_t *p_this )
return VLC_ENOMEM; return VLC_ENOMEM;
/* Misc init */ /* Misc init */
p_dec->p_sys->b_packetizer = false; p_dec->p_sys->b_packetizer = false;
p_sys->b_invert = 0; p_sys->b_invert = false;
if( (int)p_dec->fmt_in.video.i_height < 0 ) if( (int)p_dec->fmt_in.video.i_height < 0 )
{ {
......
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