/* * Copyright (c) 2017 The WebM project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree.
*/
#if HAVE_SSSE3 || HAVE_NEON // TODO(linfengz): The 4:3 specialized C code is disabled by default since // it's much slower than the general version which calls vpx_scaled_2d() even // if vpx_scaled_2d() is not optimized. It will only be enabled as a reference // for the platforms which have faster optimization. if (4 * dst->y_crop_width == 3 * src_w &&
4 * dst->y_crop_height == 3 * src_h) { // Specialize 4 to 3 scaling. // Example pixel locations. // (O: Original pixel. S: Scaled pixel. X: Overlapped pixel.) // phase_scaler = 0 | phase_scaler = 8 // | // X O S O S O X | O O O O O // | // | // | S S S // | // | // O O O O O | O O O O O // | // S S S S | // | // | // | S S S // O O O O O | O O O O O // | // | // | // S S S S | // | // O O O O O | O O O O O // | S S S // | // | // | // | // X O S O S O X | O O O O O
constint dst_ws[3] = { dst->y_crop_width, dst->uv_crop_width,
dst->uv_crop_width }; constint dst_hs[3] = { dst->y_crop_height, dst->uv_crop_height,
dst->uv_crop_height }; for (i = 0; i < MAX_MB_PLANE; ++i) { constint dst_w = dst_ws[i]; constint dst_h = dst_hs[i]; constint src_stride = src_strides[i]; constint dst_stride = dst_strides[i]; for (y = 0; y < dst_h; y += 3) { for (x = 0; x < dst_w; x += 3) { const uint8_t *src_ptr = srcs[i] + 4 * y / 3 * src_stride + 4 * x / 3;
uint8_t *dst_ptr = dsts[i] + y * dst_stride + x;
// Must call c function because its optimization doesn't support 3x3.
vpx_scaled_2d_c(src_ptr, src_stride, dst_ptr, dst_stride, kernel,
phase_scaler, 64 / 3, phase_scaler, 64 / 3, 3, 3);
}
}
}
} else #endif
{ constint dst_w = dst->y_crop_width; constint dst_h = dst->y_crop_height;
// The issue b/311394513 reveals a corner case bug. vpx_scaled_2d() requires // both x_step_q4 and y_step_q4 are less than or equal to 64. Otherwise, it // needs to call vp9_scale_and_extend_frame_nonnormative() that supports // arbitrary scaling. constint x_step_q4 = 16 * src_w / dst_w; constint y_step_q4 = 16 * src_h / dst_h; if (x_step_q4 > 64 || y_step_q4 > 64) { // This function is only called while cm->bit_depth is VPX_BITS_8. #if CONFIG_VP9_HIGHBITDEPTH
vp9_scale_and_extend_frame_nonnormative(src, dst, (int)VPX_BITS_8); #else
vp9_scale_and_extend_frame_nonnormative(src, dst); #endif// CONFIG_VP9_HIGHBITDEPTH return;
}
for (i = 0; i < MAX_MB_PLANE; ++i) { constint factor = (i == 0 || i == 3 ? 1 : 2); constint src_stride = src_strides[i]; constint dst_stride = dst_strides[i]; for (y = 0; y < dst_h; y += 16) { constint y_q4 = y * (16 / factor) * src_h / dst_h + phase_scaler; for (x = 0; x < dst_w; x += 16) { constint x_q4 = x * (16 / factor) * src_w / dst_w + phase_scaler; const uint8_t *src_ptr = srcs[i] +
(y / factor) * src_h / dst_h * src_stride +
(x / factor) * src_w / dst_w;
uint8_t *dst_ptr = dsts[i] + (y / factor) * dst_stride + (x / factor);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.