version.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:2k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * Version numbering for LAME.
  3.  *
  4.  * Copyright (c) 1999 A.L. Faber
  5.  *
  6.  * This library is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU Library General Public
  8.  * License as published by the Free Software Foundation; either
  9.  * version 2 of the License, or (at your option) any later version.
  10.  *
  11.  * This library is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * Library General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU Library General Public
  17.  * License along with this library; if not, write to the
  18.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  19.  * Boston, MA 02111-1307, USA.
  20.  */
  21. #ifndef LAME_H_INCLUDED
  22. #define LAME_H_INCLUDED
  23. #define LAME_MAJOR_VERSION 3 /* Major version number */
  24. #define LAME_MINOR_VERSION 70 /* Minor version number */
  25. #define LAME_ALPHAVERSION 0 /* Set number if this is an alpha version, otherwise zero */
  26. #define LAME_BETAVERSION        0 /* Set number if this is a beta version, otherwise zero */
  27. #define PSY_MAJOR_VERSION 0 /* Major version number */
  28. #define PSY_MINOR_VERSION 77 /* Minor version number */
  29. #define PSY_ALPHAVERSION 0 /* Set number if this is an alpha version, otherwise zero */
  30. #define PSY_BETAVERSION 0 /* Set number if this is a beta version, otherwise zero */
  31. #define MP3X_MAJOR_VERSION 0 /* Major version number */
  32. #define MP3X_MINOR_VERSION 82 /* Minor version number */
  33. #define MP3X_ALPHAVERSION 0 /* Set number if this is an alpha version, otherwise zero */
  34. #define MP3X_BETAVERSION 0 /* Set number if this is a beta version, otherwise zero */
  35. #include "machine.h"
  36. void lame_print_version(FILE *);
  37. char* get_lame_version(void); /* returns lame version number string */
  38. char* get_psy_version(void); /* returns psy model version number string */
  39. char* get_mp3x_version(void); /* returns mp3x version number string */
  40. #endif