summaryrefslogtreecommitdiff
path: root/src/post/goom/plugin_info.c
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2005-07-19 18:10:29 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2005-07-19 18:10:29 +0000
commit6bfc655ee19aa82cce3277e6f9c861661cca5fb4 (patch)
treee73fb914fba58583558278d41fc3b7809db4834c /src/post/goom/plugin_info.c
parentd1245110dbd99f3018847c59316b677b92423973 (diff)
downloadxine-lib-6bfc655ee19aa82cce3277e6f9c861661cca5fb4.tar.gz
xine-lib-6bfc655ee19aa82cce3277e6f9c861661cca5fb4.tar.bz2
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
Diffstat (limited to 'src/post/goom/plugin_info.c')
-rw-r--r--src/post/goom/plugin_info.c8
1 files changed, 4 insertions, 4 deletions
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 */