From 6bfc655ee19aa82cce3277e6f9c861661cca5fb4 Mon Sep 17 00:00:00 2001 From: Miguel Freitas Date: Tue, 19 Jul 2005 18:10:29 +0000 Subject: update goom to 2k4-0 + patches. details: - removed convolve_fx: goom logo is definitely annoying. besides using xine_fast_memcpy instead of convolve makes it much faster! - reduced number of tentacles: too many tentacles on low res (320x240) made it too brighter - darker ifs.c: again problem with low res, image was saturating to white most of the time - increased fps to 14 now that goom is faster ;-) CVS patchset: 7667 CVS date: 2005/07/19 18:10:29 --- src/post/goom/plugin_info.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/post/goom/plugin_info.c') diff --git a/src/post/goom/plugin_info.c b/src/post/goom/plugin_info.c index 856dd8aa5..7fbdd4125 100644 --- a/src/post/goom/plugin_info.c +++ b/src/post/goom/plugin_info.c @@ -28,7 +28,7 @@ static void setOptimizedMethods(PluginInfo *p) { /* set default methods */ p->methods.draw_line = draw_line; p->methods.zoom_filter = zoom_filter_c; - p->methods.create_output_with_brightness = create_output_with_brightness; +/* p->methods.create_output_with_brightness = create_output_with_brightness;*/ #ifdef CPU_X86 if (cpuFlavour & CPU_OPTION_XMMX) { @@ -54,16 +54,16 @@ static void setOptimizedMethods(PluginInfo *p) { #ifdef CPU_POWERPC if ((cpuFlavour & CPU_OPTION_64_BITS) != 0) { - p->methods.create_output_with_brightness = ppc_brightness_G5; +/* p->methods.create_output_with_brightness = ppc_brightness_G5; */ p->methods.zoom_filter = ppc_zoom_generic; } else if ((cpuFlavour & CPU_OPTION_ALTIVEC) != 0) { - p->methods.create_output_with_brightness = ppc_brightness_G4; +/* p->methods.create_output_with_brightness = ppc_brightness_G4; */ p->methods.zoom_filter = ppc_zoom_G4; } else { - p->methods.create_output_with_brightness = ppc_brightness_generic; +/* p->methods.create_output_with_brightness = ppc_brightness_generic;*/ p->methods.zoom_filter = ppc_zoom_generic; } #endif /* CPU_POWERPC */ -- cgit v1.2.3