Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1 | sub av1_common_forward_decls() { |
| 2 | print <<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 Chiang | 674bffd | 2017-01-11 16:15:55 -0800 | [diff] [blame] | 12 | #include "av1/common/convolve.h" |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 13 | #include "av1/common/av1_txfm.h" |
Rostislav Pehlivanov | c760697 | 2017-03-20 17:34:35 +0000 | [diff] [blame] | 14 | #include "av1/common/odintrin.h" |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 15 | |
| 16 | struct macroblockd; |
| 17 | |
| 18 | /* Encoder forward decls */ |
| 19 | struct macroblock; |
| 20 | struct aom_variance_vtable; |
| 21 | struct search_site_config; |
| 22 | struct mv; |
| 23 | union int_mv; |
| 24 | struct yv12_buffer_config; |
Steinar Midtskogen | a9d41e8 | 2017-03-17 12:48:15 +0100 | [diff] [blame] | 25 | typedef uint16_t od_dering_in; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 26 | EOF |
| 27 | } |
| 28 | forward_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 = ''; |
| 32 | if ($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 Chiang | 0a2c0cb | 2017-02-23 14:19:15 -0800 | [diff] [blame] | 43 | add_proto qw/void av1_lowbd_convolve_init/, "void"; |
| 44 | specialize qw/av1_lowbd_convolve_init ssse3/; |
Angie Chiang | e067de0 | 2016-11-28 14:55:14 -0800 | [diff] [blame] | 45 | |
Angie Chiang | 674bffd | 2017-01-11 16:15:55 -0800 | [diff] [blame] | 46 | add_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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 47 | specialize qw/av1_convolve_horiz ssse3/; |
| 48 | |
Angie Chiang | 674bffd | 2017-01-11 16:15:55 -0800 | [diff] [blame] | 49 | add_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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 50 | specialize qw/av1_convolve_vert ssse3/; |
| 51 | |
Sebastien Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 52 | if (aom_config("CONFIG_HIGHBITDEPTH") eq "yes") { |
Angie Chiang | 0a2c0cb | 2017-02-23 14:19:15 -0800 | [diff] [blame] | 53 | add_proto qw/void av1_highbd_convolve_init/, "void"; |
| 54 | specialize qw/av1_highbd_convolve_init sse4_1/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 55 | 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 Lore | 1a800f6 | 2016-09-02 16:05:53 +0100 | [diff] [blame] | 62 | # Inverse dct |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 63 | # |
Sebastien Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 64 | if (aom_config("CONFIG_HIGHBITDEPTH") eq "yes") { |
Sebastien Alaiwan | c6a48a2 | 2017-04-20 10:12:43 +0200 | [diff] [blame] | 65 | { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 66 | add_proto qw/void av1_iht4x4_16_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type"; |
Debargha Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 67 | specialize qw/av1_iht4x4_16_add sse2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 68 | |
Jingning Han | ec419e0 | 2016-11-01 18:19:30 -0700 | [diff] [blame] | 69 | add_proto qw/void av1_iht4x8_32_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type"; |
David Barker | 4d03d6f | 2016-10-03 16:27:27 +0100 | [diff] [blame] | 70 | specialize qw/av1_iht4x8_32_add sse2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 71 | |
Jingning Han | ec419e0 | 2016-11-01 18:19:30 -0700 | [diff] [blame] | 72 | add_proto qw/void av1_iht8x4_32_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type"; |
David Barker | 4d03d6f | 2016-10-03 16:27:27 +0100 | [diff] [blame] | 73 | specialize qw/av1_iht8x4_32_add sse2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 74 | |
Jingning Han | ec419e0 | 2016-11-01 18:19:30 -0700 | [diff] [blame] | 75 | add_proto qw/void av1_iht8x16_128_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type"; |
Peter de Rivaz | 1baecfe | 2016-09-29 09:14:54 +0100 | [diff] [blame] | 76 | specialize qw/av1_iht8x16_128_add sse2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 77 | |
Jingning Han | ec419e0 | 2016-11-01 18:19:30 -0700 | [diff] [blame] | 78 | add_proto qw/void av1_iht16x8_128_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type"; |
Peter de Rivaz | 1baecfe | 2016-09-29 09:14:54 +0100 | [diff] [blame] | 79 | specialize qw/av1_iht16x8_128_add sse2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 80 | |
Jingning Han | ec419e0 | 2016-11-01 18:19:30 -0700 | [diff] [blame] | 81 | add_proto qw/void av1_iht16x32_512_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type"; |
David Barker | 33231d4 | 2016-10-06 17:25:40 +0100 | [diff] [blame] | 82 | specialize qw/av1_iht16x32_512_add sse2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 83 | |
Jingning Han | ec419e0 | 2016-11-01 18:19:30 -0700 | [diff] [blame] | 84 | add_proto qw/void av1_iht32x16_512_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type"; |
David Barker | 33231d4 | 2016-10-06 17:25:40 +0100 | [diff] [blame] | 85 | specialize qw/av1_iht32x16_512_add sse2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 86 | |
Debargha Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 87 | add_proto qw/void av1_iht4x16_64_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type"; |
Debargha Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 88 | |
| 89 | add_proto qw/void av1_iht16x4_64_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type"; |
Debargha Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 90 | |
| 91 | add_proto qw/void av1_iht8x32_256_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type"; |
Debargha Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 92 | |
| 93 | add_proto qw/void av1_iht32x8_256_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type"; |
Debargha Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 94 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 95 | add_proto qw/void av1_iht8x8_64_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type"; |
Debargha Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 96 | specialize qw/av1_iht8x8_64_add sse2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 97 | |
| 98 | add_proto qw/void av1_iht16x16_256_add/, "const tran_low_t *input, uint8_t *output, int pitch, int tx_type"; |
Debargha Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 99 | specialize qw/av1_iht16x16_256_add sse2 avx2/; |
Debargha Mukherjee | 6a47cff | 2016-11-02 14:57:42 -0700 | [diff] [blame] | 100 | |
| 101 | add_proto qw/void av1_iht32x32_1024_add/, "const tran_low_t *input, uint8_t *output, int pitch, int tx_type"; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 102 | } |
| 103 | } else { |
Sebastien Alaiwan | c6a48a2 | 2017-04-20 10:12:43 +0200 | [diff] [blame] | 104 | { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 105 | 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 Han | ec419e0 | 2016-11-01 18:19:30 -0700 | [diff] [blame] | 108 | add_proto qw/void av1_iht4x8_32_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type"; |
David Barker | 4d03d6f | 2016-10-03 16:27:27 +0100 | [diff] [blame] | 109 | specialize qw/av1_iht4x8_32_add sse2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 110 | |
Jingning Han | ec419e0 | 2016-11-01 18:19:30 -0700 | [diff] [blame] | 111 | add_proto qw/void av1_iht8x4_32_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type"; |
David Barker | 4d03d6f | 2016-10-03 16:27:27 +0100 | [diff] [blame] | 112 | specialize qw/av1_iht8x4_32_add sse2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 113 | |
Jingning Han | ec419e0 | 2016-11-01 18:19:30 -0700 | [diff] [blame] | 114 | add_proto qw/void av1_iht8x16_128_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type"; |
Peter de Rivaz | 1baecfe | 2016-09-29 09:14:54 +0100 | [diff] [blame] | 115 | specialize qw/av1_iht8x16_128_add sse2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 116 | |
Jingning Han | ec419e0 | 2016-11-01 18:19:30 -0700 | [diff] [blame] | 117 | add_proto qw/void av1_iht16x8_128_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type"; |
Peter de Rivaz | 1baecfe | 2016-09-29 09:14:54 +0100 | [diff] [blame] | 118 | specialize qw/av1_iht16x8_128_add sse2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 119 | |
Jingning Han | ec419e0 | 2016-11-01 18:19:30 -0700 | [diff] [blame] | 120 | add_proto qw/void av1_iht16x32_512_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type"; |
David Barker | 33231d4 | 2016-10-06 17:25:40 +0100 | [diff] [blame] | 121 | specialize qw/av1_iht16x32_512_add sse2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 122 | |
Jingning Han | ec419e0 | 2016-11-01 18:19:30 -0700 | [diff] [blame] | 123 | add_proto qw/void av1_iht32x16_512_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type"; |
David Barker | 33231d4 | 2016-10-06 17:25:40 +0100 | [diff] [blame] | 124 | specialize qw/av1_iht32x16_512_add sse2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 125 | |
Debargha Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 126 | add_proto qw/void av1_iht4x16_64_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type"; |
Debargha Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 127 | |
| 128 | add_proto qw/void av1_iht16x4_64_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type"; |
Debargha Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 129 | |
| 130 | add_proto qw/void av1_iht8x32_256_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type"; |
Debargha Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 131 | |
| 132 | add_proto qw/void av1_iht32x8_256_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type"; |
Debargha Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 133 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 134 | add_proto qw/void av1_iht8x8_64_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type"; |
Debargha Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 135 | specialize qw/av1_iht8x8_64_add sse2 neon dspr2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 136 | |
| 137 | add_proto qw/void av1_iht16x16_256_add/, "const tran_low_t *input, uint8_t *output, int pitch, int tx_type"; |
Debargha Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 138 | specialize qw/av1_iht16x16_256_add sse2 avx2 dspr2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 139 | |
Debargha Mukherjee | 6a47cff | 2016-11-02 14:57:42 -0700 | [diff] [blame] | 140 | add_proto qw/void av1_iht32x32_1024_add/, "const tran_low_t *input, uint8_t *output, int pitch, int tx_type"; |
Debargha Mukherjee | 6a47cff | 2016-11-02 14:57:42 -0700 | [diff] [blame] | 141 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 142 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 147 | } |
| 148 | } |
Debargha Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 149 | |
Debargha Mukherjee | 6a47cff | 2016-11-02 14:57:42 -0700 | [diff] [blame] | 150 | add_proto qw/void av1_iht32x32_1024_add/, "const tran_low_t *input, uint8_t *output, int pitch, int tx_type"; |
Debargha Mukherjee | 6a47cff | 2016-11-02 14:57:42 -0700 | [diff] [blame] | 151 | |
| 152 | if (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 Mukherjee | 6a47cff | 2016-11-02 14:57:42 -0700 | [diff] [blame] | 154 | } |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 155 | |
| 156 | if (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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 158 | |
| 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 160 | |
| 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 162 | |
| 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 Mukherjee | 0e11912 | 2016-11-04 12:10:23 -0700 | [diff] [blame] | 164 | |
| 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 Mukherjee | 0e11912 | 2016-11-04 12:10:23 -0700 | [diff] [blame] | 167 | |
| 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 Mukherjee | 0e11912 | 2016-11-04 12:10:23 -0700 | [diff] [blame] | 169 | } |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 170 | } |
| 171 | |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 172 | # FILTER_INTRA predictor functions |
| 173 | if (aom_config("CONFIG_FILTER_INTRA") eq "yes") { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 174 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 175 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 176 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 177 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 178 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 179 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 180 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 181 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 182 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 183 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 184 | # High bitdepth functions |
Sebastien Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 185 | if (aom_config("CONFIG_HIGHBITDEPTH") eq "yes") { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 186 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 187 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 188 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 189 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 190 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 191 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 192 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 193 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 194 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 195 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 196 | } |
| 197 | } |
| 198 | |
| 199 | # High bitdepth functions |
Sebastien Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 200 | if (aom_config("CONFIG_HIGHBITDEPTH") eq "yes") { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 201 | # |
| 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 205 | |
| 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 207 | |
| 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 229 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 230 | |
Jingning Han | ec419e0 | 2016-11-01 18:19:30 -0700 | [diff] [blame] | 231 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 232 | |
Jingning Han | ec419e0 | 2016-11-01 18:19:30 -0700 | [diff] [blame] | 233 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 234 | |
Jingning Han | ec419e0 | 2016-11-01 18:19:30 -0700 | [diff] [blame] | 235 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 236 | |
Jingning Han | ec419e0 | 2016-11-01 18:19:30 -0700 | [diff] [blame] | 237 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 238 | |
Jingning Han | ec419e0 | 2016-11-01 18:19:30 -0700 | [diff] [blame] | 239 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 240 | |
Jingning Han | ec419e0 | 2016-11-01 18:19:30 -0700 | [diff] [blame] | 241 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 242 | |
Debargha Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 243 | 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 Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 244 | |
| 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 Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 246 | |
| 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 Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 248 | |
| 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 Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 250 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 251 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 252 | |
| 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 254 | } |
| 255 | |
Sebastien Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 256 | if (aom_config("CONFIG_HIGHBITDEPTH") eq "yes") { |
Yunqing Wang | 8036058 | 2017-03-28 17:17:23 -0700 | [diff] [blame] | 257 | #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 Wang | 8036058 | 2017-03-28 17:17:23 -0700 | [diff] [blame] | 267 | } |
| 268 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 269 | # |
| 270 | # Encoder functions below this point. |
| 271 | # |
| 272 | if (aom_config("CONFIG_AV1_ENCODER") eq "yes") { |
| 273 | |
| 274 | # ENCODEMB INVOKE |
| 275 | |
| 276 | if (aom_config("CONFIG_AOM_QM") eq "yes") { |
Sebastien Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 277 | if (aom_config("CONFIG_HIGHBITDEPTH") eq "yes") { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 278 | # 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 281 | |
| 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 Mukherjee | 0e11912 | 2016-11-04 12:10:23 -0700 | [diff] [blame] | 285 | |
| 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 Mukherjee | 0e11912 | 2016-11-04 12:10:23 -0700 | [diff] [blame] | 288 | } |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 289 | |
| 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 291 | } 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 Mukherjee | 0e11912 | 2016-11-04 12:10:23 -0700 | [diff] [blame] | 301 | |
| 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 Mukherjee | 0e11912 | 2016-11-04 12:10:23 -0700 | [diff] [blame] | 304 | } |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 305 | |
| 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 Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 309 | if (aom_config("CONFIG_HIGHBITDEPTH") eq "yes") { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 310 | # 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 313 | |
| 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 Luo | bf8af7e | 2017-05-24 15:11:05 -0700 | [diff] [blame] | 315 | specialize qw/av1_quantize_fp sse2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 316 | |
| 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 318 | |
Debargha Mukherjee | 0e11912 | 2016-11-04 12:10:23 -0700 | [diff] [blame] | 319 | 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 Mukherjee | 0e11912 | 2016-11-04 12:10:23 -0700 | [diff] [blame] | 321 | } |
| 322 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 323 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 324 | } 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 Mukherjee | 0e11912 | 2016-11-04 12:10:23 -0700 | [diff] [blame] | 337 | 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 Mukherjee | 0e11912 | 2016-11-04 12:10:23 -0700 | [diff] [blame] | 339 | } |
| 340 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 341 | 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 Lore | 1a800f6 | 2016-09-02 16:05:53 +0100 | [diff] [blame] | 349 | add_proto qw/void av1_fht4x4/, "const int16_t *input, tran_low_t *output, int stride, int tx_type"; |
| 350 | specialize qw/av1_fht4x4 sse2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 351 | |
Geza Lore | 1a800f6 | 2016-09-02 16:05:53 +0100 | [diff] [blame] | 352 | add_proto qw/void av1_fwht4x4/, "const int16_t *input, tran_low_t *output, int stride"; |
Geza Lore | 1a800f6 | 2016-09-02 16:05:53 +0100 | [diff] [blame] | 353 | |
| 354 | add_proto qw/void av1_fht8x8/, "const int16_t *input, tran_low_t *output, int stride, int tx_type"; |
| 355 | specialize qw/av1_fht8x8 sse2/; |
| 356 | |
| 357 | add_proto qw/void av1_fht16x16/, "const int16_t *input, tran_low_t *output, int stride, int tx_type"; |
Yi Luo | e8e8cd8 | 2016-09-21 10:45:01 -0700 | [diff] [blame] | 358 | specialize qw/av1_fht16x16 sse2 avx2/; |
Geza Lore | 1a800f6 | 2016-09-02 16:05:53 +0100 | [diff] [blame] | 359 | |
Yi Luo | 157e45a | 2016-10-17 11:18:50 -0700 | [diff] [blame] | 360 | add_proto qw/void av1_fht32x32/, "const int16_t *input, tran_low_t *output, int stride, int tx_type"; |
Yi Luo | 9a3d29e | 2017-03-29 11:40:03 -0700 | [diff] [blame] | 361 | specialize qw/av1_fht32x32 sse2 avx2/; |
Yi Luo | 157e45a | 2016-10-17 11:18:50 -0700 | [diff] [blame] | 362 | |
Debargha Mukherjee | 67d1347 | 2016-11-01 14:37:39 -0700 | [diff] [blame] | 363 | if (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 Mukherjee | 67d1347 | 2016-11-01 14:37:39 -0700 | [diff] [blame] | 365 | } |
| 366 | |
Jingning Han | 9fe3139 | 2016-11-02 09:37:14 -0700 | [diff] [blame] | 367 | add_proto qw/void av1_fht4x8/, "const int16_t *input, tran_low_t *output, int stride, int tx_type"; |
| 368 | specialize qw/av1_fht4x8 sse2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 369 | |
Jingning Han | 9fe3139 | 2016-11-02 09:37:14 -0700 | [diff] [blame] | 370 | add_proto qw/void av1_fht8x4/, "const int16_t *input, tran_low_t *output, int stride, int tx_type"; |
| 371 | specialize qw/av1_fht8x4 sse2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 372 | |
Jingning Han | 9fe3139 | 2016-11-02 09:37:14 -0700 | [diff] [blame] | 373 | add_proto qw/void av1_fht8x16/, "const int16_t *input, tran_low_t *output, int stride, int tx_type"; |
| 374 | specialize qw/av1_fht8x16 sse2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 375 | |
Jingning Han | 9fe3139 | 2016-11-02 09:37:14 -0700 | [diff] [blame] | 376 | add_proto qw/void av1_fht16x8/, "const int16_t *input, tran_low_t *output, int stride, int tx_type"; |
| 377 | specialize qw/av1_fht16x8 sse2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 378 | |
Jingning Han | 9fe3139 | 2016-11-02 09:37:14 -0700 | [diff] [blame] | 379 | add_proto qw/void av1_fht16x32/, "const int16_t *input, tran_low_t *output, int stride, int tx_type"; |
| 380 | specialize qw/av1_fht16x32 sse2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 381 | |
Jingning Han | 9fe3139 | 2016-11-02 09:37:14 -0700 | [diff] [blame] | 382 | add_proto qw/void av1_fht32x16/, "const int16_t *input, tran_low_t *output, int stride, int tx_type"; |
| 383 | specialize qw/av1_fht32x16 sse2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 384 | |
Debargha Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 385 | add_proto qw/void av1_fht4x16/, "const int16_t *input, tran_low_t *output, int stride, int tx_type"; |
Debargha Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 386 | |
| 387 | add_proto qw/void av1_fht16x4/, "const int16_t *input, tran_low_t *output, int stride, int tx_type"; |
Debargha Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 388 | |
| 389 | add_proto qw/void av1_fht8x32/, "const int16_t *input, tran_low_t *output, int stride, int tx_type"; |
Debargha Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 390 | |
| 391 | add_proto qw/void av1_fht32x8/, "const int16_t *input, tran_low_t *output, int stride, int tx_type"; |
Debargha Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 392 | |
Sebastien Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 393 | if (aom_config("CONFIG_HIGHBITDEPTH") ne "yes") { |
Geza Lore | 1a800f6 | 2016-09-02 16:05:53 +0100 | [diff] [blame] | 394 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 401 | add_proto qw/void av1_fwd_idtx/, "const int16_t *src_diff, tran_low_t *coeff, int stride, int bs, int tx_type"; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 402 | |
hui su | b8a6fd6 | 2017-05-10 10:57:57 -0700 | [diff] [blame] | 403 | if (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 Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 410 | if (aom_config("CONFIG_HIGHBITDEPTH") eq "yes") { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 411 | #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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 422 | } |
| 423 | |
| 424 | # |
| 425 | # Motion search |
| 426 | # |
| 427 | add_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"; |
| 428 | specialize 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 | |
| 432 | add_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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 433 | |
| 434 | add_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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 435 | |
| 436 | add_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"; |
| 437 | specialize qw/av1_temporal_filter_apply sse2 msa/; |
| 438 | |
Debargha Mukherjee | 0e11912 | 2016-11-04 12:10:23 -0700 | [diff] [blame] | 439 | if (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 Mukherjee | 0e11912 | 2016-11-04 12:10:23 -0700 | [diff] [blame] | 441 | } 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 Mukherjee | 0e11912 | 2016-11-04 12:10:23 -0700 | [diff] [blame] | 443 | } |
| 444 | |
Sebastien Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 445 | if (aom_config("CONFIG_HIGHBITDEPTH") eq "yes") { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 446 | |
| 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 450 | |
| 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 452 | |
| 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 454 | |
| 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 Mukherjee | 0e11912 | 2016-11-04 12:10:23 -0700 | [diff] [blame] | 456 | |
| 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 Mukherjee | 0e11912 | 2016-11-04 12:10:23 -0700 | [diff] [blame] | 459 | |
| 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 Mukherjee | 0e11912 | 2016-11-04 12:10:23 -0700 | [diff] [blame] | 461 | } |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 462 | } |
| 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 Xu | 0dd0463 | 2016-10-19 09:31:50 -0700 | [diff] [blame] | 468 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 469 | |
Yaowu Xu | 0dd0463 | 2016-10-19 09:31:50 -0700 | [diff] [blame] | 470 | 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 Xu | 0dd0463 | 2016-10-19 09:31:50 -0700 | [diff] [blame] | 471 | |
Debargha Mukherjee | 0e11912 | 2016-11-04 12:10:23 -0700 | [diff] [blame] | 472 | 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 Mukherjee | 0e11912 | 2016-11-04 12:10:23 -0700 | [diff] [blame] | 474 | } |
| 475 | |
Yaowu Xu | 0dd0463 | 2016-10-19 09:31:50 -0700 | [diff] [blame] | 476 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 477 | } 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 482 | } |
| 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 489 | |
| 490 | add_proto qw/void av1_highbd_fht8x4/, "const int16_t *input, tran_low_t *output, int stride, int tx_type"; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 491 | |
| 492 | add_proto qw/void av1_highbd_fht8x16/, "const int16_t *input, tran_low_t *output, int stride, int tx_type"; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 493 | |
| 494 | add_proto qw/void av1_highbd_fht16x8/, "const int16_t *input, tran_low_t *output, int stride, int tx_type"; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 495 | |
| 496 | add_proto qw/void av1_highbd_fht16x32/, "const int16_t *input, tran_low_t *output, int stride, int tx_type"; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 497 | |
| 498 | add_proto qw/void av1_highbd_fht32x16/, "const int16_t *input, tran_low_t *output, int stride, int tx_type"; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 499 | |
Debargha Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 500 | add_proto qw/void av1_highbd_fht4x16/, "const int16_t *input, tran_low_t *output, int stride, int tx_type"; |
Debargha Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 501 | |
| 502 | add_proto qw/void av1_highbd_fht16x4/, "const int16_t *input, tran_low_t *output, int stride, int tx_type"; |
Debargha Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 503 | |
| 504 | add_proto qw/void av1_highbd_fht8x32/, "const int16_t *input, tran_low_t *output, int stride, int tx_type"; |
Debargha Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 505 | |
| 506 | add_proto qw/void av1_highbd_fht32x8/, "const int16_t *input, tran_low_t *output, int stride, int tx_type"; |
Debargha Mukherjee | 751de38 | 2016-12-13 02:54:22 -0800 | [diff] [blame] | 507 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 508 | add_proto qw/void av1_highbd_fht8x8/, "const int16_t *input, tran_low_t *output, int stride, int tx_type"; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 509 | |
| 510 | add_proto qw/void av1_highbd_fht16x16/, "const int16_t *input, tran_low_t *output, int stride, int tx_type"; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 511 | |
| 512 | add_proto qw/void av1_highbd_fht32x32/, "const int16_t *input, tran_low_t *output, int stride, int tx_type"; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 513 | |
Debargha Mukherjee | 67d1347 | 2016-11-01 14:37:39 -0700 | [diff] [blame] | 514 | 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 Mukherjee | 67d1347 | 2016-11-01 14:37:39 -0700 | [diff] [blame] | 516 | } |
| 517 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 518 | add_proto qw/void av1_highbd_fwht4x4/, "const int16_t *input, tran_low_t *output, int stride"; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 519 | |
| 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 521 | |
| 522 | } |
| 523 | # End av1_high encoder functions |
| 524 | |
| 525 | if (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 Bebenita | 7227b65 | 2016-10-06 14:27:34 -0700 | [diff] [blame] | 536 | |
Yushin Cho | 77bba8d | 2016-11-04 16:36:56 -0700 | [diff] [blame] | 537 | # If PVQ is enabled, fwd transforms are required by decoder |
| 538 | if (aom_config("CONFIG_PVQ") eq "yes") { |
| 539 | # fdct functions |
| 540 | |
Sebastien Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 541 | if (aom_config("CONFIG_HIGHBITDEPTH") eq "yes") { |
Yushin Cho | 77bba8d | 2016-11-04 16:36:56 -0700 | [diff] [blame] | 542 | 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 Cho | 77bba8d | 2016-11-04 16:36:56 -0700 | [diff] [blame] | 553 | } 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 Cho | 77bba8d | 2016-11-04 16:36:56 -0700 | [diff] [blame] | 565 | } |
| 566 | |
| 567 | } |
| 568 | |
Michael Bebenita | 7227b65 | 2016-10-06 14:27:34 -0700 | [diff] [blame] | 569 | # Deringing Functions |
| 570 | |
Jean-Marc Valin | 0143513 | 2017-02-18 14:12:53 -0500 | [diff] [blame] | 571 | if (aom_config("CONFIG_CDEF") eq "yes") { |
Steinar Midtskogen | b8ff6aa | 2017-03-25 18:52:22 +0100 | [diff] [blame] | 572 | 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 Bebenita | 7227b65 | 2016-10-06 14:27:34 -0700 | [diff] [blame] | 576 | add_proto qw/int od_dir_find8/, "const od_dering_in *img, int stride, int32_t *var, int coeff_shift"; |
Steinar Midtskogen | 8ff52fc | 2017-04-04 12:29:19 +0200 | [diff] [blame] | 577 | 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 Bebenita | 54170d9 | 2017-03-31 15:48:44 -0700 | [diff] [blame] | 579 | |
| 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 Bebenita | 131a0d5 | 2017-04-01 03:28:13 -0700 | [diff] [blame] | 584 | 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 Bebenita | 54170d9 | 2017-03-31 15:48:44 -0700 | [diff] [blame] | 586 | |
| 587 | # VS compiling for 32 bit targets does not support vector types in |
Steinar Midtskogen | b8ff6aa | 2017-03-25 18:52:22 +0100 | [diff] [blame] | 588 | # 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 Bebenita | 54170d9 | 2017-03-31 15:48:44 -0700 | [diff] [blame] | 598 | |
| 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 Bebenita | 131a0d5 | 2017-04-01 03:28:13 -0700 | [diff] [blame] | 603 | 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 Midtskogen | b8ff6aa | 2017-03-25 18:52:22 +0100 | [diff] [blame] | 605 | } |
Michael Bebenita | 7227b65 | 2016-10-06 14:27:34 -0700 | [diff] [blame] | 606 | } |
| 607 | |
Michael Bebenita | 3a88de8 | 2017-02-23 18:49:44 -0800 | [diff] [blame] | 608 | # PVQ Functions |
| 609 | |
| 610 | if (aom_config("CONFIG_PVQ") eq "yes") { |
Rostislav Pehlivanov | c760697 | 2017-03-20 17:34:35 +0000 | [diff] [blame] | 611 | 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 Bebenita | 3a88de8 | 2017-02-23 18:49:44 -0800 | [diff] [blame] | 612 | specialize qw/pvq_search_rdo_double sse4_1/; |
| 613 | } |
| 614 | |
David Barker | d5dfa96 | 2017-01-10 15:06:08 +0000 | [diff] [blame] | 615 | # WARPED_MOTION / GLOBAL_MOTION functions |
| 616 | |
| 617 | if ((aom_config("CONFIG_WARPED_MOTION") eq "yes") || |
| 618 | (aom_config("CONFIG_GLOBAL_MOTION") eq "yes")) { |
Sarah Parker | 7afb8b7 | 2017-05-04 15:33:10 -0700 | [diff] [blame] | 619 | 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 Barker | d8a423c | 2017-04-19 10:32:43 +0100 | [diff] [blame] | 620 | specialize qw/av1_warp_affine sse2 ssse3/; |
David Barker | 2bcf280 | 2017-04-05 11:44:31 +0100 | [diff] [blame] | 621 | |
Sebastien Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 622 | if (aom_config("CONFIG_HIGHBITDEPTH") eq "yes") { |
Sarah Parker | 7afb8b7 | 2017-05-04 15:33:10 -0700 | [diff] [blame] | 623 | 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 Barker | 521383a | 2017-04-05 14:07:12 +0100 | [diff] [blame] | 624 | specialize qw/av1_highbd_warp_affine ssse3/; |
David Barker | 2bcf280 | 2017-04-05 11:44:31 +0100 | [diff] [blame] | 625 | } |
David Barker | d5dfa96 | 2017-01-10 15:06:08 +0000 | [diff] [blame] | 626 | } |
| 627 | |
Alex Converse | ea16687 | 2017-05-11 09:49:13 -0700 | [diff] [blame] | 628 | if (aom_config("CONFIG_GLOBAL_MOTION") eq "yes" && |
David Barker | ee67432 | 2017-05-10 15:43:02 +0100 | [diff] [blame] | 629 | 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 Barker | ce110cc | 2017-02-22 10:38:59 +0000 | [diff] [blame] | 634 | # LOOP_RESTORATION functions |
| 635 | |
| 636 | if (aom_config("CONFIG_LOOP_RESTORATION") eq "yes") { |
David Barker | 4d2af5d | 2017-03-09 11:46:50 +0000 | [diff] [blame] | 637 | 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 Barker | ce110cc | 2017-02-22 10:38:59 +0000 | [diff] [blame] | 638 | specialize qw/apply_selfguided_restoration sse4_1/; |
David Barker | 506eb72 | 2017-03-08 13:35:49 +0000 | [diff] [blame] | 639 | |
David Barker | 4d2af5d | 2017-03-09 11:46:50 +0000 | [diff] [blame] | 640 | 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 Barker | 506eb72 | 2017-03-08 13:35:49 +0000 | [diff] [blame] | 641 | specialize qw/av1_selfguided_restoration sse4_1/; |
| 642 | |
David Barker | eed824e | 2017-03-10 11:35:22 +0000 | [diff] [blame] | 643 | 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 Mukherjee | b7bb097 | 2017-03-09 06:47:43 -0800 | [diff] [blame] | 645 | |
Sebastien Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 646 | if (aom_config("CONFIG_HIGHBITDEPTH") eq "yes") { |
David Barker | 506eb72 | 2017-03-08 13:35:49 +0000 | [diff] [blame] | 647 | 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 Barker | 7e08ac3 | 2017-03-20 10:05:21 +0000 | [diff] [blame] | 648 | specialize qw/apply_selfguided_restoration_highbd sse4_1/; |
David Barker | 506eb72 | 2017-03-08 13:35:49 +0000 | [diff] [blame] | 649 | |
| 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 Barker | 4d2af5d | 2017-03-09 11:46:50 +0000 | [diff] [blame] | 651 | specialize qw/av1_selfguided_restoration_highbd sse4_1/; |
Debargha Mukherjee | b7bb097 | 2017-03-09 06:47:43 -0800 | [diff] [blame] | 652 | |
David Barker | eed824e | 2017-03-10 11:35:22 +0000 | [diff] [blame] | 653 | 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 Barker | 506eb72 | 2017-03-08 13:35:49 +0000 | [diff] [blame] | 655 | } |
David Barker | ce110cc | 2017-02-22 10:38:59 +0000 | [diff] [blame] | 656 | } |
| 657 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 658 | 1; |