Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: FatFileSystemCpp I2SSlave TLV320 mbed
Fork of madplayer by
version.cpp@3:6f07b5f52c38, 2012-12-19 (annotated)
- Committer:
- okini3939
- Date:
- Wed Dec 19 06:01:00 2012 +0000
- Revision:
- 3:6f07b5f52c38
- Parent:
- 0:7627c79db971
1st build;
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| Gruenfrosch | 0:7627c79db971 | 1 | /* |
| Gruenfrosch | 0:7627c79db971 | 2 | * libmad - MPEG audio decoder library |
| Gruenfrosch | 0:7627c79db971 | 3 | * Copyright (C) 2000-2004 Underbit Technologies, Inc. |
| Gruenfrosch | 0:7627c79db971 | 4 | * |
| Gruenfrosch | 0:7627c79db971 | 5 | * This program is free software; you can redistribute it and/or modify |
| Gruenfrosch | 0:7627c79db971 | 6 | * it under the terms of the GNU General Public License as published by |
| Gruenfrosch | 0:7627c79db971 | 7 | * the Free Software Foundation; either version 2 of the License, or |
| Gruenfrosch | 0:7627c79db971 | 8 | * (at your option) any later version. |
| Gruenfrosch | 0:7627c79db971 | 9 | * |
| Gruenfrosch | 0:7627c79db971 | 10 | * This program is distributed in the hope that it will be useful, |
| Gruenfrosch | 0:7627c79db971 | 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| Gruenfrosch | 0:7627c79db971 | 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| Gruenfrosch | 0:7627c79db971 | 13 | * GNU General Public License for more details. |
| Gruenfrosch | 0:7627c79db971 | 14 | * |
| Gruenfrosch | 0:7627c79db971 | 15 | * You should have received a copy of the GNU General Public License |
| Gruenfrosch | 0:7627c79db971 | 16 | * along with this program; if not, write to the Free Software |
| Gruenfrosch | 0:7627c79db971 | 17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| Gruenfrosch | 0:7627c79db971 | 18 | * |
| Gruenfrosch | 0:7627c79db971 | 19 | * $Id: version.c,v 1.1 2010/11/23 20:12:57 andy Exp $ |
| Gruenfrosch | 0:7627c79db971 | 20 | */ |
| Gruenfrosch | 0:7627c79db971 | 21 | |
| Gruenfrosch | 0:7627c79db971 | 22 | # include "config.h" |
| Gruenfrosch | 0:7627c79db971 | 23 | |
| Gruenfrosch | 0:7627c79db971 | 24 | # include "global.h" |
| Gruenfrosch | 0:7627c79db971 | 25 | |
| Gruenfrosch | 0:7627c79db971 | 26 | # include "version.h" |
| Gruenfrosch | 0:7627c79db971 | 27 | |
| Gruenfrosch | 0:7627c79db971 | 28 | char const mad_version[] = "MPEG Audio Decoder " MAD_VERSION; |
| Gruenfrosch | 0:7627c79db971 | 29 | char const mad_copyright[] = "Copyright (C) " MAD_PUBLISHYEAR " " MAD_AUTHOR; |
| Gruenfrosch | 0:7627c79db971 | 30 | char const mad_author[] = MAD_AUTHOR " <" MAD_EMAIL ">"; |
| Gruenfrosch | 0:7627c79db971 | 31 | |
| Gruenfrosch | 0:7627c79db971 | 32 | char const mad_build[] = "" |
| Gruenfrosch | 0:7627c79db971 | 33 | # if defined(DEBUG) |
| Gruenfrosch | 0:7627c79db971 | 34 | "DEBUG " |
| Gruenfrosch | 0:7627c79db971 | 35 | # elif defined(NDEBUG) |
| Gruenfrosch | 0:7627c79db971 | 36 | "NDEBUG " |
| Gruenfrosch | 0:7627c79db971 | 37 | # endif |
| Gruenfrosch | 0:7627c79db971 | 38 | |
| Gruenfrosch | 0:7627c79db971 | 39 | # if defined(EXPERIMENTAL) |
| Gruenfrosch | 0:7627c79db971 | 40 | "EXPERIMENTAL " |
| Gruenfrosch | 0:7627c79db971 | 41 | # endif |
| Gruenfrosch | 0:7627c79db971 | 42 | |
| Gruenfrosch | 0:7627c79db971 | 43 | # if defined(FPM_64BIT) |
| Gruenfrosch | 0:7627c79db971 | 44 | "FPM_64BIT " |
| Gruenfrosch | 0:7627c79db971 | 45 | # elif defined(FPM_INTEL) |
| Gruenfrosch | 0:7627c79db971 | 46 | "FPM_INTEL " |
| Gruenfrosch | 0:7627c79db971 | 47 | # elif defined(FPM_ARM) |
| Gruenfrosch | 0:7627c79db971 | 48 | "FPM_ARM " |
| Gruenfrosch | 0:7627c79db971 | 49 | # elif defined(FPM_MIPS) |
| Gruenfrosch | 0:7627c79db971 | 50 | "FPM_MIPS " |
| Gruenfrosch | 0:7627c79db971 | 51 | # elif defined(FPM_SPARC) |
| Gruenfrosch | 0:7627c79db971 | 52 | "FPM_SPARC " |
| Gruenfrosch | 0:7627c79db971 | 53 | # elif defined(FPM_PPC) |
| Gruenfrosch | 0:7627c79db971 | 54 | "FPM_PPC " |
| Gruenfrosch | 0:7627c79db971 | 55 | # elif defined(FPM_DEFAULT) |
| Gruenfrosch | 0:7627c79db971 | 56 | "FPM_DEFAULT " |
| Gruenfrosch | 0:7627c79db971 | 57 | # endif |
| Gruenfrosch | 0:7627c79db971 | 58 | |
| Gruenfrosch | 0:7627c79db971 | 59 | # if defined(ASO_IMDCT) |
| Gruenfrosch | 0:7627c79db971 | 60 | "ASO_IMDCT " |
| Gruenfrosch | 0:7627c79db971 | 61 | # endif |
| Gruenfrosch | 0:7627c79db971 | 62 | # if defined(ASO_INTERLEAVE1) |
| Gruenfrosch | 0:7627c79db971 | 63 | "ASO_INTERLEAVE1 " |
| Gruenfrosch | 0:7627c79db971 | 64 | # endif |
| Gruenfrosch | 0:7627c79db971 | 65 | # if defined(ASO_INTERLEAVE2) |
| Gruenfrosch | 0:7627c79db971 | 66 | "ASO_INTERLEAVE2 " |
| Gruenfrosch | 0:7627c79db971 | 67 | # endif |
| Gruenfrosch | 0:7627c79db971 | 68 | # if defined(ASO_ZEROCHECK) |
| Gruenfrosch | 0:7627c79db971 | 69 | "ASO_ZEROCHECK " |
| Gruenfrosch | 0:7627c79db971 | 70 | # endif |
| Gruenfrosch | 0:7627c79db971 | 71 | |
| Gruenfrosch | 0:7627c79db971 | 72 | # if defined(OPT_SPEED) |
| Gruenfrosch | 0:7627c79db971 | 73 | "OPT_SPEED " |
| Gruenfrosch | 0:7627c79db971 | 74 | # elif defined(OPT_ACCURACY) |
| Gruenfrosch | 0:7627c79db971 | 75 | "OPT_ACCURACY " |
| Gruenfrosch | 0:7627c79db971 | 76 | # endif |
| Gruenfrosch | 0:7627c79db971 | 77 | |
| Gruenfrosch | 0:7627c79db971 | 78 | # if defined(OPT_SSO) |
| Gruenfrosch | 0:7627c79db971 | 79 | "OPT_SSO " |
| Gruenfrosch | 0:7627c79db971 | 80 | # endif |
| Gruenfrosch | 0:7627c79db971 | 81 | |
| Gruenfrosch | 0:7627c79db971 | 82 | # if defined(OPT_DCTO) /* never defined here */ |
| Gruenfrosch | 0:7627c79db971 | 83 | "OPT_DCTO " |
| Gruenfrosch | 0:7627c79db971 | 84 | # endif |
| Gruenfrosch | 0:7627c79db971 | 85 | |
| Gruenfrosch | 0:7627c79db971 | 86 | # if defined(OPT_STRICT) |
| Gruenfrosch | 0:7627c79db971 | 87 | "OPT_STRICT " |
| Gruenfrosch | 0:7627c79db971 | 88 | # endif |
| Gruenfrosch | 0:7627c79db971 | 89 | ; |
