/* * Copyright (c) 2024, Alliance for Open Media. All rights reserved. * * This source code is subject to the terms of the BSD 2 Clause License and * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License * was not distributed with this source code in the LICENSE file, you can * obtain it at www.aomedia.org/license/software. If the Alliance for Open * Media Patent License 1.0 was not distributed with this source code in the * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
*/
// Filter values at indices 0 and 7 are 0.
int16x8_t sum = vmulq_lane_s16(s0, filter_lo, 1);
sum = vmlaq_lane_s16(sum, s1, filter_lo, 2);
sum = vmlaq_lane_s16(sum, s2, filter_lo, 3);
sum = vmlaq_lane_s16(sum, s3, filter_hi, 0);
sum = vmlaq_lane_s16(sum, s4, filter_hi, 1);
sum = vmlaq_lane_s16(sum, s5, filter_hi, 2);
// We halved the convolution filter values so -1 from the right shift. return vqrshrun_n_s16(sum, FILTER_BITS - 1);
}
s += 8 * src_stride;
d += 2 * dst_stride;
height -= 2;
} while (height > 0);
src += 8;
dst += 8;
w -= 8;
} while (w > 0);
}
#endif// AOM_AV1_COMMON_ARM_RESIZE_NEON_H_
Messung V0.5 in Prozent
¤ 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.0.12Bemerkung:
(vorverarbeitet am 2026-04-25)
¤
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.