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.
version.cpp
00001 /* 00002 * libmad - MPEG audio decoder library 00003 * Copyright (C) 2000-2004 Underbit Technologies, Inc. 00004 * 00005 * This program is free software; you can redistribute it and/or modify 00006 * it under the terms of the GNU General Public License as published by 00007 * the Free Software Foundation; either version 2 of the License, or 00008 * (at your option) any later version. 00009 * 00010 * This program is distributed in the hope that it will be useful, 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 * GNU General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU General Public License 00016 * along with this program; if not, write to the Free Software 00017 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00018 * 00019 * $Id: version.c,v 1.1 2010/11/23 20:12:57 andy Exp $ 00020 */ 00021 00022 # include "config.h" 00023 00024 # include "global.h" 00025 00026 # include "version.h" 00027 00028 char const mad_version[] = "MPEG Audio Decoder " MAD_VERSION; 00029 char const mad_copyright[] = "Copyright (C) " MAD_PUBLISHYEAR " " MAD_AUTHOR; 00030 char const mad_author[] = MAD_AUTHOR " <" MAD_EMAIL ">"; 00031 00032 char const mad_build[] = "" 00033 # if defined(DEBUG) 00034 "DEBUG " 00035 # elif defined(NDEBUG) 00036 "NDEBUG " 00037 # endif 00038 00039 # if defined(EXPERIMENTAL) 00040 "EXPERIMENTAL " 00041 # endif 00042 00043 # if defined(FPM_64BIT) 00044 "FPM_64BIT " 00045 # elif defined(FPM_INTEL) 00046 "FPM_INTEL " 00047 # elif defined(FPM_ARM) 00048 "FPM_ARM " 00049 # elif defined(FPM_MIPS) 00050 "FPM_MIPS " 00051 # elif defined(FPM_SPARC) 00052 "FPM_SPARC " 00053 # elif defined(FPM_PPC) 00054 "FPM_PPC " 00055 # elif defined(FPM_DEFAULT) 00056 "FPM_DEFAULT " 00057 # endif 00058 00059 # if defined(ASO_IMDCT) 00060 "ASO_IMDCT " 00061 # endif 00062 # if defined(ASO_INTERLEAVE1) 00063 "ASO_INTERLEAVE1 " 00064 # endif 00065 # if defined(ASO_INTERLEAVE2) 00066 "ASO_INTERLEAVE2 " 00067 # endif 00068 # if defined(ASO_ZEROCHECK) 00069 "ASO_ZEROCHECK " 00070 # endif 00071 00072 # if defined(OPT_SPEED) 00073 "OPT_SPEED " 00074 # elif defined(OPT_ACCURACY) 00075 "OPT_ACCURACY " 00076 # endif 00077 00078 # if defined(OPT_SSO) 00079 "OPT_SSO " 00080 # endif 00081 00082 # if defined(OPT_DCTO) /* never defined here */ 00083 "OPT_DCTO " 00084 # endif 00085 00086 # if defined(OPT_STRICT) 00087 "OPT_STRICT " 00088 # endif 00089 ;
Generated on Tue Jul 12 2022 23:11:09 by
1.7.2