aboutsummaryrefslogtreecommitdiff
path: root/include/libyuv/scale_row.h
diff options
context:
space:
mode:
authorFrank Barchard <fbarchard@google.com>2022-08-04 14:38:13 -0700
committerFrank Barchard <fbarchard@chromium.org>2022-08-04 22:55:48 +0000
commitd53f1beecdd8d959f7a3f2e19bd0bd7e7227a233 (patch)
treedd04fcd4e0810ef845799039ae30e38fc462016f /include/libyuv/scale_row.h
parent394436b289b07bffae8e4d94f4020f4f3dfc1b09 (diff)
downloadlibyuv-d53f1beecdd8d959f7a3f2e19bd0bd7e7227a233.tar.gz
RAWToJ400 require multiple of 16 pixels for NEON
- fix crash when width is not a multiple of 16 - apply clang format - bump version Bug: libyuv:940, b/240094327 Change-Id: Ic18e5b7b64f78f26e8b7d8440bf490a679bda200 Reviewed-on: https://chromium-review.googlesource.com/c/libyuv/libyuv/+/3812594 Reviewed-by: Wan-Teh Chang <wtc@google.com>
Diffstat (limited to 'include/libyuv/scale_row.h')
-rw-r--r--include/libyuv/scale_row.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/libyuv/scale_row.h b/include/libyuv/scale_row.h
index 6be21298..6cb5e128 100644
--- a/include/libyuv/scale_row.h
+++ b/include/libyuv/scale_row.h
@@ -693,10 +693,10 @@ void ScaleRowUp2_Linear_16_Any_SSE2(const uint16_t* src_ptr,
uint16_t* dst_ptr,
int dst_width);
void ScaleRowUp2_Bilinear_16_Any_SSE2(const uint16_t* src_ptr,
- ptrdiff_t src_stride,
- uint16_t* dst_ptr,
- ptrdiff_t dst_stride,
- int dst_width);
+ ptrdiff_t src_stride,
+ uint16_t* dst_ptr,
+ ptrdiff_t dst_stride,
+ int dst_width);
void ScaleRowUp2_Linear_Any_SSSE3(const uint8_t* src_ptr,
uint8_t* dst_ptr,
int dst_width);