Commit 66902e1b authored by Antoine Cellerier's avatar Antoine Cellerier

This module scales with nearest neightboor algorithm ... lower it's capability...

This module scales with nearest neightboor algorithm ... lower it's capability score so that swscale will be used if available instead.
parent ecc787cd
...@@ -57,9 +57,7 @@ static picture_t *Filter( filter_t *, picture_t * ); ...@@ -57,9 +57,7 @@ static picture_t *Filter( filter_t *, picture_t * );
*****************************************************************************/ *****************************************************************************/
vlc_module_begin(); vlc_module_begin();
set_description( N_("Video scaling filter") ); set_description( N_("Video scaling filter") );
set_capability( "video filter2", 10000 ); set_capability( "video filter2", 10 );
// set_category( CAT_VIDEO );
// set_subcategory( SUBCAT_VIDEO_VFILTER2 );
set_callbacks( OpenFilter, CloseFilter ); set_callbacks( OpenFilter, CloseFilter );
vlc_module_end(); vlc_module_end();
......
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