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