blob: ce7b24a7f798cc7d906e10cb87db54fcb5a5519a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <inttypes.h>
/* #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. */
#if 0
#ifdef ARCH_X86
#define HAVE_MMX
#endif
#endif
#ifdef ARCH_PPC
/*
#define POWERPC
*/
#endif
/* #define VERBOSE */
#ifndef guint32
#define guint8 uint8_t
#define guin16 uint16_t
#define guint32 uint32_t
#define gint8 int8_t
#define gint16 int16_t
#define gint32 int32_t
#endif
|