diff options
author | Thibaut Mattern <tmattern@users.sourceforge.net> | 2003-01-03 21:29:20 +0000 |
---|---|---|
committer | Thibaut Mattern <tmattern@users.sourceforge.net> | 2003-01-03 21:29:20 +0000 |
commit | 725a7a2631013ae00b8d363069331446eaff4273 (patch) | |
tree | e6b7a96ce3b3c05b4d3c92e5113dbb6e26f83097 /src/post/goom/goom_tools.h | |
parent | b4bcc7ac8ae797dbe478d42d34839f31bba277dc (diff) | |
download | xine-lib-725a7a2631013ae00b8d363069331446eaff4273.tar.gz xine-lib-725a7a2631013ae00b8d363069331446eaff4273.tar.bz2 |
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
Diffstat (limited to 'src/post/goom/goom_tools.h')
-rw-r--r-- | src/post/goom/goom_tools.h | 6 |
1 files changed, 3 insertions, 3 deletions
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 |