From 73a603e1204e6eed1eeb1448051b8099aa67cf71 Mon Sep 17 00:00:00 2001 From: Frank Barchard Date: Wed, 8 Mar 2017 09:49:02 -0800 Subject: clang-format 5.0 applied to libyuv BUG=None TEST=try bots and lint test Change-Id: I1ab462adf2d309117862c5eb4b244a61ae202951 Reviewed-on: https://chromium-review.googlesource.com/450658 Commit-Queue: Frank Barchard Reviewed-by: Henrik Kjellander --- source/scale_common.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/scale_common.cc') diff --git a/source/scale_common.cc b/source/scale_common.cc index a39ee05a..1bef39df 100644 --- a/source/scale_common.cc +++ b/source/scale_common.cc @@ -1029,7 +1029,7 @@ void ScalePlaneVertical(int src_height, enum FilterMode filtering) { // TODO(fbarchard): Allow higher bpp. int dst_width_bytes = dst_width * bpp; - void (*InterpolateRow)(uint8* dst_argb, const uint8* src_argb, + void (*InterpolateRow)(uint8 * dst_argb, const uint8* src_argb, ptrdiff_t src_stride, int dst_width, int source_y_fraction) = InterpolateRow_C; const int max_y = (src_height > 1) ? ((src_height - 1) << 16) - 1 : 0; @@ -1109,7 +1109,7 @@ void ScalePlaneVertical_16(int src_height, enum FilterMode filtering) { // TODO(fbarchard): Allow higher wpp. int dst_width_words = dst_width * wpp; - void (*InterpolateRow)(uint16* dst_argb, const uint16* src_argb, + void (*InterpolateRow)(uint16 * dst_argb, const uint16* src_argb, ptrdiff_t src_stride, int dst_width, int source_y_fraction) = InterpolateRow_16_C; const int max_y = (src_height > 1) ? ((src_height - 1) << 16) - 1 : 0; -- cgit v1.2.3