Fix I444 and J444 parameter names/order

Bug: libyuv:42280902
Change-Id: Ia2c45f2d996d071534b08381f61adf8cb8ef35b9
Reviewed-on: https://chromium-review.googlesource.com/c/libyuv/libyuv/+/7841767
Reviewed-by: richard winterton <rrwinterton@gmail.com>
Commit-Queue: Frank Barchard <fbarchard@google.com>
This commit is contained in:
Frank Barchard 2026-05-12 15:22:24 -07:00
parent dd8b46630a
commit c6c8689c74

View File

@ -24,16 +24,16 @@ extern "C" {
LIBYUV_API
int ARGBToI444(const uint8_t* src_argb,
int src_stride_argb,
uint8_t* dst_y,
int dst_stride_y,
uint8_t* dst_u,
int dst_stride_u,
uint8_t* dst_v,
int dst_stride_v,
uint8_t* dst_y,
int dst_stride_y,
int width,
int height) {
return ARGBToI444Matrix(src_argb, src_stride_argb, dst_u, dst_stride_u, dst_v,
dst_stride_v, dst_y, dst_stride_y, &kArgbI601Constants,
return ARGBToI444Matrix(src_argb, src_stride_argb, dst_y, dst_stride_y, dst_u,
dst_stride_u, dst_v, dst_stride_v, &kArgbI601Constants,
width, height);
}
@ -1809,16 +1809,16 @@ int ARGBToAR30(const uint8_t* src_argb,
LIBYUV_API
int ARGBToJ444(const uint8_t* src_argb,
int src_stride_argb,
uint8_t* dst_y,
int dst_stride_y,
uint8_t* dst_u,
int dst_stride_u,
uint8_t* dst_v,
int dst_stride_v,
uint8_t* dst_y,
int dst_stride_y,
int width,
int height) {
return ARGBToI444Matrix(src_argb, src_stride_argb, dst_u, dst_stride_u, dst_v,
dst_stride_v, dst_y, dst_stride_y, &kArgbJPEGConstants,
return ARGBToI444Matrix(src_argb, src_stride_argb, dst_y, dst_stride_y, dst_u,
dst_stride_u, dst_v, dst_stride_v, &kArgbJPEGConstants,
width, height);
}