version.c
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:2k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /*
  2.  * libmad - MPEG audio decoder library
  3.  * Copyright (C) 2000-2003 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.1 2003/08/31 19:00:17 gabest Exp $
  20.  */
  21. # ifdef HAVE_CONFIG_H
  22. #  include "config.h"
  23. # endif
  24. # include "global.h"
  25. # include "version.h"
  26. char const mad_version[]   = "MPEG Audio Decoder " MAD_VERSION;
  27. char const mad_copyright[] = "Copyright (C) " MAD_PUBLISHYEAR " " MAD_AUTHOR;
  28. char const mad_author[]    = MAD_AUTHOR " <" MAD_EMAIL ">";
  29. char const mad_build[] = ""
  30. # if defined(DEBUG)
  31.   "DEBUG "
  32. # elif defined(NDEBUG)
  33.   "NDEBUG "
  34. # endif
  35. # if defined(EXPERIMENTAL)
  36.   "EXPERIMENTAL "
  37. # endif
  38. # if defined(FPM_64BIT)
  39.   "FPM_64BIT "
  40. # elif defined(FPM_INTEL)
  41.   "FPM_INTEL "
  42. # elif defined(FPM_ARM)
  43.   "FPM_ARM "
  44. # elif defined(FPM_MIPS)
  45.   "FPM_MIPS "
  46. # elif defined(FPM_SPARC)
  47.   "FPM_SPARC "
  48. # elif defined(FPM_PPC)
  49.   "FPM_PPC "
  50. # elif defined(FPM_DEFAULT)
  51.   "FPM_DEFAULT "
  52. # endif
  53. # if defined(ASO_IMDCT)
  54.   "ASO_IMDCT "
  55. # endif
  56. # if defined(ASO_INTERLEAVE1)
  57.   "ASO_INTERLEAVE1 "
  58. # endif
  59. # if defined(ASO_INTERLEAVE2)
  60.   "ASO_INTERLEAVE2 "
  61. # endif
  62. # if defined(ASO_ZEROCHECK)
  63.   "ASO_ZEROCHECK "
  64. # endif
  65. # if defined(OPT_SPEED)
  66.   "OPT_SPEED "
  67. # elif defined(OPT_ACCURACY)
  68.   "OPT_ACCURACY "
  69. # endif
  70. # if defined(OPT_SSO)
  71.   "OPT_SSO "
  72. # endif
  73. # if defined(OPT_DCTO)  /* never defined here */
  74.   "OPT_DCTO "
  75. # endif
  76. # if defined(OPT_STRICT)
  77.   "OPT_STRICT "
  78. # endif
  79. ;