version.h

Go to the documentation of this file.
00001 /*
00002  *      Version numbering for LAME.
00003  *
00004  *      Copyright (c) 1999 A.L. Faber
00005  *
00006  * This library is free software; you can redistribute it and/or
00007  * modify it under the terms of the GNU Lesser General Public
00008  * License as published by the Free Software Foundation; either
00009  * version 2 of the License, or (at your option) any later version.
00010  *
00011  * This library is distributed in the hope that it will be useful,
00012  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00013  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00014  * Library General Public License for more details.
00015  *
00016  * You should have received a copy of the GNU Lesser General Public
00017  * License along with this library; if not, write to the
00018  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
00019  * Boston, MA 02111-1307, USA.
00020  */
00021 
00022 #ifndef LAME_VERSION_H
00023 #define LAME_VERSION_H
00024 
00025 
00026 /*
00027  * To make a string from a token, use the # operator:
00028  *
00029  * #define __STR(x)  #x
00030  * #define STR(x)    __STR(x)
00031  */
00032 
00033 # define LAME_URL              "http://www.mp3dev.org/"
00034 
00035 
00036 # define LAME_MAJOR_VERSION      3 /* Major version number */
00037 # define LAME_MINOR_VERSION     98 /* Minor version number */
00038 # define LAME_TYPE_VERSION       1 /* 0:alpha 1:beta 2:release */
00039 # define LAME_PATCH_VERSION      5 /* Patch level */
00040 # define LAME_ALPHA_VERSION     (LAME_TYPE_VERSION==0)
00041 # define LAME_BETA_VERSION      (LAME_TYPE_VERSION==1)
00042 # define LAME_RELEASE_VERSION   (LAME_TYPE_VERSION==2)
00043 
00044 # define PSY_MAJOR_VERSION       0 /* Major version number */
00045 # define PSY_MINOR_VERSION      90 /* Minor version number */
00046 # define PSY_ALPHA_VERSION       0 /* Set number if this is an alpha version, otherwise zero */
00047 # define PSY_BETA_VERSION        0 /* Set number if this is a beta version, otherwise zero */
00048 
00049 
00050 const char *get_lame_os_bitness(void);
00051 
00052 #endif /* LAME_VERSION_H */
00053 
00054 /* End of version.h */

Generated on Sun Dec 2 11:34:21 2007 for LAME by  doxygen 1.5.2