video analysis2.0拆分,ffmpeg封装go接口库
zhangmeng
2019-10-11 6560c8db79af9549c8c266c7461d3c8b8b6210ea
csrc/cffmpeg.cpp
@@ -118,8 +118,8 @@
}
void *c_ffmpeg_create_conv(const int srcW, const int srcH, const int srcFormat,
                          const int dstW, const int dstH, const int flag){
    return CreateConvertor(srcW, srcH, srcFormat, dstW, dstH, flag);
                          const int dstW, const int dstH, const int dstFormat, const int flag){
    return CreateConvertor(srcW, srcH, srcFormat, dstW, dstH, dstFormat, flag);
}
void *c_ffmpeg_conv(void *h, uint8_t *in){