在Windows下基于libx264.a的Qt 4.8.2视频压缩

1、在用mingw 4.5.2编译x264后,生成libx264.a文件,将libx264.a和x264.h和x264_config.h拷贝到Qt工程中,将mingw/lib/libpthread.a拷贝到Qt工程中,在.pro中

LIB  += -L. -lx264 -lpthread

2、编译时会提示,找不到x264_param_parse函数定义,打开x264.h,在文件头#defineX264_X264_H下面加上

#ifdef__cplusplus

extern"C"{

#endif
在文件尾#endif之前加,

#ifdef__cplusplus

}

#endif

在Windows下基于libx264.a的Qt 4.8.2视频压缩,布布扣,bubuko.com

在Windows下基于libx264.a的Qt 4.8.2视频压缩

上一篇:在Windows下用MingW 4.5.2编译FFmpeg


下一篇:Windows Server 2008 R2 小技巧 (转)