Commit 9b58a259 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Rawvideo: we can have a 0 visible_*, since we copy from width|height

parent 0e10c9d6
......@@ -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 );
......
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