分类: LINUX
2013-06-26 09:56:39
编译环境:
Linux debian 2.6.32-5-686 #1 SMP Mon Feb 25 01:04:36 UTC 2013 i686 GNU/Linux
参考,以下几个地方需要注意
1、编译时报
2、报XDeintBand8x8MMXEXT错误,注释VLC_MMX,VLC开发人员建议用GCC最新版本,但升级当前最新的4.8.1仍有问题
#ifdef CAN_COMPILE_MMXEXT
//VLC_MMX
static inline void XDeintBand8x8MMXEXT( uint8_t *dst, int i_dst,
uint8_t *src, int i_src,
const int i_mbx, int i_modx )
3、报IID_ID2D1Factory未定义,添加IID_ID2D1Factory定义
#ifndef NDEBUG
msg_Dbg(vd, "D2D1.DLL loaded");
#endif
const struct _GUID IID_ID2D1Factory = {
102048327, 28496, 18010,
{146, 69, 17, 139, 253, 59, 96, 7}
};