config.h
上传用户:sunbaby
上传日期:2013-05-31
资源大小:242k
文件大小:2k
源码类别:

mpeg/mp3

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  *
  3.  *  T264 AVC CODEC
  4.  *
  5.  *  Copyright(C) 2004-2005 llcc <lcgate1@yahoo.com.cn>
  6.  *               2004-2005 visionany <visionany@yahoo.com.cn>
  7.  *  Ported to TI DSP Platform By YouXiaoQuan, HFUT-TI UNITED LAB,China      
  8.  *               2004-2005 You Xiaoquan <YouXiaoquan@126.com>   
  9.  *
  10.  *  This program is free software ; you can redistribute it and/or modify
  11.  *  it under the terms of the GNU General Public License as published by
  12.  *  the Free Software Foundation ; either version 2 of the License, or
  13.  *  (at your option) any later version.
  14.  *
  15.  *  This program is distributed in the hope that it will be useful,
  16.  *  but WITHOUT ANY WARRANTY ; without even the implied warranty of
  17.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  *  GNU General Public License for more details.
  19.  *
  20.  *  You should have received a copy of the GNU General Public License
  21.  *  along with this program ; if not, write to the Free Software
  22.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  23.  *
  24.  ****************************************************************************/
  25. #ifndef _CONFIG_H_
  26. #define _CONFIG_H_
  27. #ifdef _MSC_VER
  28. #ifdef _M_IX86
  29. #define ARCH_IS_IA32
  30. #define ENABLE_PROFILE
  31. #endif //_M_IX86
  32. #endif // _MSC_VER
  33. #ifdef __GCC__
  34. //#ifdef _M_IX86
  35. #define ARCH_IS_IA32
  36. #define ENABLE_PROFILE
  37. //#endif //_M_IX86
  38. #endif // __GCC__
  39. #if defined (_TI_DM642)
  40. #define CHIP_DM642
  41. //Ti_DSP Platform ported by YouXiaoquan,HFUT-Ti United Lab,China
  42. //YouXiaoquan@126.com
  43. #endif///////// CHIP_DM642
  44. #endif