]> git.sesse.net Git - vlc/commitdiff
Rawvideo: we can have a 0 visible_*, since we copy from width|height
authorJean-Baptiste Kempf <jb@videolan.org>
Thu, 20 Mar 2014 12:11:04 +0000 (13:11 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Thu, 20 Mar 2014 12:11:04 +0000 (13:11 +0100)
modules/codec/rawvideo.c

index b158651e360932baa3c743dae4a2d892f661e95c..884218ba0c46404f2b5d12636943c04cbfc7d02e 100644 (file)
@@ -95,8 +95,8 @@ 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_visible_width < 0
+     || p_dec->fmt_in.video.i_visible_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 );