const uint8_t *av_restrict start
请问下 在linux 下面const uint8_t *av_restrict start这样写编译器就报错啊
jni/ffmpeg/libavformat/rtpenc.h:95:78: error: expected ';', ',' or ')' before 'start'
make: *** [obj/local/armeabi/objs/avformat/movenc.o] Error 1
Linux 编译器 C
[解决办法]
你是想创建const uint8_t 类型的指针av_restrict 和const uint8_t 类型的start变量??
分隔符在哪里?!