0
如何ARGB轉換爲NV21(yuv420sp)購買Android NDK?(android ndk)庫的libyuv將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?
請用一個簡單的例子幫助。