Commit 9674dc7c authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

swscale: lower priority of swscale from 1000 -> 55, because it is broken for...

swscale: lower priority of swscale from 1000 -> 55, because it is broken for RGB formats. This way, our "native" chroma filters should take precedence. This eleviate issues with #1749 and #1762 but does NOT fix them since they are still broken for scaling.
parent b5c38aec
......@@ -61,7 +61,7 @@ const char *const ppsz_mode_descriptions[] =
vlc_module_begin();
set_description( N_("Video scaling filter") );
set_capability( "video filter2", 1000 );
set_capability( "video filter2", 55 );
set_category( CAT_VIDEO );
set_subcategory( SUBCAT_VIDEO_VFILTER );
set_callbacks( OpenScaler, CloseScaler );
......
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