Commit f93eaec8 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

rawvideo: fix handling of zero dimensions

parent b4086a12
...@@ -95,8 +95,7 @@ static int OpenDecoder( vlc_object_t *p_this ) ...@@ -95,8 +95,7 @@ static int OpenDecoder( vlc_object_t *p_this )
if( dsc == NULL || dsc->plane_count == 0 ) if( dsc == NULL || dsc->plane_count == 0 )
return VLC_EGENERIC; return VLC_EGENERIC;
if( p_dec->fmt_in.video.i_visible_width < 0 if( p_dec->fmt_in.video.i_width <= 0 || p_dec->fmt_in.video.i_height == 0 )
|| p_dec->fmt_in.video.i_visible_height < 0 )
{ {
msg_Err( p_dec, "invalid display size %dx%d", msg_Err( p_dec, "invalid display size %dx%d",
p_dec->fmt_in.video.i_width, p_dec->fmt_in.video.i_height ); 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