config.h

来自「从FFMPEG转换而来的H264解码程序,VC下编译..」· C头文件 代码 · 共 48 行

H
48
字号
#if defined(__GNUC__)
  #define ARCH_X86 1
  #ifndef ARCH_X86_64
  	#define ARCH_X86_32 1
  #endif
  
  #define HAVE_SSSE3 1
#endif

#if defined(__GNUC__) || defined(__INTEL_COMPILER)
 #ifndef WIN64
  #define HAVE_MMX 1
 #endif
 #define HAVE_BUILTIN_VECTOR 1
 #define __CPU__ 586
#endif

#define HAVE_MALLOC_H 1
#define HAVE_LRINTF 1
#define SIMPLE_IDCT 1
#define CONFIG_ZLIB 1
#define HAVE_W32THREADS 1
#define HAVE_THREADS 1
#define HAVE_MEMALIGN 1
#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"

#ifndef DECODERS_ONLY
 /* encoding stuff */
 #define CONFIG_ENCODERS 1
 #define CONFIG_H261_ENCODER 1
#endif

#define CONFIG_DECODERS 1


#define CONFIG_MPEGAUDIO_HP 1


#ifdef __GNUC__
 #include <stdint.h>
#else
 #ifndef __attribute__
  #define __attribute__(x) /**/
 #endif
 #define lrintf(x) (int)(x)
 #define EMULATE_FAST_INT
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?