|
发表于 2017-9-14 05:44:48
|
显示全部楼层
回复 1# shetianlang
thank you for sharing
I tried to compile using the included Makefile, with very *.c in core folder
I did try to run gmake as well as individual *.c: please help
cc -g -Wall -DDEBUG -O4 -funroll-loops -DHAVE_MALLOC_H -DHAVE_MMXEXT -DARCH_X86 -D__X264__ -c -o x264.o x264.c
core/macroblock.h:27:47: error: unknown type name ‘x264_macroblock_t’; did you mean ‘x264_nal_t’?
void x264_macroblock_encode ( x264_t *h, x264_macroblock_t *mb );
^~~~~~~~~~~~~~~~~
x264_nal_t
core/macroblock.h:28:56: error: unknown type name ‘x264_macroblock_t’; did you mean ‘x264_nal_t’?
void x264_macroblock_write_cabac ( x264_t *h, bs_t *s, x264_macroblock_t *mb );
^~~~~~~~~~~~~~~~~
x264_nal_t
core/macroblock.h:29:56: error: unknown type name ‘x264_macroblock_t’; did you mean ‘x264_nal_t’?
void x264_macroblock_write_cavlc ( x264_t *h, bs_t *s, x264_macroblock_t *mb );
^~~~~~~~~~~~~~~~~
x264_nal_t
core/macroblock.h:31:37: error: unknown type name ‘x264_macroblock_t’; did you mean ‘x264_nal_t’?
void x264_cabac_mb_skip( x264_t *h, x264_macroblock_t *mb, int b_skip );
^~~~~~~~~~~~~~~~~
x264_nal_t
In file included from x264.c:41:0:
core/common.h:32:10: fatal error: set.h: No such file or directory |
|