Johann | aecbba6 | 2017-12-15 09:03:23 -0800 | [diff] [blame] | 1 | ## |
| 2 | ## Copyright (c) 2017, Alliance for Open Media. All rights reserved |
| 3 | ## |
| 4 | ## This source code is subject to the terms of the BSD 2 Clause License and |
| 5 | ## the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License |
| 6 | ## was not distributed with this source code in the LICENSE file, you can |
| 7 | ## obtain it at www.aomedia.org/license/software. If the Alliance for Open |
| 8 | ## Media Patent License 1.0 was not distributed with this source code in the |
| 9 | ## PATENTS file, you can obtain it at www.aomedia.org/license/patent. |
| 10 | ## |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 11 | sub av1_common_forward_decls() { |
| 12 | print <<EOF |
| 13 | /* |
| 14 | * AV1 |
| 15 | */ |
| 16 | |
| 17 | #include "aom/aom_integer.h" |
Lester Lu | 27319b6 | 2017-07-10 16:57:15 -0700 | [diff] [blame] | 18 | #include "aom_dsp/txfm_common.h" |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 19 | #include "av1/common/common.h" |
| 20 | #include "av1/common/enums.h" |
| 21 | #include "av1/common/quant_common.h" |
| 22 | #include "av1/common/filter.h" |
Angie Chiang | 674bffd | 2017-01-11 16:15:55 -0800 | [diff] [blame] | 23 | #include "av1/common/convolve.h" |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 24 | #include "av1/common/av1_txfm.h" |
Rostislav Pehlivanov | c760697 | 2017-03-20 17:34:35 +0000 | [diff] [blame] | 25 | #include "av1/common/odintrin.h" |
Rupert Swarbrick | 1392786 | 2017-11-22 14:35:34 +0000 | [diff] [blame] | 26 | #include "av1/common/restoration.h" |
Rupert Swarbrick | 1392786 | 2017-11-22 14:35:34 +0000 | [diff] [blame] | 27 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 28 | struct macroblockd; |
| 29 | |
| 30 | /* Encoder forward decls */ |
| 31 | struct macroblock; |
Lester Lu | 27319b6 | 2017-07-10 16:57:15 -0700 | [diff] [blame] | 32 | struct txfm_param; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 33 | struct aom_variance_vtable; |
| 34 | struct search_site_config; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 35 | struct yv12_buffer_config; |
David Turner | 486cc98 | 2018-11-09 15:48:58 +0000 | [diff] [blame] | 36 | struct NN_CONFIG; |
| 37 | typedef struct NN_CONFIG NN_CONFIG; |
Luc Trudeau | 48f4b23 | 2018-02-21 17:01:14 -0500 | [diff] [blame] | 38 | |
Luc Trudeau | 48f4b23 | 2018-02-21 17:01:14 -0500 | [diff] [blame] | 39 | /* Function pointers return by CfL functions */ |
| 40 | typedef void (*cfl_subsample_lbd_fn)(const uint8_t *input, int input_stride, |
Luc Trudeau | 1f43117 | 2018-05-10 11:37:23 -0400 | [diff] [blame] | 41 | uint16_t *output_q3); |
Luc Trudeau | 48f4b23 | 2018-02-21 17:01:14 -0500 | [diff] [blame] | 42 | |
| 43 | typedef void (*cfl_subsample_hbd_fn)(const uint16_t *input, int input_stride, |
Luc Trudeau | 1f43117 | 2018-05-10 11:37:23 -0400 | [diff] [blame] | 44 | uint16_t *output_q3); |
Luc Trudeau | 48f4b23 | 2018-02-21 17:01:14 -0500 | [diff] [blame] | 45 | |
Luc Trudeau | 1f43117 | 2018-05-10 11:37:23 -0400 | [diff] [blame] | 46 | typedef void (*cfl_subtract_average_fn)(const uint16_t *src, int16_t *dst); |
Luc Trudeau | 48f4b23 | 2018-02-21 17:01:14 -0500 | [diff] [blame] | 47 | |
Luc Trudeau | 8a19211 | 2018-05-09 22:38:28 -0400 | [diff] [blame] | 48 | typedef void (*cfl_predict_lbd_fn)(const int16_t *src, uint8_t *dst, |
Luc Trudeau | e0cd722 | 2018-03-07 13:53:07 -0500 | [diff] [blame] | 49 | int dst_stride, int alpha_q3); |
Luc Trudeau | 48f4b23 | 2018-02-21 17:01:14 -0500 | [diff] [blame] | 50 | |
Luc Trudeau | 8a19211 | 2018-05-09 22:38:28 -0400 | [diff] [blame] | 51 | typedef void (*cfl_predict_hbd_fn)(const int16_t *src, uint16_t *dst, |
Luc Trudeau | e0cd722 | 2018-03-07 13:53:07 -0500 | [diff] [blame] | 52 | int dst_stride, int alpha_q3, int bd); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 53 | EOF |
| 54 | } |
| 55 | forward_decls qw/av1_common_forward_decls/; |
| 56 | |
| 57 | # functions that are 64 bit only. |
| 58 | $mmx_x86_64 = $sse2_x86_64 = $ssse3_x86_64 = $avx_x86_64 = $avx2_x86_64 = ''; |
| 59 | if ($opts{arch} eq "x86_64") { |
| 60 | $mmx_x86_64 = 'mmx'; |
| 61 | $sse2_x86_64 = 'sse2'; |
| 62 | $ssse3_x86_64 = 'ssse3'; |
| 63 | $avx_x86_64 = 'avx'; |
| 64 | $avx2_x86_64 = 'avx2'; |
| 65 | } |
| 66 | |
Yaowu Xu | 028380e | 2018-04-02 10:45:02 -0700 | [diff] [blame] | 67 | add_proto qw/void av1_convolve_horiz_rs/, "const uint8_t *src, int src_stride, uint8_t *dst, int dst_stride, int w, int h, const int16_t *x_filters, int x0_qn, int x_step_qn"; |
Debargha Mukherjee | 3a4959f | 2018-02-26 15:34:03 -0800 | [diff] [blame] | 68 | specialize qw/av1_convolve_horiz_rs sse4_1/; |
Yaowu Xu | d3e7c68 | 2017-12-21 14:08:25 -0800 | [diff] [blame] | 69 | |
Yaowu Xu | 028380e | 2018-04-02 10:45:02 -0700 | [diff] [blame] | 70 | add_proto qw/void av1_highbd_convolve_horiz_rs/, "const uint16_t *src, int src_stride, uint16_t *dst, int dst_stride, int w, int h, const int16_t *x_filters, int x0_qn, int x_step_qn, int bd"; |
Debargha Mukherjee | 3a4959f | 2018-02-26 15:34:03 -0800 | [diff] [blame] | 71 | specialize qw/av1_highbd_convolve_horiz_rs sse4_1/; |
Debargha Mukherjee | 9713744 | 2017-11-01 10:36:02 -0700 | [diff] [blame] | 72 | |
Debargha Mukherjee | 568e9ee | 2018-03-14 18:34:50 -0700 | [diff] [blame] | 73 | add_proto qw/void av1_wiener_convolve_add_src/, "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, const ConvolveParams *conv_params"; |
Debargha Mukherjee | e6ceeec | 2018-03-11 18:21:52 -0700 | [diff] [blame] | 74 | |
Debargha Mukherjee | 568e9ee | 2018-03-14 18:34:50 -0700 | [diff] [blame] | 75 | add_proto qw/void av1_highbd_wiener_convolve_add_src/, "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, const ConvolveParams *conv_params, int bps"; |
Debargha Mukherjee | e6ceeec | 2018-03-11 18:21:52 -0700 | [diff] [blame] | 76 | |
Sanampudi Venkata Rao | 7c9746d | 2018-05-17 12:26:13 +0530 | [diff] [blame] | 77 | specialize qw/av1_wiener_convolve_add_src sse2 avx2 neon/; |
Debargha Mukherjee | 568e9ee | 2018-03-14 18:34:50 -0700 | [diff] [blame] | 78 | specialize qw/av1_highbd_wiener_convolve_add_src ssse3/; |
| 79 | specialize qw/av1_highbd_wiener_convolve_add_src avx2/; |
Debargha Mukherjee | e6ceeec | 2018-03-11 18:21:52 -0700 | [diff] [blame] | 80 | |
Xing Jin | 37ee03b | 2018-07-25 10:15:42 +0800 | [diff] [blame] | 81 | |
Hui Su | b1d534a | 2018-02-27 16:02:00 -0800 | [diff] [blame] | 82 | # directional intra predictor functions |
Yaowu Xu | 299577c | 2018-02-28 15:57:22 -0800 | [diff] [blame] | 83 | add_proto qw/void av1_dr_prediction_z1/, "uint8_t *dst, ptrdiff_t stride, int bw, int bh, const uint8_t *above, const uint8_t *left, int upsample_above, int dx, int dy"; |
Victoria Zhislina | e08559f | 2018-12-10 14:37:49 +0300 | [diff] [blame^] | 84 | specialize qw/av1_dr_prediction_z1 avx2/; |
Yaowu Xu | 299577c | 2018-02-28 15:57:22 -0800 | [diff] [blame] | 85 | add_proto qw/void av1_dr_prediction_z2/, "uint8_t *dst, ptrdiff_t stride, int bw, int bh, const uint8_t *above, const uint8_t *left, int upsample_above, int upsample_left, int dx, int dy"; |
Victoria Zhislina | e08559f | 2018-12-10 14:37:49 +0300 | [diff] [blame^] | 86 | specialize qw/av1_dr_prediction_z2 avx2/; |
Yaowu Xu | 299577c | 2018-02-28 15:57:22 -0800 | [diff] [blame] | 87 | add_proto qw/void av1_dr_prediction_z3/, "uint8_t *dst, ptrdiff_t stride, int bw, int bh, const uint8_t *above, const uint8_t *left, int upsample_left, int dx, int dy"; |
Victoria Zhislina | e08559f | 2018-12-10 14:37:49 +0300 | [diff] [blame^] | 88 | specialize qw/av1_dr_prediction_z3 avx2/; |
Hui Su | b1d534a | 2018-02-27 16:02:00 -0800 | [diff] [blame] | 89 | |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 90 | # FILTER_INTRA predictor functions |
Yue Chen | 69d9aef | 2018-02-26 17:49:59 -0800 | [diff] [blame] | 91 | add_proto qw/void av1_filter_intra_predictor/, "uint8_t *dst, ptrdiff_t stride, TX_SIZE tx_size, const uint8_t *above, const uint8_t *left, int mode"; |
| 92 | specialize qw/av1_filter_intra_predictor sse4_1/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 93 | |
| 94 | # High bitdepth functions |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 95 | |
Sebastien Alaiwan | f412363 | 2018-01-26 10:18:02 +0100 | [diff] [blame] | 96 | # |
| 97 | # Sub Pixel Filters |
| 98 | # |
| 99 | 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] | 100 | |
Sebastien Alaiwan | f412363 | 2018-01-26 10:18:02 +0100 | [diff] [blame] | 101 | 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] | 102 | |
Sebastien Alaiwan | f412363 | 2018-01-26 10:18:02 +0100 | [diff] [blame] | 103 | 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"; |
| 104 | specialize qw/av1_highbd_convolve8/, "$sse2_x86_64"; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 105 | |
Sebastien Alaiwan | f412363 | 2018-01-26 10:18:02 +0100 | [diff] [blame] | 106 | 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"; |
| 107 | specialize qw/av1_highbd_convolve8_horiz/, "$sse2_x86_64"; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 108 | |
Sebastien Alaiwan | f412363 | 2018-01-26 10:18:02 +0100 | [diff] [blame] | 109 | 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"; |
| 110 | specialize qw/av1_highbd_convolve8_vert/, "$sse2_x86_64"; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 111 | |
Yi Luo | 5128109 | 2017-06-26 16:36:15 -0700 | [diff] [blame] | 112 | #inv txfm |
Angie Chiang | 1a2f245 | 2018-02-07 19:42:13 -0800 | [diff] [blame] | 113 | add_proto qw/void av1_inv_txfm_add/, "const tran_low_t *dqcoeff, uint8_t *dst, int stride, const TxfmParam *txfm_param"; |
Venkat | 000f2f6 | 2018-07-05 12:03:05 +0530 | [diff] [blame] | 114 | specialize qw/av1_inv_txfm_add ssse3 avx2 neon/; |
Angie Chiang | 1a2f245 | 2018-02-07 19:42:13 -0800 | [diff] [blame] | 115 | |
Venkat | d3d6845 | 2018-08-08 12:14:45 +0530 | [diff] [blame] | 116 | add_proto qw/void av1_highbd_inv_txfm_add/, "const tran_low_t *dqcoeff, uint8_t *dst, int stride, const TxfmParam *txfm_param"; |
| 117 | specialize qw/av1_highbd_inv_txfm_add sse4_1 avx2/; |
| 118 | |
| 119 | add_proto qw/void av1_highbd_inv_txfm_add_4x4/, "const tran_low_t *dqcoeff, uint8_t *dst, int stride, const TxfmParam *txfm_param"; |
| 120 | specialize qw/av1_highbd_inv_txfm_add_4x4 sse4_1/; |
| 121 | add_proto qw/void av1_highbd_inv_txfm_add_8x8/, "const tran_low_t *dqcoeff, uint8_t *dst, int stride, const TxfmParam *txfm_param"; |
Aniket Dhok | 0d851be | 2018-12-11 14:30:21 +0530 | [diff] [blame] | 122 | specialize qw/av1_highbd_inv_txfm_add_8x8 sse4_1/; |
Remya | a563302 | 2018-09-21 14:59:26 +0530 | [diff] [blame] | 123 | add_proto qw/void av1_highbd_inv_txfm_add_4x8/, "const tran_low_t *dqcoeff, uint8_t *dst, int stride, const TxfmParam *txfm_param"; |
| 124 | specialize qw/av1_highbd_inv_txfm_add_4x8 sse4_1/; |
| 125 | add_proto qw/void av1_highbd_inv_txfm_add_8x4/, "const tran_low_t *dqcoeff, uint8_t *dst, int stride, const TxfmParam *txfm_param"; |
| 126 | specialize qw/av1_highbd_inv_txfm_add_8x4 sse4_1/; |
Remya | ffe7ae7 | 2018-09-24 19:59:00 +0530 | [diff] [blame] | 127 | add_proto qw/void av1_highbd_inv_txfm_add_4x16/, "const tran_low_t *dqcoeff, uint8_t *dst, int stride, const TxfmParam *txfm_param"; |
| 128 | specialize qw/av1_highbd_inv_txfm_add_4x16 sse4_1/; |
| 129 | add_proto qw/void av1_highbd_inv_txfm_add_16x4/, "const tran_low_t *dqcoeff, uint8_t *dst, int stride, const TxfmParam *txfm_param"; |
| 130 | specialize qw/av1_highbd_inv_txfm_add_16x4 sse4_1/; |
Venkat | d3d6845 | 2018-08-08 12:14:45 +0530 | [diff] [blame] | 131 | |
Angie Chiang | 8c489a8 | 2018-05-15 16:07:30 -0700 | [diff] [blame] | 132 | add_proto qw/void av1_highbd_iwht4x4_1_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int bd"; |
| 133 | add_proto qw/void av1_highbd_iwht4x4_16_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride, int bd"; |
| 134 | |
Urvang Joshi | 2283d37 | 2017-10-02 17:16:45 -0700 | [diff] [blame] | 135 | add_proto qw/void av1_inv_txfm2d_add_4x8/, "const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type, int bd"; |
| 136 | add_proto qw/void av1_inv_txfm2d_add_8x4/, "const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type, int bd"; |
| 137 | add_proto qw/void av1_inv_txfm2d_add_8x16/, "const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type, int bd"; |
| 138 | add_proto qw/void av1_inv_txfm2d_add_16x8/, "const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type, int bd"; |
| 139 | add_proto qw/void av1_inv_txfm2d_add_16x32/, "const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type, int bd"; |
| 140 | add_proto qw/void av1_inv_txfm2d_add_32x16/, "const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type, int bd"; |
| 141 | add_proto qw/void av1_inv_txfm2d_add_4x4/, "const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type, int bd"; |
Sebastien Alaiwan | f412363 | 2018-01-26 10:18:02 +0100 | [diff] [blame] | 142 | specialize qw/av1_inv_txfm2d_add_4x4 sse4_1/; |
Urvang Joshi | 2283d37 | 2017-10-02 17:16:45 -0700 | [diff] [blame] | 143 | add_proto qw/void av1_inv_txfm2d_add_8x8/, "const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type, int bd"; |
Sebastien Alaiwan | f412363 | 2018-01-26 10:18:02 +0100 | [diff] [blame] | 144 | specialize qw/av1_inv_txfm2d_add_8x8 sse4_1/; |
Urvang Joshi | 2283d37 | 2017-10-02 17:16:45 -0700 | [diff] [blame] | 145 | add_proto qw/void av1_inv_txfm2d_add_16x16/, "const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type, int bd"; |
Urvang Joshi | 2283d37 | 2017-10-02 17:16:45 -0700 | [diff] [blame] | 146 | add_proto qw/void av1_inv_txfm2d_add_32x32/, "const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type, int bd"; |
Sebastien Alaiwan | f412363 | 2018-01-26 10:18:02 +0100 | [diff] [blame] | 147 | |
Sebastien Alaiwan | 5009730 | 2018-03-15 10:29:38 +0100 | [diff] [blame] | 148 | add_proto qw/void av1_inv_txfm2d_add_64x64/, "const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type, int bd"; |
| 149 | add_proto qw/void av1_inv_txfm2d_add_32x64/, "const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type, int bd"; |
| 150 | add_proto qw/void av1_inv_txfm2d_add_64x32/, "const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type, int bd"; |
| 151 | add_proto qw/void av1_inv_txfm2d_add_16x64/, "const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type, int bd"; |
| 152 | add_proto qw/void av1_inv_txfm2d_add_64x16/, "const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type, int bd"; |
Yaowu Xu | d3d4159 | 2018-02-14 13:26:52 -0800 | [diff] [blame] | 153 | |
Debargha Mukherjee | 845057f | 2017-11-13 07:03:36 -0800 | [diff] [blame] | 154 | add_proto qw/void av1_inv_txfm2d_add_4x16/, "const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type, int bd"; |
| 155 | add_proto qw/void av1_inv_txfm2d_add_16x4/, "const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type, int bd"; |
| 156 | add_proto qw/void av1_inv_txfm2d_add_8x32/, "const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type, int bd"; |
| 157 | add_proto qw/void av1_inv_txfm2d_add_32x8/, "const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type, int bd"; |
Yunqing Wang | 8036058 | 2017-03-28 17:17:23 -0700 | [diff] [blame] | 158 | |
Hui Su | b1d534a | 2018-02-27 16:02:00 -0800 | [diff] [blame] | 159 | # directional intra predictor functions |
Yaowu Xu | 299577c | 2018-02-28 15:57:22 -0800 | [diff] [blame] | 160 | add_proto qw/void av1_highbd_dr_prediction_z1/, "uint16_t *dst, ptrdiff_t stride, int bw, int bh, const uint16_t *above, const uint16_t *left, int upsample_above, int dx, int dy, int bd"; |
Victoria Zhislina | 1468e60 | 2018-10-31 18:38:28 +0300 | [diff] [blame] | 161 | specialize qw/av1_highbd_dr_prediction_z1 avx2/; |
Yaowu Xu | 299577c | 2018-02-28 15:57:22 -0800 | [diff] [blame] | 162 | add_proto qw/void av1_highbd_dr_prediction_z2/, "uint16_t *dst, ptrdiff_t stride, int bw, int bh, const uint16_t *above, const uint16_t *left, int upsample_above, int upsample_left, int dx, int dy, int bd"; |
Victoria Zhislina | e08559f | 2018-12-10 14:37:49 +0300 | [diff] [blame^] | 163 | specialize qw/av1_highbd_dr_prediction_z2 avx2/; |
Yaowu Xu | 299577c | 2018-02-28 15:57:22 -0800 | [diff] [blame] | 164 | add_proto qw/void av1_highbd_dr_prediction_z3/, "uint16_t *dst, ptrdiff_t stride, int bw, int bh, const uint16_t *above, const uint16_t *left, int upsample_left, int dx, int dy, int bd"; |
Victoria Zhislina | 1468e60 | 2018-10-31 18:38:28 +0300 | [diff] [blame] | 165 | specialize qw/av1_highbd_dr_prediction_z3 avx2/; |
Hui Su | b1d534a | 2018-02-27 16:02:00 -0800 | [diff] [blame] | 166 | |
Peng Bin | b356cdd | 2018-04-04 13:09:58 +0800 | [diff] [blame] | 167 | # build compound seg mask functions |
| 168 | add_proto qw/void av1_build_compound_diffwtd_mask/, "uint8_t *mask, DIFFWTD_MASK_TYPE mask_type, const uint8_t *src0, int src0_stride, const uint8_t *src1, int src1_stride, int h, int w"; |
Xing Jin | aa218b2 | 2018-08-22 13:24:59 +0800 | [diff] [blame] | 169 | specialize qw/av1_build_compound_diffwtd_mask sse4_1 avx2/; |
Katsuhisa Yuasa | 09deb32 | 2018-04-16 02:10:35 +0900 | [diff] [blame] | 170 | |
| 171 | add_proto qw/void av1_build_compound_diffwtd_mask_highbd/, "uint8_t *mask, DIFFWTD_MASK_TYPE mask_type, const uint8_t *src0, int src0_stride, const uint8_t *src1, int src1_stride, int h, int w, int bd"; |
| 172 | specialize qw/av1_build_compound_diffwtd_mask_highbd ssse3 avx2/; |
| 173 | |
Ravi Chaudhary | ea665b0 | 2018-04-10 18:39:47 +0530 | [diff] [blame] | 174 | add_proto qw/void av1_build_compound_diffwtd_mask_d16/, "uint8_t *mask, DIFFWTD_MASK_TYPE mask_type, const CONV_BUF_TYPE *src0, int src0_stride, const CONV_BUF_TYPE *src1, int src1_stride, int h, int w, ConvolveParams *conv_params, int bd"; |
Xing Jin | aa218b2 | 2018-08-22 13:24:59 +0800 | [diff] [blame] | 175 | specialize qw/av1_build_compound_diffwtd_mask_d16 sse4_1 avx2 neon/; |
Peng Bin | b356cdd | 2018-04-04 13:09:58 +0800 | [diff] [blame] | 176 | |
Johann | 98dae94 | 2018-12-07 10:38:47 -0800 | [diff] [blame] | 177 | # Helper functions. |
| 178 | add_proto qw/void av1_round_shift_array/, "int32_t *arr, int size, int bit"; |
| 179 | specialize "av1_round_shift_array", qw/sse4_1 neon/; |
| 180 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 181 | # |
| 182 | # Encoder functions below this point. |
| 183 | # |
| 184 | if (aom_config("CONFIG_AV1_ENCODER") eq "yes") { |
| 185 | |
James Zern | 1512fa9 | 2017-09-26 20:53:11 -0700 | [diff] [blame] | 186 | # ENCODEMB INVOKE |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 187 | |
Sebastien Alaiwan | f412363 | 2018-01-26 10:18:02 +0100 | [diff] [blame] | 188 | # the transform coefficients are held in 32-bit |
| 189 | # values, so the assembler code for av1_block_error can no longer be used. |
| 190 | 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"; |
| 191 | specialize qw/av1_block_error avx2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 192 | |
Peng Bin | 437cbae | 2018-04-19 20:39:22 +0800 | [diff] [blame] | 193 | add_proto qw/void av1_quantize_fp/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, 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"; |
Sebastien Alaiwan | f412363 | 2018-01-26 10:18:02 +0100 | [diff] [blame] | 194 | specialize qw/av1_quantize_fp sse2 avx2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 195 | |
Peng Bin | 437cbae | 2018-04-19 20:39:22 +0800 | [diff] [blame] | 196 | add_proto qw/void av1_quantize_fp_32x32/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, 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"; |
Sebastien Alaiwan | f412363 | 2018-01-26 10:18:02 +0100 | [diff] [blame] | 197 | specialize qw/av1_quantize_fp_32x32 avx2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 198 | |
Peng Bin | 437cbae | 2018-04-19 20:39:22 +0800 | [diff] [blame] | 199 | add_proto qw/void av1_quantize_fp_64x64/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, 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"; |
Peng Bin | 3cfd805 | 2018-04-18 12:59:50 +0800 | [diff] [blame] | 200 | specialize qw/av1_quantize_fp_64x64 avx2/; |
Sebastien Alaiwan | f412363 | 2018-01-26 10:18:02 +0100 | [diff] [blame] | 201 | |
James Zern | 1512fa9 | 2017-09-26 20:53:11 -0700 | [diff] [blame] | 202 | # fdct functions |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 203 | |
James Zern | 1512fa9 | 2017-09-26 20:53:11 -0700 | [diff] [blame] | 204 | add_proto qw/void av1_fwht4x4/, "const int16_t *input, tran_low_t *output, int stride"; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 205 | |
James Zern | 1512fa9 | 2017-09-26 20:53:11 -0700 | [diff] [blame] | 206 | #fwd txfm |
Angie Chiang | 7d8b13e | 2018-02-07 22:55:45 -0800 | [diff] [blame] | 207 | add_proto qw/void av1_lowbd_fwd_txfm/, "const int16_t *src_diff, tran_low_t *coeff, int diff_stride, TxfmParam *txfm_param"; |
Xing Jin | 354773c | 2018-06-27 11:18:46 +0800 | [diff] [blame] | 208 | specialize qw/av1_lowbd_fwd_txfm sse2 sse4_1 avx2/; |
Angie Chiang | 7d8b13e | 2018-02-07 22:55:45 -0800 | [diff] [blame] | 209 | |
Urvang Joshi | 2283d37 | 2017-10-02 17:16:45 -0700 | [diff] [blame] | 210 | add_proto qw/void av1_fwd_txfm2d_4x8/, "const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int bd"; |
Satish Kumar Suman | 46fdae4 | 2018-09-28 09:38:02 +0530 | [diff] [blame] | 211 | specialize qw/av1_fwd_txfm2d_4x8 sse4_1/; |
Urvang Joshi | 2283d37 | 2017-10-02 17:16:45 -0700 | [diff] [blame] | 212 | add_proto qw/void av1_fwd_txfm2d_8x4/, "const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int bd"; |
Satish Kumar Suman | 46fdae4 | 2018-09-28 09:38:02 +0530 | [diff] [blame] | 213 | specialize qw/av1_fwd_txfm2d_8x4 sse4_1/; |
Urvang Joshi | 2283d37 | 2017-10-02 17:16:45 -0700 | [diff] [blame] | 214 | add_proto qw/void av1_fwd_txfm2d_8x16/, "const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int bd"; |
Venkat | d04f6c5 | 2018-09-12 10:42:33 +0530 | [diff] [blame] | 215 | specialize qw/av1_fwd_txfm2d_8x16 sse4_1/; |
Urvang Joshi | 2283d37 | 2017-10-02 17:16:45 -0700 | [diff] [blame] | 216 | add_proto qw/void av1_fwd_txfm2d_16x8/, "const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int bd"; |
Venkat | d04f6c5 | 2018-09-12 10:42:33 +0530 | [diff] [blame] | 217 | specialize qw/av1_fwd_txfm2d_16x8 sse4_1/; |
Urvang Joshi | 2283d37 | 2017-10-02 17:16:45 -0700 | [diff] [blame] | 218 | add_proto qw/void av1_fwd_txfm2d_16x32/, "const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int bd"; |
Satish Kumar Suman | 35012f9 | 2018-09-21 09:56:11 +0530 | [diff] [blame] | 219 | specialize qw/av1_fwd_txfm2d_16x32 sse4_1/; |
Urvang Joshi | 2283d37 | 2017-10-02 17:16:45 -0700 | [diff] [blame] | 220 | add_proto qw/void av1_fwd_txfm2d_32x16/, "const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int bd"; |
Satish Kumar Suman | 35012f9 | 2018-09-21 09:56:11 +0530 | [diff] [blame] | 221 | specialize qw/av1_fwd_txfm2d_32x16 sse4_1/; |
Debargha Mukherjee | 69f914a | 2017-11-15 20:58:23 -0800 | [diff] [blame] | 222 | add_proto qw/void av1_fwd_txfm2d_4x16/, "const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int bd"; |
Satish Kumar Suman | 46fdae4 | 2018-09-28 09:38:02 +0530 | [diff] [blame] | 223 | specialize qw/av1_fwd_txfm2d_4x16 sse4_1/; |
Debargha Mukherjee | 69f914a | 2017-11-15 20:58:23 -0800 | [diff] [blame] | 224 | add_proto qw/void av1_fwd_txfm2d_16x4/, "const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int bd"; |
Satish Kumar Suman | 46fdae4 | 2018-09-28 09:38:02 +0530 | [diff] [blame] | 225 | specialize qw/av1_fwd_txfm2d_16x4 sse4_1/; |
Debargha Mukherjee | 69f914a | 2017-11-15 20:58:23 -0800 | [diff] [blame] | 226 | add_proto qw/void av1_fwd_txfm2d_8x32/, "const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int bd"; |
Satish Kumar Suman | b2d5d86 | 2018-09-25 11:22:20 +0530 | [diff] [blame] | 227 | specialize qw/av1_fwd_txfm2d_8x32 sse4_1/; |
Debargha Mukherjee | 69f914a | 2017-11-15 20:58:23 -0800 | [diff] [blame] | 228 | add_proto qw/void av1_fwd_txfm2d_32x8/, "const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int bd"; |
Satish Kumar Suman | b2d5d86 | 2018-09-25 11:22:20 +0530 | [diff] [blame] | 229 | specialize qw/av1_fwd_txfm2d_32x8 sse4_1/; |
Urvang Joshi | 2283d37 | 2017-10-02 17:16:45 -0700 | [diff] [blame] | 230 | add_proto qw/void av1_fwd_txfm2d_4x4/, "const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int bd"; |
Sebastien Alaiwan | f412363 | 2018-01-26 10:18:02 +0100 | [diff] [blame] | 231 | specialize qw/av1_fwd_txfm2d_4x4 sse4_1/; |
Urvang Joshi | 2283d37 | 2017-10-02 17:16:45 -0700 | [diff] [blame] | 232 | add_proto qw/void av1_fwd_txfm2d_8x8/, "const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int bd"; |
Sebastien Alaiwan | f412363 | 2018-01-26 10:18:02 +0100 | [diff] [blame] | 233 | specialize qw/av1_fwd_txfm2d_8x8 sse4_1/; |
Urvang Joshi | 2283d37 | 2017-10-02 17:16:45 -0700 | [diff] [blame] | 234 | add_proto qw/void av1_fwd_txfm2d_16x16/, "const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int bd"; |
Sebastien Alaiwan | f412363 | 2018-01-26 10:18:02 +0100 | [diff] [blame] | 235 | specialize qw/av1_fwd_txfm2d_16x16 sse4_1/; |
Urvang Joshi | 2283d37 | 2017-10-02 17:16:45 -0700 | [diff] [blame] | 236 | add_proto qw/void av1_fwd_txfm2d_32x32/, "const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int bd"; |
Sebastien Alaiwan | f412363 | 2018-01-26 10:18:02 +0100 | [diff] [blame] | 237 | specialize qw/av1_fwd_txfm2d_32x32 sse4_1/; |
Debargha Mukherjee | 2b43501 | 2017-09-28 08:30:35 -0700 | [diff] [blame] | 238 | |
Sebastien Alaiwan | 5009730 | 2018-03-15 10:29:38 +0100 | [diff] [blame] | 239 | add_proto qw/void av1_fwd_txfm2d_64x64/, "const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int bd"; |
Satish Kumar Suman | fd5aae4 | 2018-09-17 18:10:04 +0530 | [diff] [blame] | 240 | specialize qw/av1_fwd_txfm2d_64x64 sse4_1/; |
Sebastien Alaiwan | 5009730 | 2018-03-15 10:29:38 +0100 | [diff] [blame] | 241 | add_proto qw/void av1_fwd_txfm2d_32x64/, "const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int bd"; |
Satish Kumar Suman | 0252600 | 2018-10-17 17:51:49 +0530 | [diff] [blame] | 242 | specialize qw/av1_fwd_txfm2d_32x64 sse4_1/; |
Sebastien Alaiwan | 5009730 | 2018-03-15 10:29:38 +0100 | [diff] [blame] | 243 | add_proto qw/void av1_fwd_txfm2d_64x32/, "const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int bd"; |
Satish Kumar Suman | 0252600 | 2018-10-17 17:51:49 +0530 | [diff] [blame] | 244 | specialize qw/av1_fwd_txfm2d_64x32 sse4_1/; |
Sebastien Alaiwan | 5009730 | 2018-03-15 10:29:38 +0100 | [diff] [blame] | 245 | add_proto qw/void av1_fwd_txfm2d_16x64/, "const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int bd"; |
Satish Kumar Suman | 0252600 | 2018-10-17 17:51:49 +0530 | [diff] [blame] | 246 | specialize qw/av1_fwd_txfm2d_16x64 sse4_1/; |
Sebastien Alaiwan | 5009730 | 2018-03-15 10:29:38 +0100 | [diff] [blame] | 247 | add_proto qw/void av1_fwd_txfm2d_64x16/, "const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int bd"; |
Satish Kumar Suman | 0252600 | 2018-10-17 17:51:49 +0530 | [diff] [blame] | 248 | specialize qw/av1_fwd_txfm2d_64x16 sse4_1/; |
Yaowu Xu | d3d4159 | 2018-02-14 13:26:52 -0800 | [diff] [blame] | 249 | |
James Zern | 1512fa9 | 2017-09-26 20:53:11 -0700 | [diff] [blame] | 250 | # |
| 251 | # Motion search |
| 252 | # |
Sebastien Alaiwan | 84ed5f9 | 2018-04-25 16:36:53 +0200 | [diff] [blame] | 253 | add_proto qw/int av1_diamond_search_sad/, "struct macroblock *x, const struct search_site_config *cfg, MV *ref_mv, MV *best_mv, int search_param, int sad_per_bit, int *num00, const struct aom_variance_vtable *fn_ptr, const MV *center_mv"; |
Yi Luo | 0f4195c | 2017-06-27 16:07:28 -0700 | [diff] [blame] | 254 | |
Sebastien Alaiwan | 84ed5f9 | 2018-04-25 16:36:53 +0200 | [diff] [blame] | 255 | add_proto qw/int av1_full_range_search/, "const struct macroblock *x, const struct search_site_config *cfg, MV *ref_mv, MV *best_mv, int search_param, int sad_per_bit, int *num00, const struct aom_variance_vtable *fn_ptr, const MV *center_mv"; |
Yi Luo | 0f4195c | 2017-06-27 16:07:28 -0700 | [diff] [blame] | 256 | |
Yunqing Wang | fe5fefc | 2018-12-11 10:08:58 -0800 | [diff] [blame] | 257 | # TODO(yunqing): Add back the optimizations. |
| 258 | # 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"; |
| 259 | # specialize qw/av1_temporal_filter_apply sse2 msa/; |
Yi Luo | 0f4195c | 2017-06-27 16:07:28 -0700 | [diff] [blame] | 260 | |
Peng Bin | f36be56 | 2018-09-07 15:28:46 +0800 | [diff] [blame] | 261 | add_proto qw/void av1_quantize_b/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, 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] | 262 | |
Sebastien Alaiwan | f412363 | 2018-01-26 10:18:02 +0100 | [diff] [blame] | 263 | # ENCODEMB INVOKE |
James Zern | 1512fa9 | 2017-09-26 20:53:11 -0700 | [diff] [blame] | 264 | |
Sebastien Alaiwan | f412363 | 2018-01-26 10:18:02 +0100 | [diff] [blame] | 265 | 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"; |
| 266 | specialize qw/av1_highbd_block_error sse2/; |
James Zern | 1512fa9 | 2017-09-26 20:53:11 -0700 | [diff] [blame] | 267 | |
Yunqing Wang | fe5fefc | 2018-12-11 10:08:58 -0800 | [diff] [blame] | 268 | # 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"; |
James Zern | 1512fa9 | 2017-09-26 20:53:11 -0700 | [diff] [blame] | 269 | |
Peng Bin | 0dcd23c | 2018-04-19 21:42:30 +0800 | [diff] [blame] | 270 | add_proto qw/void av1_highbd_quantize_fp/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, 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"; |
James Zern | 1512fa9 | 2017-09-26 20:53:11 -0700 | [diff] [blame] | 271 | specialize qw/av1_highbd_quantize_fp sse4_1 avx2/; |
| 272 | |
| 273 | add_proto qw/void av1_highbd_fwht4x4/, "const int16_t *input, tran_low_t *output, int stride"; |
| 274 | |
| 275 | # End av1_high encoder functions |
| 276 | |
Linfeng Zhang | 0ba23e8 | 2017-12-20 16:27:28 -0800 | [diff] [blame] | 277 | # txb |
Katsuhisa Yuasa | 55c95f8 | 2018-04-03 00:51:22 +0900 | [diff] [blame] | 278 | add_proto qw/void av1_get_nz_map_contexts/, "const uint8_t *const levels, const int16_t *const scan, const uint16_t eob, const TX_SIZE tx_size, const TX_CLASS tx_class, int8_t *const coeff_contexts"; |
Sebastien Alaiwan | 5009730 | 2018-03-15 10:29:38 +0100 | [diff] [blame] | 279 | specialize qw/av1_get_nz_map_contexts sse2/; |
Peng Bin | 27d7ca9 | 2018-03-22 22:25:56 +0800 | [diff] [blame] | 280 | add_proto qw/void av1_txb_init_levels/, "const tran_low_t *const coeff, const int width, const int height, uint8_t *const levels"; |
Xing Jin | a7106c3 | 2018-08-14 16:27:56 +0800 | [diff] [blame] | 281 | specialize qw/av1_txb_init_levels sse4_1 avx2/; |
Linfeng Zhang | 0ba23e8 | 2017-12-20 16:27:28 -0800 | [diff] [blame] | 282 | |
Sebastien Alaiwan | b51ef0d | 2017-09-28 11:58:42 +0200 | [diff] [blame] | 283 | add_proto qw/uint64_t av1_wedge_sse_from_residuals/, "const int16_t *r1, const int16_t *d, const uint8_t *m, int N"; |
Xing Jin | 8177488 | 2018-07-12 09:35:53 +0800 | [diff] [blame] | 284 | specialize qw/av1_wedge_sse_from_residuals sse2 avx2/; |
Sebastien Alaiwan | b51ef0d | 2017-09-28 11:58:42 +0200 | [diff] [blame] | 285 | add_proto qw/int av1_wedge_sign_from_residuals/, "const int16_t *ds, const uint8_t *m, int N, int64_t limit"; |
Xing Jin | 8177488 | 2018-07-12 09:35:53 +0800 | [diff] [blame] | 286 | specialize qw/av1_wedge_sign_from_residuals sse2 avx2/; |
Sebastien Alaiwan | b51ef0d | 2017-09-28 11:58:42 +0200 | [diff] [blame] | 287 | add_proto qw/void av1_wedge_compute_delta_squares/, "int16_t *d, const int16_t *a, const int16_t *b, int N"; |
Xing Jin | 8177488 | 2018-07-12 09:35:53 +0800 | [diff] [blame] | 288 | specialize qw/av1_wedge_compute_delta_squares sse2 avx2/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 289 | |
PENGBIN | ffda377 | 2018-02-26 17:36:37 +0800 | [diff] [blame] | 290 | # hash |
Peng Bin | 8a204cd | 2018-04-08 13:07:35 +0800 | [diff] [blame] | 291 | add_proto qw/uint32_t av1_get_crc32c_value/, "void *crc_calculator, uint8_t *p, int length"; |
| 292 | specialize qw/av1_get_crc32c_value sse4_2/; |
PENGBIN | ffda377 | 2018-02-26 17:36:37 +0800 | [diff] [blame] | 293 | |
David Turner | 9042a3c | 2018-09-20 16:47:53 +0100 | [diff] [blame] | 294 | add_proto qw/void av1_compute_stats/, "int wiener_win, const uint8_t *dgd8, const uint8_t *src8, int h_start, int h_end, int v_start, int v_end, int dgd_stride, int src_stride, int64_t *M, int64_t *H"; |
Xing Jin | 04c7c84 | 2018-07-30 17:08:30 +0800 | [diff] [blame] | 295 | specialize qw/av1_compute_stats sse4_1 avx2/; |
Xing Jin | a88f27b | 2018-07-30 16:57:53 +0800 | [diff] [blame] | 296 | |
David Turner | cfb5250 | 2018-09-25 15:38:39 +0100 | [diff] [blame] | 297 | add_proto qw/void av1_compute_stats_highbd/, "int wiener_win, const uint8_t *dgd8, const uint8_t *src8, int h_start, int h_end, int v_start, int v_end, int dgd_stride, int src_stride, int64_t *M, int64_t *H, aom_bit_depth_t bit_depth"; |
| 298 | specialize qw/av1_compute_stats_highbd sse4_1 avx2/; |
| 299 | |
Xing Jin | a88f27b | 2018-07-30 16:57:53 +0800 | [diff] [blame] | 300 | add_proto qw/int64_t av1_lowbd_pixel_proj_error/, " const uint8_t *src8, int width, int height, int src_stride, const uint8_t *dat8, int dat_stride, int32_t *flt0, int flt0_stride, int32_t *flt1, int flt1_stride, int xq[2], const sgr_params_type *params"; |
| 301 | specialize qw/av1_lowbd_pixel_proj_error sse4_1 avx2/; |
David Turner | 1c6c5ad | 2018-10-03 17:10:52 +0100 | [diff] [blame] | 302 | |
| 303 | add_proto qw/int64_t av1_highbd_pixel_proj_error/, " const uint8_t *src8, int width, int height, int src_stride, const uint8_t *dat8, int dat_stride, int32_t *flt0, int flt0_stride, int32_t *flt1, int flt1_stride, int xq[2], const sgr_params_type *params"; |
| 304 | specialize qw/av1_highbd_pixel_proj_error sse4_1 avx2/; |
David Turner | 1c573e0 | 2018-10-19 11:49:53 +0100 | [diff] [blame] | 305 | |
| 306 | add_proto qw/void av1_get_horver_correlation_full/, " const int16_t *diff, int stride, int w, int h, float *hcorr, float *vcorr"; |
| 307 | specialize qw/av1_get_horver_correlation_full sse4_1 avx2/; |
David Turner | 486cc98 | 2018-11-09 15:48:58 +0000 | [diff] [blame] | 308 | |
| 309 | add_proto qw/void av1_nn_predict/, " const float *input_nodes, const NN_CONFIG *const nn_config, float *const output"; |
| 310 | specialize qw/av1_nn_predict sse3/; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 311 | } |
| 312 | # end encoder functions |
Michael Bebenita | 7227b65 | 2016-10-06 14:27:34 -0700 | [diff] [blame] | 313 | |
| 314 | # Deringing Functions |
| 315 | |
Frederic Barbier | 1aeee2e | 2017-11-10 17:54:22 +0100 | [diff] [blame] | 316 | add_proto qw/int cdef_find_dir/, "const uint16_t *img, int stride, int32_t *var, int coeff_shift"; |
Johann | 83607dc | 2018-11-02 11:50:31 -0700 | [diff] [blame] | 317 | add_proto qw/void cdef_filter_block/, "uint8_t *dst8, uint16_t *dst16, int dstride, const uint16_t *in, int pri_strength, int sec_strength, int dir, int pri_damping, int sec_damping, int bsize, int coeff_shift"; |
Frederic Barbier | 1aeee2e | 2017-11-10 17:54:22 +0100 | [diff] [blame] | 318 | |
| 319 | add_proto qw/void copy_rect8_8bit_to_16bit/, "uint16_t *dst, int dstride, const uint8_t *src, int sstride, int v, int h"; |
| 320 | add_proto qw/void copy_rect8_16bit_to_16bit/, "uint16_t *dst, int dstride, const uint16_t *src, int sstride, int v, int h"; |
| 321 | |
| 322 | # VS compiling for 32 bit targets does not support vector types in |
| 323 | # structs as arguments, which makes the v256 type of the intrinsics |
| 324 | # hard to support, so optimizations for this target are disabled. |
| 325 | if ($opts{config} !~ /libs-x86-win32-vs.*/) { |
Steinar Midtskogen | 8322ff0 | 2017-12-20 15:39:52 +0100 | [diff] [blame] | 326 | specialize qw/cdef_find_dir sse2 ssse3 sse4_1 avx2 neon/; |
| 327 | specialize qw/cdef_filter_block sse2 ssse3 sse4_1 avx2 neon/; |
| 328 | specialize qw/copy_rect8_8bit_to_16bit sse2 ssse3 sse4_1 avx2 neon/; |
| 329 | specialize qw/copy_rect8_16bit_to_16bit sse2 ssse3 sse4_1 avx2 neon/; |
Michael Bebenita | 7227b65 | 2016-10-06 14:27:34 -0700 | [diff] [blame] | 330 | } |
| 331 | |
David Barker | d5dfa96 | 2017-01-10 15:06:08 +0000 | [diff] [blame] | 332 | # WARPED_MOTION / GLOBAL_MOTION functions |
| 333 | |
Sebastien Alaiwan | 4879580 | 2017-10-30 12:07:13 +0100 | [diff] [blame] | 334 | 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, ConvolveParams *conv_params, int16_t alpha, int16_t beta, int16_t gamma, int16_t delta"; |
Remya | 2c893e6 | 2018-08-08 17:54:06 +0530 | [diff] [blame] | 335 | specialize qw/av1_warp_affine sse4_1 neon/; |
David Barker | 2bcf280 | 2017-04-05 11:44:31 +0100 | [diff] [blame] | 336 | |
Sebastien Alaiwan | 5009730 | 2018-03-15 10:29:38 +0100 | [diff] [blame] | 337 | 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, ConvolveParams *conv_params, int16_t alpha, int16_t beta, int16_t gamma, int16_t delta"; |
| 338 | specialize qw/av1_highbd_warp_affine sse4_1/; |
David Barker | d5dfa96 | 2017-01-10 15:06:08 +0000 | [diff] [blame] | 339 | |
Sebastien Alaiwan | 4879580 | 2017-10-30 12:07:13 +0100 | [diff] [blame] | 340 | if (aom_config("CONFIG_AV1_ENCODER") eq "yes") { |
David Barker | ee67432 | 2017-05-10 15:43:02 +0100 | [diff] [blame] | 341 | 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"; |
Aniket Dhok | cc0cc71 | 2018-12-18 12:33:30 +0530 | [diff] [blame] | 342 | specialize qw/compute_cross_correlation sse4_1 avx2/; |
David Barker | ee67432 | 2017-05-10 15:43:02 +0100 | [diff] [blame] | 343 | } |
| 344 | |
David Barker | ce110cc | 2017-02-22 10:38:59 +0000 | [diff] [blame] | 345 | # LOOP_RESTORATION functions |
| 346 | |
Debargha Mukherjee | 0d639a9 | 2018-02-26 14:54:55 -0800 | [diff] [blame] | 347 | add_proto qw/void apply_selfguided_restoration/, "const uint8_t *dat, int width, int height, int stride, int eps, const int *xqd, uint8_t *dst, int dst_stride, int32_t *tmpbuf, int bit_depth, int highbd"; |
Venkat | 0350496 | 2018-06-26 08:41:26 +0530 | [diff] [blame] | 348 | specialize qw/apply_selfguided_restoration sse4_1 avx2 neon/; |
David Barker | 506eb72 | 2017-03-08 13:35:49 +0000 | [diff] [blame] | 349 | |
Debargha Mukherjee | eeb121c | 2018-09-10 16:20:28 -0700 | [diff] [blame] | 350 | add_proto qw/int av1_selfguided_restoration/, "const uint8_t *dgd8, int width, int height, |
| 351 | int dgd_stride, int32_t *flt0, int32_t *flt1, int flt_stride, |
| 352 | int sgr_params_idx, int bit_depth, int highbd"; |
Venkat | 0350496 | 2018-06-26 08:41:26 +0530 | [diff] [blame] | 353 | specialize qw/av1_selfguided_restoration sse4_1 avx2 neon/; |
David Barker | ce110cc | 2017-02-22 10:38:59 +0000 | [diff] [blame] | 354 | |
David Barker | 8295c7c | 2017-06-02 15:21:43 +0100 | [diff] [blame] | 355 | # CONVOLVE_ROUND/COMPOUND_ROUND functions |
Linfeng Zhang | f880d18 | 2018-03-16 12:24:05 -0700 | [diff] [blame] | 356 | |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 357 | add_proto qw/void av1_convolve_2d_sr/, "const uint8_t *src, int src_stride, uint8_t *dst, int dst_stride, int w, int h, const InterpFilterParams *filter_params_x, const InterpFilterParams *filter_params_y, const int subpel_x_q4, const int subpel_y_q4, ConvolveParams *conv_params"; |
| 358 | add_proto qw/void av1_convolve_2d_copy_sr/, "const uint8_t *src, int src_stride, uint8_t *dst, int dst_stride, int w, int h, const InterpFilterParams *filter_params_x, const InterpFilterParams *filter_params_y, const int subpel_x_q4, const int subpel_y_q4, ConvolveParams *conv_params"; |
| 359 | add_proto qw/void av1_convolve_x_sr/, "const uint8_t *src, int src_stride, uint8_t *dst, int dst_stride, int w, int h, const InterpFilterParams *filter_params_x, const InterpFilterParams *filter_params_y, const int subpel_x_q4, const int subpel_y_q4, ConvolveParams *conv_params"; |
| 360 | add_proto qw/void av1_convolve_y_sr/, "const uint8_t *src, int src_stride, uint8_t *dst, int dst_stride, int w, int h, const InterpFilterParams *filter_params_x, const InterpFilterParams *filter_params_y, const int subpel_x_q4, const int subpel_y_q4, ConvolveParams *conv_params"; |
| 361 | add_proto qw/void av1_jnt_convolve_2d/, "const uint8_t *src, int src_stride, uint8_t *dst, int dst_stride, int w, int h, const InterpFilterParams *filter_params_x, const InterpFilterParams *filter_params_y, const int subpel_x_q4, const int subpel_y_q4, ConvolveParams *conv_params"; |
| 362 | add_proto qw/void av1_jnt_convolve_2d_copy/, "const uint8_t *src, int src_stride, uint8_t *dst, int dst_stride, int w, int h, const InterpFilterParams *filter_params_x, const InterpFilterParams *filter_params_y, const int subpel_x_q4, const int subpel_y_q4, ConvolveParams *conv_params"; |
| 363 | add_proto qw/void av1_jnt_convolve_x/, "const uint8_t *src, int src_stride, uint8_t *dst, int dst_stride, int w, int h, const InterpFilterParams *filter_params_x, const InterpFilterParams *filter_params_y, const int subpel_x_q4, const int subpel_y_q4, ConvolveParams *conv_params"; |
| 364 | add_proto qw/void av1_jnt_convolve_y/, "const uint8_t *src, int src_stride, uint8_t *dst, int dst_stride, int w, int h, const InterpFilterParams *filter_params_x, const InterpFilterParams *filter_params_y, const int subpel_x_q4, const int subpel_y_q4, ConvolveParams *conv_params"; |
| 365 | add_proto qw/void av1_highbd_convolve_2d_copy_sr/, "const uint16_t *src, int src_stride, uint16_t *dst, int dst_stride, int w, int h, const InterpFilterParams *filter_params_x, const InterpFilterParams *filter_params_y, const int subpel_x_q4, const int subpel_y_q4, ConvolveParams *conv_params, int bd"; |
| 366 | add_proto qw/void av1_highbd_convolve_2d_sr/, "const uint16_t *src, int src_stride, uint16_t *dst, int dst_stride, int w, int h, const InterpFilterParams *filter_params_x, const InterpFilterParams *filter_params_y, const int subpel_x_q4, const int subpel_y_q4, ConvolveParams *conv_params, int bd"; |
| 367 | add_proto qw/void av1_highbd_convolve_x_sr/, "const uint16_t *src, int src_stride, uint16_t *dst, int dst_stride, int w, int h, const InterpFilterParams *filter_params_x, const InterpFilterParams *filter_params_y, const int subpel_x_q4, const int subpel_y_q4, ConvolveParams *conv_params, int bd"; |
| 368 | add_proto qw/void av1_highbd_convolve_y_sr/, "const uint16_t *src, int src_stride, uint16_t *dst, int dst_stride, int w, int h, const InterpFilterParams *filter_params_x, const InterpFilterParams *filter_params_y, const int subpel_x_q4, const int subpel_y_q4, ConvolveParams *conv_params, int bd"; |
| 369 | add_proto qw/void av1_highbd_jnt_convolve_2d/, "const uint16_t *src, int src_stride, uint16_t *dst, int dst_stride, int w, int h, const InterpFilterParams *filter_params_x, const InterpFilterParams *filter_params_y, const int subpel_x_q4, const int subpel_y_q4, ConvolveParams *conv_params, int bd"; |
| 370 | add_proto qw/void av1_highbd_jnt_convolve_x/, "const uint16_t *src, int src_stride, uint16_t *dst, int dst_stride, int w, int h, const InterpFilterParams *filter_params_x, const InterpFilterParams *filter_params_y, const int subpel_x_q4, const int subpel_y_q4, ConvolveParams *conv_params, int bd"; |
| 371 | add_proto qw/void av1_highbd_jnt_convolve_y/, "const uint16_t *src, int src_stride, uint16_t *dst, int dst_stride, int w, int h, const InterpFilterParams *filter_params_x, const InterpFilterParams *filter_params_y, const int subpel_x_q4, const int subpel_y_q4, ConvolveParams *conv_params, int bd"; |
| 372 | add_proto qw/void av1_highbd_jnt_convolve_2d_copy/, "const uint16_t *src, int src_stride, uint16_t *dst, int dst_stride, int w, int h, const InterpFilterParams *filter_params_x, const InterpFilterParams *filter_params_y, const int subpel_x_q4, const int subpel_y_q4, ConvolveParams *conv_params, int bd"; |
Linfeng Zhang | f880d18 | 2018-03-16 12:24:05 -0700 | [diff] [blame] | 373 | |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 374 | add_proto qw/void av1_convolve_2d_scale/, "const uint8_t *src, int src_stride, uint8_t *dst, int dst_stride, int w, int h, const InterpFilterParams *filter_params_x, const InterpFilterParams *filter_params_y, const int subpel_x_qn, const int x_step_qn, const int subpel_y_q4, const int y_step_qn, ConvolveParams *conv_params"; |
| 375 | add_proto qw/void av1_highbd_convolve_2d_scale/, "const uint16_t *src, int src_stride, uint16_t *dst, int dst_stride, int w, int h, const InterpFilterParams *filter_params_x, const InterpFilterParams *filter_params_y, const int subpel_x_q4, const int x_step_qn, const int subpel_y_q4, const int y_step_qn, ConvolveParams *conv_params, int bd"; |
Sachin Kumar Garg | 9974ee3 | 2018-05-23 14:55:52 +0530 | [diff] [blame] | 376 | |
Remya Prakasan | d580a4d | 2018-05-24 15:32:35 +0530 | [diff] [blame] | 377 | specialize qw/av1_convolve_2d_sr sse2 avx2 neon/; |
Sachin Kumar Garg | 9974ee3 | 2018-05-23 14:55:52 +0530 | [diff] [blame] | 378 | specialize qw/av1_convolve_2d_copy_sr sse2 avx2 neon/; |
Remya Prakasan | e915e3c | 2018-05-11 17:16:34 +0530 | [diff] [blame] | 379 | specialize qw/av1_convolve_x_sr sse2 avx2 neon/; |
Remya Prakasan | 981f210 | 2018-05-17 20:03:21 +0530 | [diff] [blame] | 380 | specialize qw/av1_convolve_y_sr sse2 avx2 neon/; |
Sebastien Alaiwan | 5009730 | 2018-03-15 10:29:38 +0100 | [diff] [blame] | 381 | specialize qw/av1_convolve_2d_scale sse4_1/; |
Yaowu Xu | 24ec464 | 2018-11-01 16:49:42 -0700 | [diff] [blame] | 382 | specialize qw/av1_jnt_convolve_2d sse2 ssse3 avx2 neon/; |
Sachin Kumar Garg | 9974ee3 | 2018-05-23 14:55:52 +0530 | [diff] [blame] | 383 | specialize qw/av1_jnt_convolve_2d_copy sse2 avx2 neon/; |
Venkat | dac71a7 | 2018-05-31 12:27:32 +0530 | [diff] [blame] | 384 | specialize qw/av1_jnt_convolve_x sse2 avx2 neon/; |
| 385 | specialize qw/av1_jnt_convolve_y sse2 avx2 neon/; |
Sebastien Alaiwan | 5009730 | 2018-03-15 10:29:38 +0100 | [diff] [blame] | 386 | specialize qw/av1_highbd_convolve_2d_copy_sr sse2 avx2/; |
Linfeng Zhang | f880d18 | 2018-03-16 12:24:05 -0700 | [diff] [blame] | 387 | specialize qw/av1_highbd_convolve_2d_sr ssse3 avx2/; |
| 388 | specialize qw/av1_highbd_convolve_x_sr ssse3 avx2/; |
| 389 | specialize qw/av1_highbd_convolve_y_sr ssse3 avx2/; |
Sebastien Alaiwan | 5009730 | 2018-03-15 10:29:38 +0100 | [diff] [blame] | 390 | specialize qw/av1_highbd_convolve_2d_scale sse4_1/; |
Sebastien Alaiwan | 5009730 | 2018-03-15 10:29:38 +0100 | [diff] [blame] | 391 | specialize qw/av1_highbd_jnt_convolve_2d sse4_1 avx2/; |
Ravi Chaudhary | 23c1d63 | 2018-03-22 11:12:56 +0530 | [diff] [blame] | 392 | specialize qw/av1_highbd_jnt_convolve_x sse4_1 avx2/; |
| 393 | specialize qw/av1_highbd_jnt_convolve_y sse4_1 avx2/; |
| 394 | specialize qw/av1_highbd_jnt_convolve_2d_copy sse4_1 avx2/; |
David Barker | 8295c7c | 2017-06-02 15:21:43 +0100 | [diff] [blame] | 395 | |
Joe Young | 89d321f | 2017-09-14 15:59:43 -0700 | [diff] [blame] | 396 | # INTRA_EDGE functions |
Yaowu Xu | 299577c | 2018-02-28 15:57:22 -0800 | [diff] [blame] | 397 | add_proto qw/void av1_filter_intra_edge/, "uint8_t *p, int sz, int strength"; |
| 398 | specialize qw/av1_filter_intra_edge sse4_1/; |
| 399 | add_proto qw/void av1_upsample_intra_edge/, "uint8_t *p, int sz"; |
| 400 | specialize qw/av1_upsample_intra_edge sse4_1/; |
Sarah Parker | 7cf7f0e | 2018-01-03 17:09:12 -0800 | [diff] [blame] | 401 | |
Yaowu Xu | 299577c | 2018-02-28 15:57:22 -0800 | [diff] [blame] | 402 | add_proto qw/void av1_filter_intra_edge_high/, "uint16_t *p, int sz, int strength"; |
| 403 | specialize qw/av1_filter_intra_edge_high sse4_1/; |
| 404 | add_proto qw/void av1_upsample_intra_edge_high/, "uint16_t *p, int sz, int bd"; |
| 405 | specialize qw/av1_upsample_intra_edge_high sse4_1/; |
Joe Young | 89d321f | 2017-09-14 15:59:43 -0700 | [diff] [blame] | 406 | |
Luc Trudeau | b4faea7 | 2017-12-15 16:44:01 -0500 | [diff] [blame] | 407 | # CFL |
Luc Trudeau | 3ec16a3 | 2018-03-01 20:58:09 -0500 | [diff] [blame] | 408 | add_proto qw/cfl_subtract_average_fn get_subtract_average_fn/, "TX_SIZE tx_size"; |
Luc Trudeau | 22296e4 | 2018-04-04 10:38:01 -0400 | [diff] [blame] | 409 | specialize qw/get_subtract_average_fn sse2 avx2 neon vsx/; |
Luc Trudeau | b4faea7 | 2017-12-15 16:44:01 -0500 | [diff] [blame] | 410 | |
Luc Trudeau | 3ec16a3 | 2018-03-01 20:58:09 -0500 | [diff] [blame] | 411 | add_proto qw/cfl_subsample_lbd_fn cfl_get_luma_subsampling_420_lbd/, "TX_SIZE tx_size"; |
Luc Trudeau | 4692963 | 2018-02-16 15:09:26 -0500 | [diff] [blame] | 412 | specialize qw/cfl_get_luma_subsampling_420_lbd ssse3 avx2 neon/; |
Luc Trudeau | fe735c4 | 2018-01-31 22:36:13 -0500 | [diff] [blame] | 413 | |
Luc Trudeau | 3406166 | 2018-03-27 20:10:49 -0400 | [diff] [blame] | 414 | add_proto qw/cfl_subsample_lbd_fn cfl_get_luma_subsampling_422_lbd/, "TX_SIZE tx_size"; |
| 415 | specialize qw/cfl_get_luma_subsampling_422_lbd ssse3 avx2 neon/; |
| 416 | |
Luc Trudeau | 9ba3568 | 2018-03-23 21:08:15 -0400 | [diff] [blame] | 417 | add_proto qw/cfl_subsample_lbd_fn cfl_get_luma_subsampling_444_lbd/, "TX_SIZE tx_size"; |
| 418 | specialize qw/cfl_get_luma_subsampling_444_lbd ssse3 avx2 neon/; |
| 419 | |
Luc Trudeau | 069473b | 2018-02-28 11:57:14 -0500 | [diff] [blame] | 420 | add_proto qw/cfl_subsample_hbd_fn cfl_get_luma_subsampling_420_hbd/, "TX_SIZE tx_size"; |
Luc Trudeau | 32b8af7 | 2018-03-30 18:38:02 -0400 | [diff] [blame] | 421 | specialize qw/cfl_get_luma_subsampling_420_hbd ssse3 avx2 neon/; |
Luc Trudeau | 069473b | 2018-02-28 11:57:14 -0500 | [diff] [blame] | 422 | |
Luc Trudeau | 576846a | 2018-04-05 10:39:54 -0400 | [diff] [blame] | 423 | add_proto qw/cfl_subsample_hbd_fn cfl_get_luma_subsampling_422_hbd/, "TX_SIZE tx_size"; |
Luc Trudeau | 733dacf | 2018-04-05 12:34:43 -0400 | [diff] [blame] | 424 | specialize qw/cfl_get_luma_subsampling_422_hbd ssse3 avx2 neon/; |
Luc Trudeau | 576846a | 2018-04-05 10:39:54 -0400 | [diff] [blame] | 425 | |
Luc Trudeau | 87a6a4f | 2018-04-05 14:04:18 -0400 | [diff] [blame] | 426 | add_proto qw/cfl_subsample_hbd_fn cfl_get_luma_subsampling_444_hbd/, "TX_SIZE tx_size"; |
Luc Trudeau | bee2088 | 2018-04-05 14:50:35 -0400 | [diff] [blame] | 427 | specialize qw/cfl_get_luma_subsampling_444_hbd ssse3 avx2 neon/; |
Luc Trudeau | 87a6a4f | 2018-04-05 14:04:18 -0400 | [diff] [blame] | 428 | |
Luc Trudeau | 3ec16a3 | 2018-03-01 20:58:09 -0500 | [diff] [blame] | 429 | add_proto qw/cfl_predict_lbd_fn get_predict_lbd_fn/, "TX_SIZE tx_size"; |
Luc Trudeau | 5905ac5 | 2018-03-08 13:22:23 -0500 | [diff] [blame] | 430 | specialize qw/get_predict_lbd_fn ssse3 avx2 neon/; |
David Michael Barr | c363ab7 | 2018-01-12 16:53:38 +0900 | [diff] [blame] | 431 | |
Luc Trudeau | 3ec16a3 | 2018-03-01 20:58:09 -0500 | [diff] [blame] | 432 | add_proto qw/cfl_predict_hbd_fn get_predict_hbd_fn/, "TX_SIZE tx_size"; |
Luc Trudeau | 5905ac5 | 2018-03-08 13:22:23 -0500 | [diff] [blame] | 433 | specialize qw/get_predict_hbd_fn ssse3 avx2 neon/; |
Luc Trudeau | b4faea7 | 2017-12-15 16:44:01 -0500 | [diff] [blame] | 434 | |
Sebastien Alaiwan | da34692 | 2017-10-11 10:14:43 +0200 | [diff] [blame] | 435 | 1; |