Commit 594d59d0 authored by Frank Barchard's avatar Frank Barchard

clang tidy mismatch in J420ToRGB565

Fix parameter names to match definition and other functions
that use dst_rgb565 for the parameter.

BUG=libyuv:819, b:109762970
TESTED=locally built to ensure tests still pass.

Change-Id: I2ac20a999e60cda559a150932f0fc4075224b8a5
Reviewed-on: https://chromium-review.googlesource.com/c/1267795
Commit-Queue: Frank Barchard <fbarchard@chromium.org>
Reviewed-by: 's avatarMirko Bonadei <mbonadei@chromium.org>
Reviewed-by: 's avatarFrank Barchard <fbarchard@chromium.org>
parent 3583835a
......@@ -246,8 +246,8 @@ int J420ToRGB565(const uint8_t* src_y,
int src_stride_u,
const uint8_t* src_v,
int src_stride_v,
uint8_t* dst_frame,
int dst_stride_frame,
uint8_t* dst_rgb565,
int dst_stride_rgb565,
int width,
int height);
......@@ -258,8 +258,8 @@ int H420ToRGB565(const uint8_t* src_y,
int src_stride_u,
const uint8_t* src_v,
int src_stride_v,
uint8_t* dst_frame,
int dst_stride_frame,
uint8_t* dst_rgb565,
int dst_stride_rgb565,
int width,
int height);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment