Rename the dst_stride_uv param of ARGBToNV21Matrix

It should be named dst_stride_vu to match the dst_vu parameter.

Change-Id: I3a4835eafa358787a858b896060e6c715813bbec
This commit is contained in:
Wan-Teh Chang 2026-07-22 12:34:36 -07:00
parent b56492e2df
commit 6c2eb631df

View File

@ -584,7 +584,7 @@ int ARGBToNV21Matrix(const uint8_t* src_argb,
uint8_t* dst_y,
int dst_stride_y,
uint8_t* dst_vu,
int dst_stride_uv,
int dst_stride_vu,
const struct ArgbConstants* argbconstants,
int width,
int height) {
@ -783,7 +783,7 @@ int ARGBToNV21Matrix(const uint8_t* src_argb,
argbconstants);
src_argb += src_stride_argb * 2;
dst_y += dst_stride_y * 2;
dst_vu += dst_stride_uv;
dst_vu += dst_stride_vu;
}
if (height & 1) {
ARGBToUVMatrixRow(src_argb, 0, row_u, row_v, width, argbconstants);