comparison src/libmad-0.15.1b/version.c @ 85:545efbb81310

Import initial set of sources
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 18 Mar 2013 14:12:14 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 85:545efbb81310
1 /*
2 * libmad - MPEG audio decoder library
3 * Copyright (C) 2000-2004 Underbit Technologies, Inc.
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: version.c,v 1.15 2004/01/23 09:41:33 rob Exp $
20 */
21
22 # ifdef HAVE_CONFIG_H
23 # include "config.h"
24 # endif
25
26 # include "global.h"
27
28 # include "version.h"
29
30 char const mad_version[] = "MPEG Audio Decoder " MAD_VERSION;
31 char const mad_copyright[] = "Copyright (C) " MAD_PUBLISHYEAR " " MAD_AUTHOR;
32 char const mad_author[] = MAD_AUTHOR " <" MAD_EMAIL ">";
33
34 char const mad_build[] = ""
35 # if defined(DEBUG)
36 "DEBUG "
37 # elif defined(NDEBUG)
38 "NDEBUG "
39 # endif
40
41 # if defined(EXPERIMENTAL)
42 "EXPERIMENTAL "
43 # endif
44
45 # if defined(FPM_64BIT)
46 "FPM_64BIT "
47 # elif defined(FPM_INTEL)
48 "FPM_INTEL "
49 # elif defined(FPM_ARM)
50 "FPM_ARM "
51 # elif defined(FPM_MIPS)
52 "FPM_MIPS "
53 # elif defined(FPM_SPARC)
54 "FPM_SPARC "
55 # elif defined(FPM_PPC)
56 "FPM_PPC "
57 # elif defined(FPM_DEFAULT)
58 "FPM_DEFAULT "
59 # endif
60
61 # if defined(ASO_IMDCT)
62 "ASO_IMDCT "
63 # endif
64 # if defined(ASO_INTERLEAVE1)
65 "ASO_INTERLEAVE1 "
66 # endif
67 # if defined(ASO_INTERLEAVE2)
68 "ASO_INTERLEAVE2 "
69 # endif
70 # if defined(ASO_ZEROCHECK)
71 "ASO_ZEROCHECK "
72 # endif
73
74 # if defined(OPT_SPEED)
75 "OPT_SPEED "
76 # elif defined(OPT_ACCURACY)
77 "OPT_ACCURACY "
78 # endif
79
80 # if defined(OPT_SSO)
81 "OPT_SSO "
82 # endif
83
84 # if defined(OPT_DCTO) /* never defined here */
85 "OPT_DCTO "
86 # endif
87
88 # if defined(OPT_STRICT)
89 "OPT_STRICT "
90 # endif
91 ;