]> git.sesse.net Git - vlc/commitdiff
codec/rawvideo.c: use boolean initialization for b_invert.
authorJean-Paul Saman <jean-paul.saman@m2x.nl>
Tue, 24 Apr 2012 08:44:44 +0000 (10:44 +0200)
committerJean-Paul Saman <jean-paul.saman@m2x.nl>
Wed, 2 May 2012 14:30:56 +0000 (16:30 +0200)
modules/codec/rawvideo.c

index aa68f35d26d544db938187f36fe8cc78e20d0e05..20b990c80476d8ef85b7b6b8f158a10be7da0b5b 100644 (file)
@@ -132,7 +132,7 @@ static int OpenDecoder( vlc_object_t *p_this )
         return VLC_ENOMEM;
     /* Misc init */
     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 )
     {