[vlc-devel] commit: 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 . (Derk-Jan Hartman )

git version control git at videolan.org
Tue Aug 19 15:37:11 CEST 2008


vlc | branch: master | Derk-Jan Hartman <hartman at videolan.org> | Tue Aug 19 15:32:32 2008 +0200| [9674dc7c39b01ade92a8cb7cc0ad91b4d0db9458] | committer: Derk-Jan Hartman 

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.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9674dc7c39b01ade92a8cb7cc0ad91b4d0db9458
---

 modules/video_filter/swscale.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/video_filter/swscale.c b/modules/video_filter/swscale.c
index 21ff8cd..cc14d32 100644
--- a/modules/video_filter/swscale.c
+++ b/modules/video_filter/swscale.c
@@ -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 );




More information about the vlc-devel mailing list