summaryrefslogtreecommitdiff
path: root/core/multimedia/opieplayer/libmad/version.c
Unidiff
Diffstat (limited to 'core/multimedia/opieplayer/libmad/version.c') (more/less context) (show whitespace changes)
-rw-r--r--core/multimedia/opieplayer/libmad/version.c91
1 files changed, 91 insertions, 0 deletions
diff --git a/core/multimedia/opieplayer/libmad/version.c b/core/multimedia/opieplayer/libmad/version.c
new file mode 100644
index 0000000..413d54b
--- a/dev/null
+++ b/core/multimedia/opieplayer/libmad/version.c
@@ -0,0 +1,91 @@
1/*
2 * mad - MPEG audio decoder
3 * Copyright (C) 2000-2001 Robert Leslie
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 *
19 * $Id$
20 */
21
22# ifdef HAVE_CONFIG_H
23# include "libmad_config.h"
24# endif
25
26# include "libmad_global.h"
27
28# include "libmad_version.h"
29
30char const mad_version[] = "MPEG Audio Decoder version " MAD_VERSION;
31char const mad_copyright[] = "Copyright (C) " MAD_PUBLISHYEAR " " MAD_AUTHOR;
32char const mad_author[] = MAD_AUTHOR " <" MAD_EMAIL ">";
33
34char const mad_build[] =
35# if defined(FPM_64BIT)
36 "FPM_64BIT "
37# elif defined(FPM_INTEL)
38 "FPM_INTEL "
39# elif defined(FPM_ARM)
40 "FPM_ARM "
41# elif defined(FPM_MIPS)
42 "FPM_MIPS "
43# elif defined(FPM_SPARC)
44 "FPM_SPARC "
45# elif defined(FPM_PPC)
46 "FPM_PPC "
47# elif defined(FPM_DEFAULT)
48 "FPM_DEFAULT "
49# endif
50
51# if defined(ASO_IMDCT)
52 "ASO_IMDCT "
53# endif
54# if defined(ASO_INTERLEAVE1)
55 "ASO_INTERLEAVE1 "
56# endif
57# if defined(ASO_INTERLEAVE2)
58 "ASO_INTERLEAVE2 "
59# endif
60# if defined(ASO_ZEROCHECK)
61 "ASO_ZEROCHECK "
62# endif
63
64# if defined(OPT_SPEED)
65 "OPT_SPEED "
66# elif defined(OPT_ACCURACY)
67 "OPT_ACCURACY "
68# endif
69
70# if defined(OPT_SSO)
71 "OPT_SSO "
72# endif
73
74# if defined(OPT_DCTO) /* never defined here */
75 "OPT_DCTO "
76# endif
77
78# if defined(OPT_STRICT)
79 "OPT_STRICT "
80# endif
81
82# if defined(EXPERIMENTAL)
83 "EXPERIMENTAL "
84# endif
85
86# if defined(DEBUG)
87 "DEBUG "
88# elif defined(NDEBUG)
89 "NDEBUG "
90# endif
91;