Commit 312bf22c authored by Antoine Cellerier's avatar Antoine Cellerier

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

parent 16408811
...@@ -76,6 +76,10 @@ static int Activate( vlc_object_t *p_this ) ...@@ -76,6 +76,10 @@ static int Activate( vlc_object_t *p_this )
return -1; 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 ) switch( p_filter->fmt_out.video.i_chroma )
{ {
case VLC_FOURCC('I','4','2','0'): 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