如何在 Android ndk 中将 argb 转换为 nv21 (yuv420sp)?
720 * 1280 问我要不要去下面的参数api改变图片大小的颜色格式。
argb image data size is 3,686,400.
(width : 720
height : 1280
bitPerPixel : 32
bytePerPexel: 4)
Api 已关闭https://code.google.com/p/libyuv/
int ARGBToNV21 (const uint8 * src_argb, int src_stride_argb,
uint8 * dst_y, int dst_stride_y,
uint8 * dst_vu, int dst_stride_vu,
int width, int height);
参数的含义是什么?int src_stride_argb? int dst_stride_y? int int dst_stride_vu?
请帮忙举个简单的例子。