From 6c2eb631dfa2be3e7c16de43f500c01950e9f5ab Mon Sep 17 00:00:00 2001 From: Wan-Teh Chang Date: Wed, 22 Jul 2026 12:34:36 -0700 Subject: [PATCH] Rename the dst_stride_uv param of ARGBToNV21Matrix It should be named dst_stride_vu to match the dst_vu parameter. Change-Id: I3a4835eafa358787a858b896060e6c715813bbec --- source/convert_from_argb.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/convert_from_argb.cc b/source/convert_from_argb.cc index d5870a689..897043c99 100644 --- a/source/convert_from_argb.cc +++ b/source/convert_from_argb.cc @@ -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);