/* * Copyright (c) 2010 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. */ #include <immintrin.h> /* AVX2 */ #include "./vpx_dsp_rtcd.h" #include "vpx_ports/mem.h" void vpx_lpf_horizontal_16_avx2(unsigned char *s, int pitch, const unsigned char *blimit, const unsigned char *limit, const unsigned char *thresh) { … } DECLARE_ALIGNED(32, static const uint8_t, filt_loopfilter_avx2[32]) = …; void vpx_lpf_horizontal_16_dual_avx2(unsigned char *s, int pitch, const unsigned char *blimit, const unsigned char *limit, const unsigned char *thresh) { … }