blob: 19f4204cf4dfa1aff8025399dadf1ed5ff161f64 [file] [log] [blame]
Yaowu Xuf883b422016-08-30 14:01:10 -07001sub av1_common_forward_decls() {
2print <<EOF
3/*
4 * AV1
5 */
6
7#include "aom/aom_integer.h"
8#include "av1/common/common.h"
9#include "av1/common/enums.h"
10#include "av1/common/quant_common.h"
11#include "av1/common/filter.h"
Angie Chiang674bffd2017-01-11 16:15:55 -080012#include "av1/common/convolve.h"
Yaowu Xuf883b422016-08-30 14:01:10 -070013#include "av1/common/av1_txfm.h"
Rostislav Pehlivanovc7606972017-03-20 17:34:35 +000014#include "av1/common/odintrin.h"
Yaowu Xuf883b422016-08-30 14:01:10 -070015
16struct macroblockd;
17
18/* Encoder forward decls */
19struct macroblock;
20struct aom_variance_vtable;
21struct search_site_config;
22struct mv;
23union int_mv;
24struct yv12_buffer_config;
Steinar Midtskogena9d41e82017-03-17 12:48:15 +010025typedef uint16_t od_dering_in;
Yaowu Xuf883b422016-08-30 14:01:10 -070026EOF
27}
28forward_decls qw/av1_common_forward_decls/;
29
30# functions that are 64 bit only.
31$mmx_x86_64 = $sse2_x86_64 = $ssse3_x86_64 = $avx_x86_64 = $avx2_x86_64 = '';
32if ($opts{arch} eq "x86_64") {
33 $mmx_x86_64 = 'mmx';
34 $sse2_x86_64 = 'sse2';
35 $ssse3_x86_64 = 'ssse3';
36 $avx_x86_64 = 'avx';
37 $avx2_x86_64 = 'avx2';
38}
39
40#
41# 10/12-tap convolution filters
42#
Angie Chiang0a2c0cb2017-02-23 14:19:15 -080043add_proto qw/void av1_lowbd_convolve_init/, "void";
44specialize qw/av1_lowbd_convolve_init ssse3/;
Angie Chiange067de02016-11-28 14:55:14 -080045
Angie Chiang674bffd2017-01-11 16:15:55 -080046add_proto qw/void av1_convolve_horiz/, "const uint8_t *src, int src_stride, uint8_t *dst, int dst_stride, int w, int h, const InterpFilterParams fp, const int subpel_x_q4, int x_step_q4, ConvolveParams *conv_params";
Yaowu Xuf883b422016-08-30 14:01:10 -070047specialize qw/av1_convolve_horiz ssse3/;
48
Angie Chiang674bffd2017-01-11 16:15:55 -080049add_proto qw/void av1_convolve_vert/, "const uint8_t *src, int src_stride, uint8_t *dst, int dst_stride, int w, int h, const InterpFilterParams fp, const int subpel_x_q4, int x_step_q4, ConvolveParams *conv_params";
Yaowu Xuf883b422016-08-30 14:01:10 -070050specialize qw/av1_convolve_vert ssse3/;
51
Sebastien Alaiwan71e87842017-04-12 16:03:28 +020052if (aom_config("CONFIG_HIGHBITDEPTH") eq "yes") {
Angie Chiang0a2c0cb2017-02-23 14:19:15 -080053 add_proto qw/void av1_highbd_convolve_init/, "void";
54 specialize qw/av1_highbd_convolve_init sse4_1/;
Yaowu Xuf883b422016-08-30 14:01:10 -070055 add_proto qw/void av1_highbd_convolve_horiz/, "const uint16_t *src, int src_stride, uint16_t *dst, int dst_stride, int w, int h, const InterpFilterParams fp, const int subpel_x_q4, int x_step_q4, int avg, int bd";
56 specialize qw/av1_highbd_convolve_horiz sse4_1/;
57 add_proto qw/void av1_highbd_convolve_vert/, "const uint16_t *src, int src_stride, uint16_t *dst, int dst_stride, int w, int h, const InterpFilterParams fp, const int subpel_x_q4, int x_step_q4, int avg, int bd";
58 specialize qw/av1_highbd_convolve_vert sse4_1/;
59}
60
61#
Geza Lore1a800f62016-09-02 16:05:53 +010062# Inverse dct
Yaowu Xuf883b422016-08-30 14:01:10 -070063#
Sebastien Alaiwan71e87842017-04-12 16:03:28 +020064if (aom_config("CONFIG_HIGHBITDEPTH") eq "yes") {
Sebastien Alaiwanc6a48a22017-04-20 10:12:43 +020065 {
Yaowu Xuf883b422016-08-30 14:01:10 -070066 add_proto qw/void av1_iht4x4_16_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type";
Debargha Mukherjee751de382016-12-13 02:54:22 -080067 specialize qw/av1_iht4x4_16_add sse2/;
Yaowu Xuf883b422016-08-30 14:01:10 -070068
Jingning Hanec419e02016-11-01 18:19:30 -070069 add_proto qw/void av1_iht4x8_32_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type";
David Barker4d03d6f2016-10-03 16:27:27 +010070 specialize qw/av1_iht4x8_32_add sse2/;
Yaowu Xuf883b422016-08-30 14:01:10 -070071
Jingning Hanec419e02016-11-01 18:19:30 -070072 add_proto qw/void av1_iht8x4_32_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type";
David Barker4d03d6f2016-10-03 16:27:27 +010073 specialize qw/av1_iht8x4_32_add sse2/;
Yaowu Xuf883b422016-08-30 14:01:10 -070074
Jingning Hanec419e02016-11-01 18:19:30 -070075 add_proto qw/void av1_iht8x16_128_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type";
Peter de Rivaz1baecfe2016-09-29 09:14:54 +010076 specialize qw/av1_iht8x16_128_add sse2/;
Yaowu Xuf883b422016-08-30 14:01:10 -070077
Jingning Hanec419e02016-11-01 18:19:30 -070078 add_proto qw/void av1_iht16x8_128_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type";
Peter de Rivaz1baecfe2016-09-29 09:14:54 +010079 specialize qw/av1_iht16x8_128_add sse2/;
Yaowu Xuf883b422016-08-30 14:01:10 -070080
Jingning Hanec419e02016-11-01 18:19:30 -070081 add_proto qw/void av1_iht16x32_512_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type";
David Barker33231d42016-10-06 17:25:40 +010082 specialize qw/av1_iht16x32_512_add sse2/;
Yaowu Xuf883b422016-08-30 14:01:10 -070083
Jingning Hanec419e02016-11-01 18:19:30 -070084 add_proto qw/void av1_iht32x16_512_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type";
David Barker33231d42016-10-06 17:25:40 +010085 specialize qw/av1_iht32x16_512_add sse2/;
Yaowu Xuf883b422016-08-30 14:01:10 -070086
Debargha Mukherjee751de382016-12-13 02:54:22 -080087 add_proto qw/void av1_iht4x16_64_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type";
Debargha Mukherjee751de382016-12-13 02:54:22 -080088
89 add_proto qw/void av1_iht16x4_64_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type";
Debargha Mukherjee751de382016-12-13 02:54:22 -080090
91 add_proto qw/void av1_iht8x32_256_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type";
Debargha Mukherjee751de382016-12-13 02:54:22 -080092
93 add_proto qw/void av1_iht32x8_256_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type";
Debargha Mukherjee751de382016-12-13 02:54:22 -080094
Yaowu Xuf883b422016-08-30 14:01:10 -070095 add_proto qw/void av1_iht8x8_64_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type";
Debargha Mukherjee751de382016-12-13 02:54:22 -080096 specialize qw/av1_iht8x8_64_add sse2/;
Yaowu Xuf883b422016-08-30 14:01:10 -070097
98 add_proto qw/void av1_iht16x16_256_add/, "const tran_low_t *input, uint8_t *output, int pitch, int tx_type";
Debargha Mukherjee751de382016-12-13 02:54:22 -080099 specialize qw/av1_iht16x16_256_add sse2 avx2/;
Debargha Mukherjee6a47cff2016-11-02 14:57:42 -0700100
101 add_proto qw/void av1_iht32x32_1024_add/, "const tran_low_t *input, uint8_t *output, int pitch, int tx_type";
Yaowu Xuf883b422016-08-30 14:01:10 -0700102 }
103} else {
Sebastien Alaiwanc6a48a22017-04-20 10:12:43 +0200104 {
Yaowu Xuf883b422016-08-30 14:01:10 -0700105 add_proto qw/void av1_iht4x4_16_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type";
106 specialize qw/av1_iht4x4_16_add sse2 neon dspr2/;
107
Jingning Hanec419e02016-11-01 18:19:30 -0700108 add_proto qw/void av1_iht4x8_32_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type";
David Barker4d03d6f2016-10-03 16:27:27 +0100109 specialize qw/av1_iht4x8_32_add sse2/;
Yaowu Xuf883b422016-08-30 14:01:10 -0700110
Jingning Hanec419e02016-11-01 18:19:30 -0700111 add_proto qw/void av1_iht8x4_32_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type";
David Barker4d03d6f2016-10-03 16:27:27 +0100112 specialize qw/av1_iht8x4_32_add sse2/;
Yaowu Xuf883b422016-08-30 14:01:10 -0700113
Jingning Hanec419e02016-11-01 18:19:30 -0700114 add_proto qw/void av1_iht8x16_128_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type";
Peter de Rivaz1baecfe2016-09-29 09:14:54 +0100115 specialize qw/av1_iht8x16_128_add sse2/;
Yaowu Xuf883b422016-08-30 14:01:10 -0700116
Jingning Hanec419e02016-11-01 18:19:30 -0700117 add_proto qw/void av1_iht16x8_128_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type";
Peter de Rivaz1baecfe2016-09-29 09:14:54 +0100118 specialize qw/av1_iht16x8_128_add sse2/;
Yaowu Xuf883b422016-08-30 14:01:10 -0700119
Jingning Hanec419e02016-11-01 18:19:30 -0700120 add_proto qw/void av1_iht16x32_512_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type";
David Barker33231d42016-10-06 17:25:40 +0100121 specialize qw/av1_iht16x32_512_add sse2/;
Yaowu Xuf883b422016-08-30 14:01:10 -0700122
Jingning Hanec419e02016-11-01 18:19:30 -0700123 add_proto qw/void av1_iht32x16_512_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type";
David Barker33231d42016-10-06 17:25:40 +0100124 specialize qw/av1_iht32x16_512_add sse2/;
Yaowu Xuf883b422016-08-30 14:01:10 -0700125
Debargha Mukherjee751de382016-12-13 02:54:22 -0800126 add_proto qw/void av1_iht4x16_64_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type";
Debargha Mukherjee751de382016-12-13 02:54:22 -0800127
128 add_proto qw/void av1_iht16x4_64_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type";
Debargha Mukherjee751de382016-12-13 02:54:22 -0800129
130 add_proto qw/void av1_iht8x32_256_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type";
Debargha Mukherjee751de382016-12-13 02:54:22 -0800131
132 add_proto qw/void av1_iht32x8_256_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type";
Debargha Mukherjee751de382016-12-13 02:54:22 -0800133
Yaowu Xuf883b422016-08-30 14:01:10 -0700134 add_proto qw/void av1_iht8x8_64_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type";
Debargha Mukherjee751de382016-12-13 02:54:22 -0800135 specialize qw/av1_iht8x8_64_add sse2 neon dspr2/;
Yaowu Xuf883b422016-08-30 14:01:10 -0700136
137 add_proto qw/void av1_iht16x16_256_add/, "const tran_low_t *input, uint8_t *output, int pitch, int tx_type";
Debargha Mukherjee751de382016-12-13 02:54:22 -0800138 specialize qw/av1_iht16x16_256_add sse2 avx2 dspr2/;
Yaowu Xuf883b422016-08-30 14:01:10 -0700139
Debargha Mukherjee6a47cff2016-11-02 14:57:42 -0700140 add_proto qw/void av1_iht32x32_1024_add/, "const tran_low_t *input, uint8_t *output, int pitch, int tx_type";
Debargha Mukherjee6a47cff2016-11-02 14:57:42 -0700141
Yaowu Xuf883b422016-08-30 14:01:10 -0700142 if (aom_config("CONFIG_EXT_TX") ne "yes") {
143 specialize qw/av1_iht4x4_16_add msa/;
144 specialize qw/av1_iht8x8_64_add msa/;
145 specialize qw/av1_iht16x16_256_add msa/;
146 }
Yaowu Xuf883b422016-08-30 14:01:10 -0700147 }
148}
Debargha Mukherjee751de382016-12-13 02:54:22 -0800149
Debargha Mukherjee6a47cff2016-11-02 14:57:42 -0700150add_proto qw/void av1_iht32x32_1024_add/, "const tran_low_t *input, uint8_t *output, int pitch, int tx_type";
Debargha Mukherjee6a47cff2016-11-02 14:57:42 -0700151
152if (aom_config("CONFIG_TX64X64") eq "yes") {
153 add_proto qw/void av1_iht64x64_4096_add/, "const tran_low_t *input, uint8_t *output, int pitch, int tx_type";
Debargha Mukherjee6a47cff2016-11-02 14:57:42 -0700154}
Yaowu Xuf883b422016-08-30 14:01:10 -0700155
156if (aom_config("CONFIG_NEW_QUANT") eq "yes") {
157 add_proto qw/void quantize_nuq/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, const int16_t *dequant_ptr, const cuml_bins_type_nuq *cuml_bins_ptr, const dequant_val_type_nuq *dequant_val, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, uint16_t *eob_ptr, const int16_t *scan, const uint8_t *band";
Yaowu Xuf883b422016-08-30 14:01:10 -0700158
159 add_proto qw/void quantize_fp_nuq/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *quant_ptr, const int16_t *dequant_ptr, const cuml_bins_type_nuq *cuml_bins_ptr, const dequant_val_type_nuq *dequant_val, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, uint16_t *eob_ptr, const int16_t *scan, const uint8_t *band";
Yaowu Xuf883b422016-08-30 14:01:10 -0700160
161 add_proto qw/void quantize_32x32_nuq/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, const int16_t *dequant_ptr, const cuml_bins_type_nuq *cuml_bins_ptr, const dequant_val_type_nuq *dequant_val, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, uint16_t *eob_ptr, const int16_t *scan, const uint8_t *band";
Yaowu Xuf883b422016-08-30 14:01:10 -0700162
163 add_proto qw/void quantize_32x32_fp_nuq/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *quant_ptr, const int16_t *dequant_ptr, const cuml_bins_type_nuq *cuml_bins_ptr, const dequant_val_type_nuq *dequant_val, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, uint16_t *eob_ptr, const int16_t *scan, const uint8_t *band";
Debargha Mukherjee0e119122016-11-04 12:10:23 -0700164
165 if (aom_config("CONFIG_TX64X64") eq "yes") {
166 add_proto qw/void quantize_64x64_nuq/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, const int16_t *dequant_ptr, const cuml_bins_type_nuq *cuml_bins_ptr, const dequant_val_type_nuq *dequant_val, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, uint16_t *eob_ptr, const int16_t *scan, const uint8_t *band";
Debargha Mukherjee0e119122016-11-04 12:10:23 -0700167
168 add_proto qw/void quantize_64x64_fp_nuq/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *quant_ptr, const int16_t *dequant_ptr, const cuml_bins_type_nuq *cuml_bins_ptr, const dequant_val_type_nuq *dequant_val, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, uint16_t *eob_ptr, const int16_t *scan, const uint8_t *band";
Debargha Mukherjee0e119122016-11-04 12:10:23 -0700169 }
Yaowu Xuf883b422016-08-30 14:01:10 -0700170}
171
hui su5db97432016-10-14 16:10:14 -0700172# FILTER_INTRA predictor functions
173if (aom_config("CONFIG_FILTER_INTRA") eq "yes") {
Yaowu Xuf883b422016-08-30 14:01:10 -0700174 add_proto qw/void av1_dc_filter_predictor/, "uint8_t *dst, ptrdiff_t stride, int bs, const uint8_t *above, const uint8_t *left";
Yaowu Xuf883b422016-08-30 14:01:10 -0700175 add_proto qw/void av1_v_filter_predictor/, "uint8_t *dst, ptrdiff_t stride, int bs, const uint8_t *above, const uint8_t *left";
Yaowu Xuf883b422016-08-30 14:01:10 -0700176 add_proto qw/void av1_h_filter_predictor/, "uint8_t *dst, ptrdiff_t stride, int bs, const uint8_t *above, const uint8_t *left";
Yaowu Xuf883b422016-08-30 14:01:10 -0700177 add_proto qw/void av1_d45_filter_predictor/, "uint8_t *dst, ptrdiff_t stride, int bs, const uint8_t *above, const uint8_t *left";
Yaowu Xuf883b422016-08-30 14:01:10 -0700178 add_proto qw/void av1_d135_filter_predictor/, "uint8_t *dst, ptrdiff_t stride, int bs, const uint8_t *above, const uint8_t *left";
Yaowu Xuf883b422016-08-30 14:01:10 -0700179 add_proto qw/void av1_d117_filter_predictor/, "uint8_t *dst, ptrdiff_t stride, int bs, const uint8_t *above, const uint8_t *left";
Yaowu Xuf883b422016-08-30 14:01:10 -0700180 add_proto qw/void av1_d153_filter_predictor/, "uint8_t *dst, ptrdiff_t stride, int bs, const uint8_t *above, const uint8_t *left";
Yaowu Xuf883b422016-08-30 14:01:10 -0700181 add_proto qw/void av1_d207_filter_predictor/, "uint8_t *dst, ptrdiff_t stride, int bs, const uint8_t *above, const uint8_t *left";
Yaowu Xuf883b422016-08-30 14:01:10 -0700182 add_proto qw/void av1_d63_filter_predictor/, "uint8_t *dst, ptrdiff_t stride, int bs, const uint8_t *above, const uint8_t *left";
Yaowu Xuf883b422016-08-30 14:01:10 -0700183 add_proto qw/void av1_tm_filter_predictor/, "uint8_t *dst, ptrdiff_t stride, int bs, const uint8_t *above, const uint8_t *left";
Yaowu Xuf883b422016-08-30 14:01:10 -0700184 # High bitdepth functions
Sebastien Alaiwan71e87842017-04-12 16:03:28 +0200185 if (aom_config("CONFIG_HIGHBITDEPTH") eq "yes") {
Yaowu Xuf883b422016-08-30 14:01:10 -0700186 add_proto qw/void av1_highbd_dc_filter_predictor/, "uint16_t *dst, ptrdiff_t stride, int bs, const uint16_t *above, const uint16_t *left, int bd";
Yaowu Xuf883b422016-08-30 14:01:10 -0700187 add_proto qw/void av1_highbd_v_filter_predictor/, "uint16_t *dst, ptrdiff_t stride, int bs, const uint16_t *above, const uint16_t *left, int bd";
Yaowu Xuf883b422016-08-30 14:01:10 -0700188 add_proto qw/void av1_highbd_h_filter_predictor/, "uint16_t *dst, ptrdiff_t stride, int bs, const uint16_t *above, const uint16_t *left, int bd";
Yaowu Xuf883b422016-08-30 14:01:10 -0700189 add_proto qw/void av1_highbd_d45_filter_predictor/, "uint16_t *dst, ptrdiff_t stride, int bs, const uint16_t *above, const uint16_t *left, int bd";
Yaowu Xuf883b422016-08-30 14:01:10 -0700190 add_proto qw/void av1_highbd_d135_filter_predictor/, "uint16_t *dst, ptrdiff_t stride, int bs, const uint16_t *above, const uint16_t *left, int bd";
Yaowu Xuf883b422016-08-30 14:01:10 -0700191 add_proto qw/void av1_highbd_d117_filter_predictor/, "uint16_t *dst, ptrdiff_t stride, int bs, const uint16_t *above, const uint16_t *left, int bd";
Yaowu Xuf883b422016-08-30 14:01:10 -0700192 add_proto qw/void av1_highbd_d153_filter_predictor/, "uint16_t *dst, ptrdiff_t stride, int bs, const uint16_t *above, const uint16_t *left, int bd";
Yaowu Xuf883b422016-08-30 14:01:10 -0700193 add_proto qw/void av1_highbd_d207_filter_predictor/, "uint16_t *dst, ptrdiff_t stride, int bs, const uint16_t *above, const uint16_t *left, int bd";
Yaowu Xuf883b422016-08-30 14:01:10 -0700194 add_proto qw/void av1_highbd_d63_filter_predictor/, "uint16_t *dst, ptrdiff_t stride, int bs, const uint16_t *above, const uint16_t *left, int bd";
Yaowu Xuf883b422016-08-30 14:01:10 -0700195 add_proto qw/void av1_highbd_tm_filter_predictor/, "uint16_t *dst, ptrdiff_t stride, int bs, const uint16_t *above, const uint16_t *left, int bd";
Yaowu Xuf883b422016-08-30 14:01:10 -0700196 }
197}
198
199# High bitdepth functions
Sebastien Alaiwan71e87842017-04-12 16:03:28 +0200200if (aom_config("CONFIG_HIGHBITDEPTH") eq "yes") {
Yaowu Xuf883b422016-08-30 14:01:10 -0700201 #
202 # Sub Pixel Filters
203 #
204 add_proto qw/void av1_highbd_convolve_copy/, "const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h, int bps";
Yaowu Xuf883b422016-08-30 14:01:10 -0700205
206 add_proto qw/void av1_highbd_convolve_avg/, "const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h, int bps";
Yaowu Xuf883b422016-08-30 14:01:10 -0700207
208 add_proto qw/void av1_highbd_convolve8/, "const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h, int bps";
209 specialize qw/av1_highbd_convolve8/, "$sse2_x86_64";
210
211 add_proto qw/void av1_highbd_convolve8_horiz/, "const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h, int bps";
212 specialize qw/av1_highbd_convolve8_horiz/, "$sse2_x86_64";
213
214 add_proto qw/void av1_highbd_convolve8_vert/, "const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h, int bps";
215 specialize qw/av1_highbd_convolve8_vert/, "$sse2_x86_64";
216
217 add_proto qw/void av1_highbd_convolve8_avg/, "const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h, int bps";
218 specialize qw/av1_highbd_convolve8_avg/, "$sse2_x86_64";
219
220 add_proto qw/void av1_highbd_convolve8_avg_horiz/, "const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h, int bps";
221 specialize qw/av1_highbd_convolve8_avg_horiz/, "$sse2_x86_64";
222
223 add_proto qw/void av1_highbd_convolve8_avg_vert/, "const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h, int bps";
224 specialize qw/av1_highbd_convolve8_avg_vert/, "$sse2_x86_64";
225
226 #
227 # dct
228 #
Yaowu Xuf883b422016-08-30 14:01:10 -0700229 add_proto qw/void av1_highbd_iht4x4_16_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type, int bd";
Yaowu Xuf883b422016-08-30 14:01:10 -0700230
Jingning Hanec419e02016-11-01 18:19:30 -0700231 add_proto qw/void av1_highbd_iht4x8_32_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type, int bd";
Yaowu Xuf883b422016-08-30 14:01:10 -0700232
Jingning Hanec419e02016-11-01 18:19:30 -0700233 add_proto qw/void av1_highbd_iht8x4_32_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type, int bd";
Yaowu Xuf883b422016-08-30 14:01:10 -0700234
Jingning Hanec419e02016-11-01 18:19:30 -0700235 add_proto qw/void av1_highbd_iht8x16_128_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type, int bd";
Yaowu Xuf883b422016-08-30 14:01:10 -0700236
Jingning Hanec419e02016-11-01 18:19:30 -0700237 add_proto qw/void av1_highbd_iht16x8_128_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type, int bd";
Yaowu Xuf883b422016-08-30 14:01:10 -0700238
Jingning Hanec419e02016-11-01 18:19:30 -0700239 add_proto qw/void av1_highbd_iht16x32_512_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type, int bd";
Yaowu Xuf883b422016-08-30 14:01:10 -0700240
Jingning Hanec419e02016-11-01 18:19:30 -0700241 add_proto qw/void av1_highbd_iht32x16_512_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type, int bd";
Yaowu Xuf883b422016-08-30 14:01:10 -0700242
Debargha Mukherjee751de382016-12-13 02:54:22 -0800243 add_proto qw/void av1_highbd_iht4x16_64_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type, int bd";
Debargha Mukherjee751de382016-12-13 02:54:22 -0800244
245 add_proto qw/void av1_highbd_iht16x4_64_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type, int bd";
Debargha Mukherjee751de382016-12-13 02:54:22 -0800246
247 add_proto qw/void av1_highbd_iht8x32_256_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type, int bd";
Debargha Mukherjee751de382016-12-13 02:54:22 -0800248
249 add_proto qw/void av1_highbd_iht32x8_256_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type, int bd";
Debargha Mukherjee751de382016-12-13 02:54:22 -0800250
Yaowu Xuf883b422016-08-30 14:01:10 -0700251 add_proto qw/void av1_highbd_iht8x8_64_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type, int bd";
Yaowu Xuf883b422016-08-30 14:01:10 -0700252
253 add_proto qw/void av1_highbd_iht16x16_256_add/, "const tran_low_t *input, uint8_t *output, int pitch, int tx_type, int bd";
Yaowu Xuf883b422016-08-30 14:01:10 -0700254}
255
Sebastien Alaiwan71e87842017-04-12 16:03:28 +0200256if (aom_config("CONFIG_HIGHBITDEPTH") eq "yes") {
Yunqing Wang80360582017-03-28 17:17:23 -0700257 #inv txfm
258 add_proto qw/void av1_inv_txfm2d_add_4x4/, "const int32_t *input, uint16_t *output, int stride, int tx_type, int bd";
259 specialize qw/av1_inv_txfm2d_add_4x4 sse4_1/;
260 add_proto qw/void av1_inv_txfm2d_add_8x8/, "const int32_t *input, uint16_t *output, int stride, int tx_type, int bd";
261 specialize qw/av1_inv_txfm2d_add_8x8 sse4_1/;
262 add_proto qw/void av1_inv_txfm2d_add_16x16/, "const int32_t *input, uint16_t *output, int stride, int tx_type, int bd";
263 specialize qw/av1_inv_txfm2d_add_16x16 sse4_1/;
264 add_proto qw/void av1_inv_txfm2d_add_32x32/, "const int32_t *input, uint16_t *output, int stride, int tx_type, int bd";
265 specialize qw/av1_inv_txfm2d_add_32x32 avx2/;
266 add_proto qw/void av1_inv_txfm2d_add_64x64/, "const int32_t *input, uint16_t *output, int stride, int tx_type, int bd";
Yunqing Wang80360582017-03-28 17:17:23 -0700267}
268
Yaowu Xuf883b422016-08-30 14:01:10 -0700269#
270# Encoder functions below this point.
271#
272if (aom_config("CONFIG_AV1_ENCODER") eq "yes") {
273
274# ENCODEMB INVOKE
275
276if (aom_config("CONFIG_AOM_QM") eq "yes") {
Sebastien Alaiwan71e87842017-04-12 16:03:28 +0200277 if (aom_config("CONFIG_HIGHBITDEPTH") eq "yes") {
Yaowu Xuf883b422016-08-30 14:01:10 -0700278 # the transform coefficients are held in 32-bit
279 # values, so the assembler code for av1_block_error can no longer be used.
280 add_proto qw/int64_t av1_block_error/, "const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, int64_t *ssz";
Yaowu Xuf883b422016-08-30 14:01:10 -0700281
282 add_proto qw/void av1_quantize_fp/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan, const qm_val_t * qm_ptr, const qm_val_t *iqm_ptr";
283
284 add_proto qw/void av1_quantize_fp_32x32/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan, const qm_val_t * qm_ptr, const qm_val_t *iqm_ptr";
Debargha Mukherjee0e119122016-11-04 12:10:23 -0700285
286 if (aom_config("CONFIG_TX64X64") eq "yes") {
287 add_proto qw/void av1_quantize_fp_64x64/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan, const qm_val_t * qm_ptr, const qm_val_t *iqm_ptr";
Debargha Mukherjee0e119122016-11-04 12:10:23 -0700288 }
Yaowu Xuf883b422016-08-30 14:01:10 -0700289
290 add_proto qw/void av1_fdct8x8_quant/, "const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan, const qm_val_t * qm_ptr, const qm_val_t *iqm_ptr";
Yaowu Xuf883b422016-08-30 14:01:10 -0700291 } else {
292 add_proto qw/int64_t av1_block_error/, "const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, int64_t *ssz";
293 specialize qw/av1_block_error avx2 msa/, "$sse2_x86inc";
294
295 add_proto qw/int64_t av1_block_error_fp/, "const int16_t *coeff, const int16_t *dqcoeff, int block_size";
296 specialize qw/av1_block_error_fp neon/, "$sse2_x86inc";
297
298 add_proto qw/void av1_quantize_fp/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan, const qm_val_t * qm_ptr, const qm_val_t *iqm_ptr";
299
300 add_proto qw/void av1_quantize_fp_32x32/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan, const qm_val_t * qm_ptr, const qm_val_t *iqm_ptr";
Debargha Mukherjee0e119122016-11-04 12:10:23 -0700301
302 if (aom_config("CONFIG_TX64X64") eq "yes") {
303 add_proto qw/void av1_quantize_fp_64x64/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan, const qm_val_t * qm_ptr, const qm_val_t *iqm_ptr";
Debargha Mukherjee0e119122016-11-04 12:10:23 -0700304 }
Yaowu Xuf883b422016-08-30 14:01:10 -0700305
306 add_proto qw/void av1_fdct8x8_quant/, "const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan, const qm_val_t * qm_ptr, const qm_val_t *iqm_ptr";
307 }
308} else {
Sebastien Alaiwan71e87842017-04-12 16:03:28 +0200309 if (aom_config("CONFIG_HIGHBITDEPTH") eq "yes") {
Yaowu Xuf883b422016-08-30 14:01:10 -0700310 # the transform coefficients are held in 32-bit
311 # values, so the assembler code for av1_block_error can no longer be used.
312 add_proto qw/int64_t av1_block_error/, "const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, int64_t *ssz";
Yaowu Xuf883b422016-08-30 14:01:10 -0700313
314 add_proto qw/void av1_quantize_fp/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan";
Yi Luobf8af7e2017-05-24 15:11:05 -0700315 specialize qw/av1_quantize_fp sse2/;
Yaowu Xuf883b422016-08-30 14:01:10 -0700316
317 add_proto qw/void av1_quantize_fp_32x32/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan";
Yaowu Xuf883b422016-08-30 14:01:10 -0700318
Debargha Mukherjee0e119122016-11-04 12:10:23 -0700319 if (aom_config("CONFIG_TX64X64") eq "yes") {
320 add_proto qw/void av1_quantize_fp_64x64/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan";
Debargha Mukherjee0e119122016-11-04 12:10:23 -0700321 }
322
Yaowu Xuf883b422016-08-30 14:01:10 -0700323 add_proto qw/void av1_fdct8x8_quant/, "const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan";
Yaowu Xuf883b422016-08-30 14:01:10 -0700324 } else {
325 add_proto qw/int64_t av1_block_error/, "const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, int64_t *ssz";
326 specialize qw/av1_block_error sse2 avx2 msa/;
327
328 add_proto qw/int64_t av1_block_error_fp/, "const int16_t *coeff, const int16_t *dqcoeff, int block_size";
329 specialize qw/av1_block_error_fp neon sse2/;
330
331 add_proto qw/void av1_quantize_fp/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan";
332 specialize qw/av1_quantize_fp neon sse2/, "$ssse3_x86_64";
333
334 add_proto qw/void av1_quantize_fp_32x32/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan";
335 specialize qw/av1_quantize_fp_32x32/, "$ssse3_x86_64";
336
Debargha Mukherjee0e119122016-11-04 12:10:23 -0700337 if (aom_config("CONFIG_TX64X64") eq "yes") {
338 add_proto qw/void av1_quantize_fp_64x64/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan";
Debargha Mukherjee0e119122016-11-04 12:10:23 -0700339 }
340
Yaowu Xuf883b422016-08-30 14:01:10 -0700341 add_proto qw/void av1_fdct8x8_quant/, "const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan";
342 specialize qw/av1_fdct8x8_quant sse2 ssse3 neon/;
343 }
344
345}
346
347# fdct functions
348
Geza Lore1a800f62016-09-02 16:05:53 +0100349add_proto qw/void av1_fht4x4/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
350specialize qw/av1_fht4x4 sse2/;
Yaowu Xuf883b422016-08-30 14:01:10 -0700351
Geza Lore1a800f62016-09-02 16:05:53 +0100352add_proto qw/void av1_fwht4x4/, "const int16_t *input, tran_low_t *output, int stride";
Geza Lore1a800f62016-09-02 16:05:53 +0100353
354add_proto qw/void av1_fht8x8/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
355specialize qw/av1_fht8x8 sse2/;
356
357add_proto qw/void av1_fht16x16/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
Yi Luoe8e8cd82016-09-21 10:45:01 -0700358specialize qw/av1_fht16x16 sse2 avx2/;
Geza Lore1a800f62016-09-02 16:05:53 +0100359
Yi Luo157e45a2016-10-17 11:18:50 -0700360add_proto qw/void av1_fht32x32/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
Yi Luo9a3d29e2017-03-29 11:40:03 -0700361specialize qw/av1_fht32x32 sse2 avx2/;
Yi Luo157e45a2016-10-17 11:18:50 -0700362
Debargha Mukherjee67d13472016-11-01 14:37:39 -0700363if (aom_config("CONFIG_TX64X64") eq "yes") {
364 add_proto qw/void av1_fht64x64/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
Debargha Mukherjee67d13472016-11-01 14:37:39 -0700365}
366
Jingning Han9fe31392016-11-02 09:37:14 -0700367add_proto qw/void av1_fht4x8/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
368specialize qw/av1_fht4x8 sse2/;
Yaowu Xuf883b422016-08-30 14:01:10 -0700369
Jingning Han9fe31392016-11-02 09:37:14 -0700370add_proto qw/void av1_fht8x4/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
371specialize qw/av1_fht8x4 sse2/;
Yaowu Xuf883b422016-08-30 14:01:10 -0700372
Jingning Han9fe31392016-11-02 09:37:14 -0700373add_proto qw/void av1_fht8x16/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
374specialize qw/av1_fht8x16 sse2/;
Yaowu Xuf883b422016-08-30 14:01:10 -0700375
Jingning Han9fe31392016-11-02 09:37:14 -0700376add_proto qw/void av1_fht16x8/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
377specialize qw/av1_fht16x8 sse2/;
Yaowu Xuf883b422016-08-30 14:01:10 -0700378
Jingning Han9fe31392016-11-02 09:37:14 -0700379add_proto qw/void av1_fht16x32/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
380specialize qw/av1_fht16x32 sse2/;
Yaowu Xuf883b422016-08-30 14:01:10 -0700381
Jingning Han9fe31392016-11-02 09:37:14 -0700382add_proto qw/void av1_fht32x16/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
383specialize qw/av1_fht32x16 sse2/;
Yaowu Xuf883b422016-08-30 14:01:10 -0700384
Debargha Mukherjee751de382016-12-13 02:54:22 -0800385add_proto qw/void av1_fht4x16/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
Debargha Mukherjee751de382016-12-13 02:54:22 -0800386
387add_proto qw/void av1_fht16x4/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
Debargha Mukherjee751de382016-12-13 02:54:22 -0800388
389add_proto qw/void av1_fht8x32/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
Debargha Mukherjee751de382016-12-13 02:54:22 -0800390
391add_proto qw/void av1_fht32x8/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
Debargha Mukherjee751de382016-12-13 02:54:22 -0800392
Sebastien Alaiwan71e87842017-04-12 16:03:28 +0200393if (aom_config("CONFIG_HIGHBITDEPTH") ne "yes") {
Geza Lore1a800f62016-09-02 16:05:53 +0100394 if (aom_config("CONFIG_EXT_TX") ne "yes") {
395 specialize qw/av1_fht4x4 msa/;
396 specialize qw/av1_fht8x8 msa/;
397 specialize qw/av1_fht16x16 msa/;
398 }
399}
400
Yaowu Xuf883b422016-08-30 14:01:10 -0700401add_proto qw/void av1_fwd_idtx/, "const int16_t *src_diff, tran_low_t *coeff, int stride, int bs, int tx_type";
Yaowu Xuf883b422016-08-30 14:01:10 -0700402
hui sub8a6fd62017-05-10 10:57:57 -0700403if (aom_config("CONFIG_DPCM_INTRA") eq "yes") {
404 @sizes = (4, 8, 16, 32);
405 foreach $size (@sizes) {
406 add_proto "void", "av1_dpcm_ft$size", "const int16_t *input, int stride, TX_TYPE_1D tx_type, tran_low_t *output";
407 }
408}
409
Sebastien Alaiwan71e87842017-04-12 16:03:28 +0200410if (aom_config("CONFIG_HIGHBITDEPTH") eq "yes") {
Yaowu Xuf883b422016-08-30 14:01:10 -0700411 #fwd txfm
412 add_proto qw/void av1_fwd_txfm2d_4x4/, "const int16_t *input, int32_t *output, int stride, int tx_type, int bd";
413 specialize qw/av1_fwd_txfm2d_4x4 sse4_1/;
414 add_proto qw/void av1_fwd_txfm2d_8x8/, "const int16_t *input, int32_t *output, int stride, int tx_type, int bd";
415 specialize qw/av1_fwd_txfm2d_8x8 sse4_1/;
416 add_proto qw/void av1_fwd_txfm2d_16x16/, "const int16_t *input, int32_t *output, int stride, int tx_type, int bd";
417 specialize qw/av1_fwd_txfm2d_16x16 sse4_1/;
418 add_proto qw/void av1_fwd_txfm2d_32x32/, "const int16_t *input, int32_t *output, int stride, int tx_type, int bd";
419 specialize qw/av1_fwd_txfm2d_32x32 sse4_1/;
420 add_proto qw/void av1_fwd_txfm2d_64x64/, "const int16_t *input, int32_t *output, int stride, int tx_type, int bd";
421 specialize qw/av1_fwd_txfm2d_64x64 sse4_1/;
Yaowu Xuf883b422016-08-30 14:01:10 -0700422}
423
424#
425# Motion search
426#
427add_proto qw/int av1_full_search_sad/, "const struct macroblock *x, const struct mv *ref_mv, int sad_per_bit, int distance, const struct aom_variance_vtable *fn_ptr, const struct mv *center_mv, struct mv *best_mv";
428specialize qw/av1_full_search_sad sse3 sse4_1/;
429$av1_full_search_sad_sse3=av1_full_search_sadx3;
430$av1_full_search_sad_sse4_1=av1_full_search_sadx8;
431
432add_proto qw/int av1_diamond_search_sad/, "struct macroblock *x, const struct search_site_config *cfg, struct mv *ref_mv, struct mv *best_mv, int search_param, int sad_per_bit, int *num00, const struct aom_variance_vtable *fn_ptr, const struct mv *center_mv";
Yaowu Xuf883b422016-08-30 14:01:10 -0700433
434add_proto qw/int av1_full_range_search/, "const struct macroblock *x, const struct search_site_config *cfg, struct mv *ref_mv, struct mv *best_mv, int search_param, int sad_per_bit, int *num00, const struct aom_variance_vtable *fn_ptr, const struct mv *center_mv";
Yaowu Xuf883b422016-08-30 14:01:10 -0700435
436add_proto qw/void av1_temporal_filter_apply/, "uint8_t *frame1, unsigned int stride, uint8_t *frame2, unsigned int block_width, unsigned int block_height, int strength, int filter_weight, unsigned int *accumulator, uint16_t *count";
437specialize qw/av1_temporal_filter_apply sse2 msa/;
438
Debargha Mukherjee0e119122016-11-04 12:10:23 -0700439if (aom_config("CONFIG_AOM_QM") eq "yes") {
440 add_proto qw/void av1_quantize_b/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan, const qm_val_t * qm_ptr, const qm_val_t * iqm_ptr, int log_scale";
Debargha Mukherjee0e119122016-11-04 12:10:23 -0700441} else {
442 add_proto qw/void av1_quantize_b/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan, int log_scale";
Debargha Mukherjee0e119122016-11-04 12:10:23 -0700443}
444
Sebastien Alaiwan71e87842017-04-12 16:03:28 +0200445if (aom_config("CONFIG_HIGHBITDEPTH") eq "yes") {
Yaowu Xuf883b422016-08-30 14:01:10 -0700446
447 # ENCODEMB INVOKE
448 if (aom_config("CONFIG_NEW_QUANT") eq "yes") {
449 add_proto qw/void highbd_quantize_nuq/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, const int16_t *dequant_ptr, const cuml_bins_type_nuq *cuml_bins_ptr, const dequant_val_type_nuq *dequant_val, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, uint16_t *eob_ptr, const int16_t *scan, const uint8_t *band";
Yaowu Xuf883b422016-08-30 14:01:10 -0700450
451 add_proto qw/void highbd_quantize_fp_nuq/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *quant_ptr, const int16_t *dequant_ptr, const cuml_bins_type_nuq *cuml_bins_ptr, const dequant_val_type_nuq *dequant_val, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, uint16_t *eob_ptr, const int16_t *scan, const uint8_t *band";
Yaowu Xuf883b422016-08-30 14:01:10 -0700452
453 add_proto qw/void highbd_quantize_32x32_nuq/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, const int16_t *dequant_ptr, const cuml_bins_type_nuq *cuml_bins_ptr, const dequant_val_type_nuq *dequant_val, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, uint16_t *eob_ptr, const int16_t *scan, const uint8_t *band";
Yaowu Xuf883b422016-08-30 14:01:10 -0700454
455 add_proto qw/void highbd_quantize_32x32_fp_nuq/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *quant_ptr, const int16_t *dequant_ptr, const cuml_bins_type_nuq *cuml_bins_ptr, const dequant_val_type_nuq *dequant_val, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, uint16_t *eob_ptr, const int16_t *scan, const uint8_t *band";
Debargha Mukherjee0e119122016-11-04 12:10:23 -0700456
457 if (aom_config("CONFIG_TX64X64") eq "yes") {
458 add_proto qw/void highbd_quantize_64x64_nuq/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, const int16_t *dequant_ptr, const cuml_bins_type_nuq *cuml_bins_ptr, const dequant_val_type_nuq *dequant_val, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, uint16_t *eob_ptr, const int16_t *scan, const uint8_t *band";
Debargha Mukherjee0e119122016-11-04 12:10:23 -0700459
460 add_proto qw/void highbd_quantize_64x64_fp_nuq/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *quant_ptr, const int16_t *dequant_ptr, const cuml_bins_type_nuq *cuml_bins_ptr, const dequant_val_type_nuq *dequant_val, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, uint16_t *eob_ptr, const int16_t *scan, const uint8_t *band";
Debargha Mukherjee0e119122016-11-04 12:10:23 -0700461 }
Yaowu Xuf883b422016-08-30 14:01:10 -0700462 }
463
464 add_proto qw/int64_t av1_highbd_block_error/, "const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, int64_t *ssz, int bd";
465 specialize qw/av1_highbd_block_error sse2/;
466
467 if (aom_config("CONFIG_AOM_QM") eq "yes") {
Yaowu Xu0dd04632016-10-19 09:31:50 -0700468 add_proto qw/void av1_highbd_quantize_fp/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan, const qm_val_t * qm_ptr, const qm_val_t * iqm_ptr, int log_scale";
Yaowu Xuf883b422016-08-30 14:01:10 -0700469
Yaowu Xu0dd04632016-10-19 09:31:50 -0700470 add_proto qw/void av1_highbd_quantize_fp_32x32/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan, const qm_val_t * qm_ptr, const qm_val_t * iqm_ptr, int log_scale";
Yaowu Xu0dd04632016-10-19 09:31:50 -0700471
Debargha Mukherjee0e119122016-11-04 12:10:23 -0700472 if (aom_config("CONFIG_TX64X64") eq "yes") {
473 add_proto qw/void av1_highbd_quantize_fp_64x64/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan, const qm_val_t * qm_ptr, const qm_val_t * iqm_ptr, int log_scale";
Debargha Mukherjee0e119122016-11-04 12:10:23 -0700474 }
475
Yaowu Xu0dd04632016-10-19 09:31:50 -0700476 add_proto qw/void av1_highbd_quantize_b/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan, const qm_val_t * qm_ptr, const qm_val_t * iqm_ptr, int log_scale";
Yaowu Xuf883b422016-08-30 14:01:10 -0700477 } else {
478 add_proto qw/void av1_highbd_quantize_fp/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan, int log_scale";
479 specialize qw/av1_highbd_quantize_fp sse4_1/;
480
481 add_proto qw/void av1_highbd_quantize_b/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan, int log_scale";
Yaowu Xuf883b422016-08-30 14:01:10 -0700482 }
483
484 # fdct functions
485 add_proto qw/void av1_highbd_fht4x4/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
486 specialize qw/av1_highbd_fht4x4 sse4_1/;
487
488 add_proto qw/void av1_highbd_fht4x8/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
Yaowu Xuf883b422016-08-30 14:01:10 -0700489
490 add_proto qw/void av1_highbd_fht8x4/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
Yaowu Xuf883b422016-08-30 14:01:10 -0700491
492 add_proto qw/void av1_highbd_fht8x16/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
Yaowu Xuf883b422016-08-30 14:01:10 -0700493
494 add_proto qw/void av1_highbd_fht16x8/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
Yaowu Xuf883b422016-08-30 14:01:10 -0700495
496 add_proto qw/void av1_highbd_fht16x32/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
Yaowu Xuf883b422016-08-30 14:01:10 -0700497
498 add_proto qw/void av1_highbd_fht32x16/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
Yaowu Xuf883b422016-08-30 14:01:10 -0700499
Debargha Mukherjee751de382016-12-13 02:54:22 -0800500 add_proto qw/void av1_highbd_fht4x16/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
Debargha Mukherjee751de382016-12-13 02:54:22 -0800501
502 add_proto qw/void av1_highbd_fht16x4/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
Debargha Mukherjee751de382016-12-13 02:54:22 -0800503
504 add_proto qw/void av1_highbd_fht8x32/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
Debargha Mukherjee751de382016-12-13 02:54:22 -0800505
506 add_proto qw/void av1_highbd_fht32x8/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
Debargha Mukherjee751de382016-12-13 02:54:22 -0800507
Yaowu Xuf883b422016-08-30 14:01:10 -0700508 add_proto qw/void av1_highbd_fht8x8/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
Yaowu Xuf883b422016-08-30 14:01:10 -0700509
510 add_proto qw/void av1_highbd_fht16x16/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
Yaowu Xuf883b422016-08-30 14:01:10 -0700511
512 add_proto qw/void av1_highbd_fht32x32/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
Yaowu Xuf883b422016-08-30 14:01:10 -0700513
Debargha Mukherjee67d13472016-11-01 14:37:39 -0700514 if (aom_config("CONFIG_TX64X64") eq "yes") {
515 add_proto qw/void av1_highbd_fht64x64/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
Debargha Mukherjee67d13472016-11-01 14:37:39 -0700516 }
517
Yaowu Xuf883b422016-08-30 14:01:10 -0700518 add_proto qw/void av1_highbd_fwht4x4/, "const int16_t *input, tran_low_t *output, int stride";
Yaowu Xuf883b422016-08-30 14:01:10 -0700519
520 add_proto qw/void av1_highbd_temporal_filter_apply/, "uint8_t *frame1, unsigned int stride, uint8_t *frame2, unsigned int block_width, unsigned int block_height, int strength, int filter_weight, unsigned int *accumulator, uint16_t *count";
Yaowu Xuf883b422016-08-30 14:01:10 -0700521
522}
523# End av1_high encoder functions
524
525if (aom_config("CONFIG_EXT_INTER") eq "yes") {
526 add_proto qw/uint64_t av1_wedge_sse_from_residuals/, "const int16_t *r1, const int16_t *d, const uint8_t *m, int N";
527 specialize qw/av1_wedge_sse_from_residuals sse2/;
528 add_proto qw/int av1_wedge_sign_from_residuals/, "const int16_t *ds, const uint8_t *m, int N, int64_t limit";
529 specialize qw/av1_wedge_sign_from_residuals sse2/;
530 add_proto qw/void av1_wedge_compute_delta_squares/, "int16_t *d, const int16_t *a, const int16_t *b, int N";
531 specialize qw/av1_wedge_compute_delta_squares sse2/;
532}
533
534}
535# end encoder functions
Michael Bebenita7227b652016-10-06 14:27:34 -0700536
Yushin Cho77bba8d2016-11-04 16:36:56 -0700537# If PVQ is enabled, fwd transforms are required by decoder
538if (aom_config("CONFIG_PVQ") eq "yes") {
539# fdct functions
540
Sebastien Alaiwan71e87842017-04-12 16:03:28 +0200541if (aom_config("CONFIG_HIGHBITDEPTH") eq "yes") {
Yushin Cho77bba8d2016-11-04 16:36:56 -0700542 add_proto qw/void av1_fht4x4/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
543 specialize qw/av1_fht4x4 sse2/;
544
545 add_proto qw/void av1_fht8x8/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
546 specialize qw/av1_fht8x8 sse2/;
547
548 add_proto qw/void av1_fht16x16/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
549 specialize qw/av1_fht16x16 sse2/;
550
551 add_proto qw/void av1_fwht4x4/, "const int16_t *input, tran_low_t *output, int stride";
552 specialize qw/av1_fwht4x4 sse2/;
Yushin Cho77bba8d2016-11-04 16:36:56 -0700553} else {
554 add_proto qw/void av1_fht4x4/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
555 specialize qw/av1_fht4x4 sse2 msa/;
556
557 add_proto qw/void av1_fht8x8/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
558 specialize qw/av1_fht8x8 sse2 msa/;
559
560 add_proto qw/void av1_fht16x16/, "const int16_t *input, tran_low_t *output, int stride, int tx_type";
561 specialize qw/av1_fht16x16 sse2 msa/;
562
563 add_proto qw/void av1_fwht4x4/, "const int16_t *input, tran_low_t *output, int stride";
564 specialize qw/av1_fwht4x4 msa sse2/;
Yushin Cho77bba8d2016-11-04 16:36:56 -0700565}
566
567}
568
Michael Bebenita7227b652016-10-06 14:27:34 -0700569# Deringing Functions
570
Jean-Marc Valin01435132017-02-18 14:12:53 -0500571if (aom_config("CONFIG_CDEF") eq "yes") {
Steinar Midtskogenb8ff6aa2017-03-25 18:52:22 +0100572 add_proto qw/void aom_clpf_block_hbd/, "uint16_t *dst, const uint16_t *src, int dstride, int sstride, int sizex, int sizey, unsigned int strength, unsigned int bd";
573 add_proto qw/void aom_clpf_hblock_hbd/, "uint16_t *dst, const uint16_t *src, int dstride, int sstride, int sizex, int sizey, unsigned int strength, unsigned int bd";
574 add_proto qw/void aom_clpf_block/, "uint8_t *dst, const uint16_t *src, int dstride, int sstride, int sizex, int sizey, unsigned int strength, unsigned int bd";
575 add_proto qw/void aom_clpf_hblock/, "uint8_t *dst, const uint16_t *src, int dstride, int sstride, int sizex, int sizey, unsigned int strength, unsigned int bd";
Michael Bebenita7227b652016-10-06 14:27:34 -0700576 add_proto qw/int od_dir_find8/, "const od_dering_in *img, int stride, int32_t *var, int coeff_shift";
Steinar Midtskogen8ff52fc2017-04-04 12:29:19 +0200577 add_proto qw/void od_filter_dering_direction_4x4/, "uint16_t *y, int ystride, const uint16_t *in, int threshold, int dir, int damping";
578 add_proto qw/void od_filter_dering_direction_8x8/, "uint16_t *y, int ystride, const uint16_t *in, int threshold, int dir, int damping";
Michael Bebenita54170d92017-03-31 15:48:44 -0700579
580 add_proto qw/void copy_8x8_16bit_to_8bit/, "uint8_t *dst, int dstride, const uint16_t *src, int sstride";
581 add_proto qw/void copy_4x4_16bit_to_8bit/, "uint8_t *dst, int dstride, const uint16_t *src, int sstride";
582 add_proto qw/void copy_8x8_16bit_to_16bit/, "uint16_t *dst, int dstride, const uint16_t *src, int sstride";
583 add_proto qw/void copy_4x4_16bit_to_16bit/, "uint16_t *dst, int dstride, const uint16_t *src, int sstride";
Michael Bebenita131a0d52017-04-01 03:28:13 -0700584 add_proto qw/void copy_rect8_8bit_to_16bit/, "uint16_t *dst, int dstride, const uint8_t *src, int sstride, int v, int h";
585 add_proto qw/void copy_rect8_16bit_to_16bit/, "uint16_t *dst, int dstride, const uint16_t *src, int sstride, int v, int h";
Michael Bebenita54170d92017-03-31 15:48:44 -0700586
587# VS compiling for 32 bit targets does not support vector types in
Steinar Midtskogenb8ff6aa2017-03-25 18:52:22 +0100588 # structs as arguments, which makes the v256 type of the intrinsics
589 # hard to support, so optimizations for this target are disabled.
590 if ($opts{config} !~ /libs-x86-win32-vs.*/) {
591 specialize qw/aom_clpf_block_hbd sse2 ssse3 sse4_1 neon/;
592 specialize qw/aom_clpf_hblock_hbd sse2 ssse3 sse4_1 neon/;
593 specialize qw/aom_clpf_block sse2 ssse3 sse4_1 neon/;
594 specialize qw/aom_clpf_hblock sse2 ssse3 sse4_1 neon/;
595 specialize qw/od_dir_find8 sse2 ssse3 sse4_1 neon/;
596 specialize qw/od_filter_dering_direction_4x4 sse2 ssse3 sse4_1 neon/;
597 specialize qw/od_filter_dering_direction_8x8 sse2 ssse3 sse4_1 neon/;
Michael Bebenita54170d92017-03-31 15:48:44 -0700598
599 specialize qw/copy_8x8_16bit_to_8bit sse2 ssse3 sse4_1 neon/;
600 specialize qw/copy_4x4_16bit_to_8bit sse2 ssse3 sse4_1 neon/;
601 specialize qw/copy_8x8_16bit_to_16bit sse2 ssse3 sse4_1 neon/;
602 specialize qw/copy_4x4_16bit_to_16bit sse2 ssse3 sse4_1 neon/;
Michael Bebenita131a0d52017-04-01 03:28:13 -0700603 specialize qw/copy_rect8_8bit_to_16bit sse2 ssse3 sse4_1 neon/;
604 specialize qw/copy_rect8_16bit_to_16bit sse2 ssse3 sse4_1 neon/;
Steinar Midtskogenb8ff6aa2017-03-25 18:52:22 +0100605 }
Michael Bebenita7227b652016-10-06 14:27:34 -0700606}
607
Michael Bebenita3a88de82017-02-23 18:49:44 -0800608# PVQ Functions
609
610if (aom_config("CONFIG_PVQ") eq "yes") {
Rostislav Pehlivanovc7606972017-03-20 17:34:35 +0000611 add_proto qw/double pvq_search_rdo_double/, "const od_val16 *xcoeff, int n, int k, int *ypulse, double g2, double pvq_norm_lambda, int prev_k";
Michael Bebenita3a88de82017-02-23 18:49:44 -0800612 specialize qw/pvq_search_rdo_double sse4_1/;
613}
614
David Barkerd5dfa962017-01-10 15:06:08 +0000615# WARPED_MOTION / GLOBAL_MOTION functions
616
617if ((aom_config("CONFIG_WARPED_MOTION") eq "yes") ||
618 (aom_config("CONFIG_GLOBAL_MOTION") eq "yes")) {
Sarah Parker7afb8b72017-05-04 15:33:10 -0700619 add_proto qw/void av1_warp_affine/, "const int32_t *mat, const uint8_t *ref, int width, int height, int stride, uint8_t *pred, int p_col, int p_row, int p_width, int p_height, int p_stride, int subsampling_x, int subsampling_y, int comp_avg, int16_t alpha, int16_t beta, int16_t gamma, int16_t delta";
David Barkerd8a423c2017-04-19 10:32:43 +0100620 specialize qw/av1_warp_affine sse2 ssse3/;
David Barker2bcf2802017-04-05 11:44:31 +0100621
Sebastien Alaiwan71e87842017-04-12 16:03:28 +0200622 if (aom_config("CONFIG_HIGHBITDEPTH") eq "yes") {
Sarah Parker7afb8b72017-05-04 15:33:10 -0700623 add_proto qw/void av1_highbd_warp_affine/, "const int32_t *mat, const uint16_t *ref, int width, int height, int stride, uint16_t *pred, int p_col, int p_row, int p_width, int p_height, int p_stride, int subsampling_x, int subsampling_y, int bd, int comp_avg, int16_t alpha, int16_t beta, int16_t gamma, int16_t delta";
David Barker521383a2017-04-05 14:07:12 +0100624 specialize qw/av1_highbd_warp_affine ssse3/;
David Barker2bcf2802017-04-05 11:44:31 +0100625 }
David Barkerd5dfa962017-01-10 15:06:08 +0000626}
627
Alex Converseea166872017-05-11 09:49:13 -0700628if (aom_config("CONFIG_GLOBAL_MOTION") eq "yes" &&
David Barkeree674322017-05-10 15:43:02 +0100629 aom_config("CONFIG_AV1_ENCODER") eq "yes") {
630 add_proto qw/double compute_cross_correlation/, "unsigned char *im1, int stride1, int x1, int y1, unsigned char *im2, int stride2, int x2, int y2";
631 specialize qw/compute_cross_correlation sse4_1/;
632}
633
David Barkerce110cc2017-02-22 10:38:59 +0000634# LOOP_RESTORATION functions
635
636if (aom_config("CONFIG_LOOP_RESTORATION") eq "yes") {
David Barker4d2af5d2017-03-09 11:46:50 +0000637 add_proto qw/void apply_selfguided_restoration/, "uint8_t *dat, int width, int height, int stride, int eps, int *xqd, uint8_t *dst, int dst_stride, int32_t *tmpbuf";
David Barkerce110cc2017-02-22 10:38:59 +0000638 specialize qw/apply_selfguided_restoration sse4_1/;
David Barker506eb722017-03-08 13:35:49 +0000639
David Barker4d2af5d2017-03-09 11:46:50 +0000640 add_proto qw/void av1_selfguided_restoration/, "uint8_t *dgd, int width, int height, int stride, int32_t *dst, int dst_stride, int r, int eps, int32_t *tmpbuf";
David Barker506eb722017-03-08 13:35:49 +0000641 specialize qw/av1_selfguided_restoration sse4_1/;
642
David Barkereed824e2017-03-10 11:35:22 +0000643 add_proto qw/void av1_highpass_filter/, "uint8_t *dgd, int width, int height, int stride, int32_t *dst, int dst_stride, int r, int eps";
644 specialize qw/av1_highpass_filter sse4_1/;
Debargha Mukherjeeb7bb0972017-03-09 06:47:43 -0800645
Sebastien Alaiwan71e87842017-04-12 16:03:28 +0200646 if (aom_config("CONFIG_HIGHBITDEPTH") eq "yes") {
David Barker506eb722017-03-08 13:35:49 +0000647 add_proto qw/void apply_selfguided_restoration_highbd/, "uint16_t *dat, int width, int height, int stride, int bit_depth, int eps, int *xqd, uint16_t *dst, int dst_stride, int32_t *tmpbuf";
David Barker7e08ac32017-03-20 10:05:21 +0000648 specialize qw/apply_selfguided_restoration_highbd sse4_1/;
David Barker506eb722017-03-08 13:35:49 +0000649
650 add_proto qw/void av1_selfguided_restoration_highbd/, "uint16_t *dgd, int width, int height, int stride, int32_t *dst, int dst_stride, int bit_depth, int r, int eps, int32_t *tmpbuf";
David Barker4d2af5d2017-03-09 11:46:50 +0000651 specialize qw/av1_selfguided_restoration_highbd sse4_1/;
Debargha Mukherjeeb7bb0972017-03-09 06:47:43 -0800652
David Barkereed824e2017-03-10 11:35:22 +0000653 add_proto qw/void av1_highpass_filter_highbd/, "uint16_t *dgd, int width, int height, int stride, int32_t *dst, int dst_stride, int r, int eps";
654 specialize qw/av1_highpass_filter_highbd sse4_1/;
David Barker506eb722017-03-08 13:35:49 +0000655 }
David Barkerce110cc2017-02-22 10:38:59 +0000656}
657
Yaowu Xuf883b422016-08-30 14:01:10 -07006581;