@ -27,16 +27,16 @@ void ff_hevc_v_loop_filter_luma_neon(uint8_t *_pix, ptrdiff_t _stride, int _beta
void ff_hevc_h_loop_filter_luma_neon ( uint8_t * _pix , ptrdiff_t _stride , int _beta , int * _tc , uint8_t * _no_p , uint8_t * _no_q ) ;
void ff_hevc_v_loop_filter_chroma_neon ( uint8_t * _pix , ptrdiff_t _stride , int * _tc , uint8_t * _no_p , uint8_t * _no_q ) ;
void ff_hevc_h_loop_filter_chroma_neon ( uint8_t * _pix , ptrdiff_t _stride , int * _tc , uint8_t * _no_p , uint8_t * _no_q ) ;
void ff_hevc_idct_4x4_dc_8_neon ( int16_t * coeffs ) ;
void ff_hevc_idct_8x8_dc_8_neon ( int16_t * coeffs ) ;
void ff_hevc_idct_16x16_dc_8_neon ( int16_t * coeffs ) ;
void ff_hevc_idct_32x32_dc_8_neon ( int16_t * coeffs ) ;
void ff_hevc_idct_4x4_8_neon ( int16_t * coeffs , int col_limit ) ;
void ff_hevc_idct_8x8_8_neon ( int16_t * coeffs , int col_limit ) ;
void ff_hevc_idct_16x16_8_neon ( int16_t * coeffs , int col_limit ) ;
void ff_hevc_idct_4x4_10_neon ( int16_t * coeffs , int col_limit ) ;
void ff_hevc_idct_8x8_10_neon ( int16_t * coeffs , int col_limit ) ;
void ff_hevc_idct_16x16_10_neon ( int16_t * coeffs , int col_limit ) ;
void ff_hevc_idct_4x4_dc_neon_8 ( int16_t * coeffs ) ;
void ff_hevc_idct_8x8_dc_neon_8 ( int16_t * coeffs ) ;
void ff_hevc_idct_16x16_dc_neon_8 ( int16_t * coeffs ) ;
void ff_hevc_idct_32x32_dc_neon_8 ( int16_t * coeffs ) ;
void ff_hevc_transform_luma_4x4_neon_8 ( int16_t * coeffs ) ;
void ff_hevc_add_residual_4x4_neon_8 ( uint8_t * _dst , int16_t * coeffs ,
ptrdiff_t stride ) ;
@ -154,13 +154,13 @@ av_cold void ff_hevc_dsp_init_neon(HEVCDSPContext *c, const int bit_depth)
c - > hevc_h_loop_filter_luma = ff_hevc_h_loop_filter_luma_neon ;
c - > hevc_v_loop_filter_chroma = ff_hevc_v_loop_filter_chroma_neon ;
c - > hevc_h_loop_filter_chroma = ff_hevc_h_loop_filter_chroma_neon ;
c - > idct_dc [ 0 ] = ff_hevc_idct_4x4_dc_8_neon ;
c - > idct_dc [ 1 ] = ff_hevc_idct_8x8_dc_8_neon ;
c - > idct_dc [ 2 ] = ff_hevc_idct_16x16_dc_8_neon ;
c - > idct_dc [ 3 ] = ff_hevc_idct_32x32_dc_8_neon ;
c - > idct [ 0 ] = ff_hevc_idct_4x4_8_neon ;
c - > idct [ 1 ] = ff_hevc_idct_8x8_8_neon ;
c - > idct [ 2 ] = ff_hevc_idct_16x16_8_neon ;
c - > idct_dc [ 0 ] = ff_hevc_idct_4x4_dc_neon_8 ;
c - > idct_dc [ 1 ] = ff_hevc_idct_8x8_dc_neon_8 ;
c - > idct_dc [ 2 ] = ff_hevc_idct_16x16_dc_neon_8 ;
c - > idct_dc [ 3 ] = ff_hevc_idct_32x32_dc_neon_8 ;
c - > add_residual [ 0 ] = ff_hevc_add_residual_4x4_neon_8 ;
c - > add_residual [ 1 ] = ff_hevc_add_residual_8x8_neon_8 ;
c - > add_residual [ 2 ] = ff_hevc_add_residual_16x16_neon_8 ;