From 725a7a2631013ae00b8d363069331446eaff4273 Mon Sep 17 00:00:00 2001 From: Thibaut Mattern Date: Fri, 3 Jan 2003 21:29:20 +0000 Subject: Updates to the latest version of Goom Adds mmx and ppc assembly optimizations. Adds 5 config entries for this post plugin : - frames per second - width - height - usage of assembly optimizations - colorspace conversion method PPc optimizations are not tested. The compiler option -fomit-frame-pointer is disabled. CVS patchset: 3762 CVS date: 2003/01/03 21:29:20 --- src/post/goom/goom_tools.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/post/goom/goom_tools.h') diff --git a/src/post/goom/goom_tools.h b/src/post/goom/goom_tools.h index ad646e60d..9ed16d6fc 100644 --- a/src/post/goom/goom_tools.h +++ b/src/post/goom/goom_tools.h @@ -4,8 +4,8 @@ #define NB_RAND 0x10000 /* in graphic.c */ -extern int * rand_tab ; -extern unsigned short rand_pos ; +extern int *rand_tab; +extern unsigned short rand_pos; #define RAND_INIT(i) \ srand (i) ;\ @@ -25,5 +25,5 @@ extern unsigned short rand_pos ; /* #define iRAND(i) ((guint32)((float)i * RAND()/RAND_MAX)) */ #define iRAND(i) (RAND()%i) - + #endif -- cgit v1.2.3