⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 config.h

📁 从FFMPEG转换而来的H264解码程序,VC下编译..
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -