Commit 31ce3c0a authored by Antoine Cellerier's avatar Antoine Cellerier

If you don't know how to scale ... don't pretend that you do. (Needs backporting)

(cherry picked from commit 312bf22c)
parent e40514dc
......@@ -76,6 +76,10 @@ static int Activate( vlc_object_t *p_this )
return -1;
}
if( p_filter->fmt_in.video.i_width != p_filter->fmt_out.video.i_width
|| p_filter->fmt_in.video.i_height != p_filter->fmt_out.video.i_height )
return -1;
switch( p_filter->fmt_out.video.i_chroma )
{
case VLC_FOURCC('I','4','2','0'):
......
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