MythTV master
goomconfig.h
Go to the documentation of this file.
1#ifndef GOOMCONFIG_H
2#define GOOMCONFIG_H
3
4#include <cstdint>
5
6//#define VERSION "1.9.2"
7//#define _DEBUG
8
9#define COLOR_BGRA
10//#define COLOR_ARGB
11
12enum COLOR : uint8_t {
13#ifdef COLOR_BGRA
15 ROUGE = 2,
16 BLEU = 0,
17 VERT = 1,
18 ALPHA = 3,
19#else
20 ROUGE = 1,
21 BLEU = 3,
22 VERT = 2,
23 ALPHA = 0,
24#endif
25};
26
27
28// target
29#define XMMS_PLUGIN
30//#define STANDALONE
31
32//#define HAVE_ATHLON
33
34//#define VERBOSE
35
36#endif // GOOMCONFIG_H
COLOR
Definition: goomconfig.h:12
@ VERT
Definition: goomconfig.h:17
@ BLEU
Definition: goomconfig.h:16
@ ALPHA
Definition: goomconfig.h:18
@ ROUGE
position des composantes
Definition: goomconfig.h:15