我正在处理以 YUV_420 _888 编码的 Android camera2 预览帧,方法是从 Libyuv 库中调用 I420ToARGB 方法,但我得到的图像颜色错误。
libyuv::I420ToARGB(
ysrc, //const uint8* src_y,
ystride, //int src_stride_y,
usrc, //const uint8* src_u,
ustride, ///int src_stride_u,
vsrc, //const uint8* src_v,
vstride, //int src_stride_v,
argb, //uint8* dst_argb,
w*4, //int dst_stride_argb,
w, //int width,
h //int height
);