]> git.sesse.net Git - vlc/commitdiff
rawvideo: fix handling of zero dimensions
authorRémi Denis-Courmont <remi@remlab.net>
Thu, 20 Mar 2014 15:25:18 +0000 (17:25 +0200)
committerRémi Denis-Courmont <remi@remlab.net>
Thu, 20 Mar 2014 15:25:18 +0000 (17:25 +0200)
modules/codec/rawvideo.c

index 884218ba0c46404f2b5d12636943c04cbfc7d02e..3d68afb44a3fd75268f8786e1034214be3b81030 100644 (file)
@@ -95,8 +95,7 @@ static int OpenDecoder( vlc_object_t *p_this )
     if( dsc == NULL || dsc->plane_count == 0 )
         return VLC_EGENERIC;
 
-    if( p_dec->fmt_in.video.i_visible_width < 0
-     || p_dec->fmt_in.video.i_visible_height < 0 )
+    if( p_dec->fmt_in.video.i_width <= 0 || p_dec->fmt_in.video.i_height == 0 )
     {
         msg_Err( p_dec, "invalid display size %dx%d",
                  p_dec->fmt_in.video.i_width, p_dec->fmt_in.video.i_height );