1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-04 09:11:33 +02:00

* modules/video_filter/transform.c: minor coding improvement.

This commit is contained in:
Sam Hocevar 2006-07-04 12:26:08 +00:00
parent 1dcfa0fb96
commit 75a1b08ad4

View File

@ -210,13 +210,9 @@ static int Init( vout_thread_t *p_vout )
fmt.i_sar_num = p_vout->fmt_out.i_sar_den;
fmt.i_sar_den = p_vout->fmt_out.i_sar_num;
}
p_vout->p_sys->p_vout = vout_Create( p_vout, &fmt );
}
else
{
p_vout->p_sys->p_vout = vout_Create( p_vout, &fmt );
}
p_vout->p_sys->p_vout = vout_Create( p_vout, &fmt );
/* Everything failed */
if( p_vout->p_sys->p_vout == NULL )