e505882e251e734534fda69111f5b8644d7a15a2
[platform/upstream/gst-plugins-good.git] / gst / goom / goom_config.h
1 #include <glib.h>
2
3 #if WORDS_BIGENDIAN
4 #define COLOR_ARGB
5 #else
6 #define COLOR_BGRA
7 #endif
8
9 #if 1
10 /* ndef COLOR_BGRA */
11 /** position des composantes **/
12     #define BLEU 0
13     #define VERT 1
14     #define ROUGE 2
15     #define ALPHA 3
16 #else
17     #define ROUGE 1
18     #define BLEU 3
19     #define VERT 2
20     #define ALPHA 0
21 #endif
22
23 #if defined (BUILD_MMX) && defined (HAVE_GCC_ASM)
24
25 #define HAVE_MMX
26 #endif
27