diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-12-25 04:59:14 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-12-25 04:59:14 +0000 |
commit | 7232ac8416bc30a093500a3bdf5d908be3273d76 (patch) | |
tree | b54669a95f05fd80ac5886d1560c7e2fd2b3f590 /src/post/goom/goom_config.h | |
parent | 024d463a3cfed56ab3db964488a8dd9dbf7bf1d4 (diff) | |
download | xine-lib-7232ac8416bc30a093500a3bdf5d908be3273d76.tar.gz xine-lib-7232ac8416bc30a093500a3bdf5d908be3273d76.tar.bz2 |
What a GOOM!
Michael, please review the xine_goom.c code. i'm not sure about some
post plugin concepts like "rewiring"...
note: that code is quite cpu intensive, so i hardcoded it to 10fps.
CVS patchset: 3673
CVS date: 2002/12/25 04:59:14
Diffstat (limited to 'src/post/goom/goom_config.h')
-rw-r--r-- | src/post/goom/goom_config.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/post/goom/goom_config.h b/src/post/goom/goom_config.h new file mode 100644 index 000000000..0cc304781 --- /dev/null +++ b/src/post/goom/goom_config.h @@ -0,0 +1,38 @@ + +//#define VERSION "1.9dev5" +//#define _DEBUG + +#define COLOR_BGRA +//#define COLOR_ARGB + +#ifdef COLOR_BGRA +/** position des composantes **/ + #define ROUGE 2 + #define BLEU 0 + #define VERT 1 + #define ALPHA 3 +#else + #define ROUGE 1 + #define BLEU 3 + #define VERT 2 + #define ALPHA 0 +#endif + + +// target +#define XMMS_PLUGIN +//#define STANDALONE + +// for pc users with mmx processors. +//#define MMX +//#define POWERPC +//#define VERBOSE + +#ifndef guint32 +#define guint8 unsigned char +#define guin16 unsigned short +#define guint32 unsigned int +#define gint8 signed char +#define gint16 signed short int +#define gint32 signed int +#endif |