/*****************************************************************************1* predict.h: aarch64 intra prediction2*****************************************************************************3* Copyright (C) 2009-2016 x264 project4*5* Authors: David Conrad <[email protected]>6* Janne Grunau <[email protected]>7*8* This program is free software; you can redistribute it and/or modify9* it under the terms of the GNU General Public License as published by10* the Free Software Foundation; either version 2 of the License, or11* (at your option) any later version.12*13* This program is distributed in the hope that it will be useful,14* but WITHOUT ANY WARRANTY; without even the implied warranty of15* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the16* GNU General Public License for more details.17*18* You should have received a copy of the GNU General Public License19* along with this program; if not, write to the Free Software20* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111, USA.21*22* This program is also available under a commercial proprietary license.23* For more information, contact us at [email protected].24*****************************************************************************/2526#ifndef X264_AARCH64_PREDICT_H27#define X264_AARCH64_PREDICT_H2829void x264_predict_4x4_h_aarch64( uint8_t *src );30void x264_predict_4x4_v_aarch64( uint8_t *src );31void x264_predict_8x8c_v_aarch64( uint8_t *src );3233// for the merged 4x4 intra sad/satd which expects unified suffix34#define x264_predict_4x4_h_neon x264_predict_4x4_h_aarch6435#define x264_predict_4x4_v_neon x264_predict_4x4_v_aarch6436#define x264_predict_8x8c_v_neon x264_predict_8x8c_v_aarch643738void x264_predict_4x4_dc_neon( uint8_t *src );39void x264_predict_8x8_v_neon( uint8_t *src, uint8_t edge[36] );40void x264_predict_8x8_h_neon( uint8_t *src, uint8_t edge[36] );41void x264_predict_8x8_dc_neon( uint8_t *src, uint8_t edge[36] );42void x264_predict_8x8c_dc_neon( uint8_t *src );43void x264_predict_8x8c_h_neon( uint8_t *src );44void x264_predict_8x16c_v_neon( uint8_t *src );45void x264_predict_8x16c_h_neon( uint8_t *src );46void x264_predict_8x16c_dc_neon( uint8_t *src );47void x264_predict_16x16_v_neon( uint8_t *src );48void x264_predict_16x16_h_neon( uint8_t *src );49void x264_predict_16x16_dc_neon( uint8_t *src );5051void x264_predict_4x4_init_aarch64( int cpu, x264_predict_t pf[12] );52void x264_predict_8x8_init_aarch64( int cpu, x264_predict8x8_t pf[12], x264_predict_8x8_filter_t *predict_filter );53void x264_predict_8x8c_init_aarch64( int cpu, x264_predict_t pf[7] );54void x264_predict_8x16c_init_aarch64( int cpu, x264_predict_t pf[7] );55void x264_predict_16x16_init_aarch64( int cpu, x264_predict_t pf[7] );5657#endif /* X264_AARCH64_PREDICT_H */585960