/src/aom/av1/common/convolve.h
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * Copyright (c) 2016, 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 | | */ |
11 | | |
12 | | #ifndef AOM_AV1_COMMON_CONVOLVE_H_ |
13 | | #define AOM_AV1_COMMON_CONVOLVE_H_ |
14 | | #include "av1/common/filter.h" |
15 | | |
16 | | #ifdef __cplusplus |
17 | | extern "C" { |
18 | | #endif |
19 | | |
20 | | typedef uint16_t CONV_BUF_TYPE; |
21 | | typedef struct ConvolveParams { |
22 | | int do_average; |
23 | | CONV_BUF_TYPE *dst; |
24 | | int dst_stride; |
25 | | int round_0; |
26 | | int round_1; |
27 | | int plane; |
28 | | int is_compound; |
29 | | int use_dist_wtd_comp_avg; |
30 | | int fwd_offset; |
31 | | int bck_offset; |
32 | | } ConvolveParams; |
33 | | |
34 | 0 | #define ROUND0_BITS 3 |
35 | 0 | #define COMPOUND_ROUND1_BITS 7 |
36 | 0 | #define WIENER_ROUND0_BITS 3 |
37 | | |
38 | 0 | #define WIENER_CLAMP_LIMIT(r0, bd) (1 << ((bd) + 1 + FILTER_BITS - r0)) |
39 | | |
40 | | typedef void (*aom_convolve_fn_t)(const uint8_t *src, int src_stride, |
41 | | uint8_t *dst, int dst_stride, int w, int h, |
42 | | const InterpFilterParams *filter_params_x, |
43 | | const InterpFilterParams *filter_params_y, |
44 | | const int subpel_x_qn, const int subpel_y_qn, |
45 | | ConvolveParams *conv_params); |
46 | | |
47 | | typedef void (*aom_highbd_convolve_fn_t)( |
48 | | const uint16_t *src, int src_stride, uint16_t *dst, int dst_stride, int w, |
49 | | int h, const InterpFilterParams *filter_params_x, |
50 | | const InterpFilterParams *filter_params_y, const int subpel_x_qn, |
51 | | const int subpel_y_qn, ConvolveParams *conv_params, int bd); |
52 | | |
53 | | struct AV1Common; |
54 | | struct scale_factors; |
55 | | |
56 | | void av1_convolve_2d_facade(const uint8_t *src, int src_stride, uint8_t *dst, |
57 | | int dst_stride, int w, int h, |
58 | | const InterpFilterParams *interp_filters[2], |
59 | | const int subpel_x_qn, int x_step_q4, |
60 | | const int subpel_y_qn, int y_step_q4, int scaled, |
61 | | ConvolveParams *conv_params); |
62 | | |
63 | | static INLINE ConvolveParams get_conv_params_no_round(int cmp_index, int plane, |
64 | | CONV_BUF_TYPE *dst, |
65 | | int dst_stride, |
66 | 0 | int is_compound, int bd) { |
67 | 0 | ConvolveParams conv_params; |
68 | 0 | assert(IMPLIES(cmp_index, is_compound)); |
69 | |
|
70 | 0 | conv_params.is_compound = is_compound; |
71 | 0 | conv_params.use_dist_wtd_comp_avg = 0; |
72 | 0 | conv_params.round_0 = ROUND0_BITS; |
73 | 0 | conv_params.round_1 = is_compound ? COMPOUND_ROUND1_BITS |
74 | 0 | : 2 * FILTER_BITS - conv_params.round_0; |
75 | 0 | const int intbufrange = bd + FILTER_BITS - conv_params.round_0 + 2; |
76 | 0 | assert(IMPLIES(bd < 12, intbufrange <= 16)); |
77 | 0 | if (intbufrange > 16) { |
78 | 0 | conv_params.round_0 += intbufrange - 16; |
79 | 0 | if (!is_compound) conv_params.round_1 -= intbufrange - 16; |
80 | 0 | } |
81 | | // TODO(yunqing): The following dst should only be valid while |
82 | | // is_compound = 1; |
83 | 0 | conv_params.dst = dst; |
84 | 0 | conv_params.dst_stride = dst_stride; |
85 | 0 | conv_params.plane = plane; |
86 | | |
87 | | // By default, set do average to 1 if this is the second single prediction |
88 | | // in a compound mode. |
89 | 0 | conv_params.do_average = cmp_index; |
90 | 0 | return conv_params; |
91 | 0 | } Unexecuted instantiation: av1_dx_iface.c:get_conv_params_no_round Unexecuted instantiation: decodeframe.c:get_conv_params_no_round Unexecuted instantiation: decodemv.c:get_conv_params_no_round Unexecuted instantiation: decoder.c:get_conv_params_no_round Unexecuted instantiation: decodetxb.c:get_conv_params_no_round Unexecuted instantiation: detokenize.c:get_conv_params_no_round Unexecuted instantiation: obu.c:get_conv_params_no_round Unexecuted instantiation: av1_cx_iface.c:get_conv_params_no_round Unexecuted instantiation: av1_quantize.c:get_conv_params_no_round Unexecuted instantiation: bitstream.c:get_conv_params_no_round Unexecuted instantiation: encodemv.c:get_conv_params_no_round Unexecuted instantiation: encoder.c:get_conv_params_no_round Unexecuted instantiation: encoder_utils.c:get_conv_params_no_round Unexecuted instantiation: encodetxb.c:get_conv_params_no_round Unexecuted instantiation: ethread.c:get_conv_params_no_round Unexecuted instantiation: firstpass.c:get_conv_params_no_round Unexecuted instantiation: global_motion_facade.c:get_conv_params_no_round Unexecuted instantiation: hash_motion.c:get_conv_params_no_round Unexecuted instantiation: level.c:get_conv_params_no_round Unexecuted instantiation: lookahead.c:get_conv_params_no_round Unexecuted instantiation: mcomp.c:get_conv_params_no_round Unexecuted instantiation: mv_prec.c:get_conv_params_no_round Unexecuted instantiation: palette.c:get_conv_params_no_round Unexecuted instantiation: pass2_strategy.c:get_conv_params_no_round Unexecuted instantiation: pickcdef.c:get_conv_params_no_round Unexecuted instantiation: picklpf.c:get_conv_params_no_round Unexecuted instantiation: pickrst.c:get_conv_params_no_round Unexecuted instantiation: ratectrl.c:get_conv_params_no_round Unexecuted instantiation: rd.c:get_conv_params_no_round Unexecuted instantiation: rdopt.c:get_conv_params_no_round Unexecuted instantiation: reconinter_enc.c:get_conv_params_no_round Unexecuted instantiation: segmentation.c:get_conv_params_no_round Unexecuted instantiation: speed_features.c:get_conv_params_no_round Unexecuted instantiation: superres_scale.c:get_conv_params_no_round Unexecuted instantiation: svc_layercontext.c:get_conv_params_no_round Unexecuted instantiation: temporal_filter.c:get_conv_params_no_round Unexecuted instantiation: thirdpass.c:get_conv_params_no_round Unexecuted instantiation: tokenize.c:get_conv_params_no_round Unexecuted instantiation: tpl_model.c:get_conv_params_no_round Unexecuted instantiation: tx_search.c:get_conv_params_no_round Unexecuted instantiation: txb_rdopt.c:get_conv_params_no_round Unexecuted instantiation: intra_mode_search.c:get_conv_params_no_round Unexecuted instantiation: var_based_part.c:get_conv_params_no_round Unexecuted instantiation: av1_noise_estimate.c:get_conv_params_no_round Unexecuted instantiation: dwt.c:get_conv_params_no_round Unexecuted instantiation: aom_dsp_rtcd.c:get_conv_params_no_round Unexecuted instantiation: av1_rtcd.c:get_conv_params_no_round Unexecuted instantiation: aom_convolve.c:get_conv_params_no_round Unexecuted instantiation: blend_a64_mask.c:get_conv_params_no_round Unexecuted instantiation: avg.c:get_conv_params_no_round Unexecuted instantiation: blk_sse_sum.c:get_conv_params_no_round Unexecuted instantiation: noise_util.c:get_conv_params_no_round Unexecuted instantiation: psnr.c:get_conv_params_no_round Unexecuted instantiation: sad.c:get_conv_params_no_round Unexecuted instantiation: sad_av1.c:get_conv_params_no_round Unexecuted instantiation: sse.c:get_conv_params_no_round Unexecuted instantiation: sum_squares.c:get_conv_params_no_round Unexecuted instantiation: variance.c:get_conv_params_no_round Unexecuted instantiation: alloccommon.c:get_conv_params_no_round Unexecuted instantiation: av1_loopfilter.c:get_conv_params_no_round Unexecuted instantiation: blockd.c:get_conv_params_no_round Unexecuted instantiation: cdef.c:get_conv_params_no_round Unexecuted instantiation: cdef_block.c:get_conv_params_no_round Unexecuted instantiation: cfl.c:get_conv_params_no_round Unexecuted instantiation: debugmodes.c:get_conv_params_no_round Unexecuted instantiation: entropy.c:get_conv_params_no_round Unexecuted instantiation: entropymode.c:get_conv_params_no_round Unexecuted instantiation: entropymv.c:get_conv_params_no_round Unexecuted instantiation: idct.c:get_conv_params_no_round Unexecuted instantiation: mvref_common.c:get_conv_params_no_round Unexecuted instantiation: pred_common.c:get_conv_params_no_round Unexecuted instantiation: quant_common.c:get_conv_params_no_round Unexecuted instantiation: reconinter.c:get_conv_params_no_round Unexecuted instantiation: reconintra.c:get_conv_params_no_round Unexecuted instantiation: resize.c:get_conv_params_no_round Unexecuted instantiation: restoration.c:get_conv_params_no_round Unexecuted instantiation: scale.c:get_conv_params_no_round Unexecuted instantiation: scan.c:get_conv_params_no_round Unexecuted instantiation: seg_common.c:get_conv_params_no_round Unexecuted instantiation: thread_common.c:get_conv_params_no_round Unexecuted instantiation: tile_common.c:get_conv_params_no_round Unexecuted instantiation: txb_common.c:get_conv_params_no_round Unexecuted instantiation: warped_motion.c:get_conv_params_no_round Unexecuted instantiation: aq_complexity.c:get_conv_params_no_round Unexecuted instantiation: aq_cyclicrefresh.c:get_conv_params_no_round Unexecuted instantiation: aq_variance.c:get_conv_params_no_round Unexecuted instantiation: allintra_vis.c:get_conv_params_no_round Unexecuted instantiation: av1_fwd_txfm2d.c:get_conv_params_no_round Unexecuted instantiation: compound_type.c:get_conv_params_no_round Unexecuted instantiation: context_tree.c:get_conv_params_no_round Unexecuted instantiation: encodeframe.c:get_conv_params_no_round Unexecuted instantiation: encodeframe_utils.c:get_conv_params_no_round Unexecuted instantiation: encodemb.c:get_conv_params_no_round Unexecuted instantiation: encode_strategy.c:get_conv_params_no_round Unexecuted instantiation: global_motion.c:get_conv_params_no_round Unexecuted instantiation: gop_structure.c:get_conv_params_no_round Unexecuted instantiation: hybrid_fwd_txfm.c:get_conv_params_no_round Unexecuted instantiation: interp_search.c:get_conv_params_no_round Unexecuted instantiation: ml.c:get_conv_params_no_round Unexecuted instantiation: motion_search_facade.c:get_conv_params_no_round Unexecuted instantiation: partition_search.c:get_conv_params_no_round Unexecuted instantiation: partition_strategy.c:get_conv_params_no_round Unexecuted instantiation: ransac.c:get_conv_params_no_round Unexecuted instantiation: nonrd_pickmode.c:get_conv_params_no_round Unexecuted instantiation: wedge_utils.c:get_conv_params_no_round Unexecuted instantiation: blend_a64_hmask.c:get_conv_params_no_round Unexecuted instantiation: blend_a64_vmask.c:get_conv_params_no_round Unexecuted instantiation: intrapred.c:get_conv_params_no_round Unexecuted instantiation: loopfilter.c:get_conv_params_no_round Unexecuted instantiation: subtract.c:get_conv_params_no_round Unexecuted instantiation: fwd_txfm.c:get_conv_params_no_round Unexecuted instantiation: av1_inv_txfm2d.c:get_conv_params_no_round Unexecuted instantiation: av1_txfm.c:get_conv_params_no_round Unexecuted instantiation: convolve.c:get_conv_params_no_round Unexecuted instantiation: av1_fwd_txfm1d.c:get_conv_params_no_round Unexecuted instantiation: cnn.c:get_conv_params_no_round Unexecuted instantiation: corner_match.c:get_conv_params_no_round Unexecuted instantiation: av1_inv_txfm1d.c:get_conv_params_no_round |
92 | | |
93 | | static INLINE ConvolveParams get_conv_params(int do_average, int plane, |
94 | 0 | int bd) { |
95 | 0 | return get_conv_params_no_round(do_average, plane, NULL, 0, 0, bd); |
96 | 0 | } Unexecuted instantiation: av1_dx_iface.c:get_conv_params Unexecuted instantiation: decodeframe.c:get_conv_params Unexecuted instantiation: decodemv.c:get_conv_params Unexecuted instantiation: decoder.c:get_conv_params Unexecuted instantiation: decodetxb.c:get_conv_params Unexecuted instantiation: detokenize.c:get_conv_params Unexecuted instantiation: obu.c:get_conv_params Unexecuted instantiation: av1_cx_iface.c:get_conv_params Unexecuted instantiation: av1_quantize.c:get_conv_params Unexecuted instantiation: bitstream.c:get_conv_params Unexecuted instantiation: encodemv.c:get_conv_params Unexecuted instantiation: encoder.c:get_conv_params Unexecuted instantiation: encoder_utils.c:get_conv_params Unexecuted instantiation: encodetxb.c:get_conv_params Unexecuted instantiation: ethread.c:get_conv_params Unexecuted instantiation: firstpass.c:get_conv_params Unexecuted instantiation: global_motion_facade.c:get_conv_params Unexecuted instantiation: hash_motion.c:get_conv_params Unexecuted instantiation: level.c:get_conv_params Unexecuted instantiation: lookahead.c:get_conv_params Unexecuted instantiation: mcomp.c:get_conv_params Unexecuted instantiation: mv_prec.c:get_conv_params Unexecuted instantiation: palette.c:get_conv_params Unexecuted instantiation: pass2_strategy.c:get_conv_params Unexecuted instantiation: pickcdef.c:get_conv_params Unexecuted instantiation: picklpf.c:get_conv_params Unexecuted instantiation: pickrst.c:get_conv_params Unexecuted instantiation: ratectrl.c:get_conv_params Unexecuted instantiation: rd.c:get_conv_params Unexecuted instantiation: rdopt.c:get_conv_params Unexecuted instantiation: reconinter_enc.c:get_conv_params Unexecuted instantiation: segmentation.c:get_conv_params Unexecuted instantiation: speed_features.c:get_conv_params Unexecuted instantiation: superres_scale.c:get_conv_params Unexecuted instantiation: svc_layercontext.c:get_conv_params Unexecuted instantiation: temporal_filter.c:get_conv_params Unexecuted instantiation: thirdpass.c:get_conv_params Unexecuted instantiation: tokenize.c:get_conv_params Unexecuted instantiation: tpl_model.c:get_conv_params Unexecuted instantiation: tx_search.c:get_conv_params Unexecuted instantiation: txb_rdopt.c:get_conv_params Unexecuted instantiation: intra_mode_search.c:get_conv_params Unexecuted instantiation: var_based_part.c:get_conv_params Unexecuted instantiation: av1_noise_estimate.c:get_conv_params Unexecuted instantiation: dwt.c:get_conv_params Unexecuted instantiation: aom_dsp_rtcd.c:get_conv_params Unexecuted instantiation: av1_rtcd.c:get_conv_params Unexecuted instantiation: aom_convolve.c:get_conv_params Unexecuted instantiation: blend_a64_mask.c:get_conv_params Unexecuted instantiation: avg.c:get_conv_params Unexecuted instantiation: blk_sse_sum.c:get_conv_params Unexecuted instantiation: noise_util.c:get_conv_params Unexecuted instantiation: psnr.c:get_conv_params Unexecuted instantiation: sad.c:get_conv_params Unexecuted instantiation: sad_av1.c:get_conv_params Unexecuted instantiation: sse.c:get_conv_params Unexecuted instantiation: sum_squares.c:get_conv_params Unexecuted instantiation: variance.c:get_conv_params Unexecuted instantiation: alloccommon.c:get_conv_params Unexecuted instantiation: av1_loopfilter.c:get_conv_params Unexecuted instantiation: blockd.c:get_conv_params Unexecuted instantiation: cdef.c:get_conv_params Unexecuted instantiation: cdef_block.c:get_conv_params Unexecuted instantiation: cfl.c:get_conv_params Unexecuted instantiation: debugmodes.c:get_conv_params Unexecuted instantiation: entropy.c:get_conv_params Unexecuted instantiation: entropymode.c:get_conv_params Unexecuted instantiation: entropymv.c:get_conv_params Unexecuted instantiation: idct.c:get_conv_params Unexecuted instantiation: mvref_common.c:get_conv_params Unexecuted instantiation: pred_common.c:get_conv_params Unexecuted instantiation: quant_common.c:get_conv_params Unexecuted instantiation: reconinter.c:get_conv_params Unexecuted instantiation: reconintra.c:get_conv_params Unexecuted instantiation: resize.c:get_conv_params Unexecuted instantiation: restoration.c:get_conv_params Unexecuted instantiation: scale.c:get_conv_params Unexecuted instantiation: scan.c:get_conv_params Unexecuted instantiation: seg_common.c:get_conv_params Unexecuted instantiation: thread_common.c:get_conv_params Unexecuted instantiation: tile_common.c:get_conv_params Unexecuted instantiation: txb_common.c:get_conv_params Unexecuted instantiation: warped_motion.c:get_conv_params Unexecuted instantiation: aq_complexity.c:get_conv_params Unexecuted instantiation: aq_cyclicrefresh.c:get_conv_params Unexecuted instantiation: aq_variance.c:get_conv_params Unexecuted instantiation: allintra_vis.c:get_conv_params Unexecuted instantiation: av1_fwd_txfm2d.c:get_conv_params Unexecuted instantiation: compound_type.c:get_conv_params Unexecuted instantiation: context_tree.c:get_conv_params Unexecuted instantiation: encodeframe.c:get_conv_params Unexecuted instantiation: encodeframe_utils.c:get_conv_params Unexecuted instantiation: encodemb.c:get_conv_params Unexecuted instantiation: encode_strategy.c:get_conv_params Unexecuted instantiation: global_motion.c:get_conv_params Unexecuted instantiation: gop_structure.c:get_conv_params Unexecuted instantiation: hybrid_fwd_txfm.c:get_conv_params Unexecuted instantiation: interp_search.c:get_conv_params Unexecuted instantiation: ml.c:get_conv_params Unexecuted instantiation: motion_search_facade.c:get_conv_params Unexecuted instantiation: partition_search.c:get_conv_params Unexecuted instantiation: partition_strategy.c:get_conv_params Unexecuted instantiation: ransac.c:get_conv_params Unexecuted instantiation: nonrd_pickmode.c:get_conv_params Unexecuted instantiation: wedge_utils.c:get_conv_params Unexecuted instantiation: blend_a64_hmask.c:get_conv_params Unexecuted instantiation: blend_a64_vmask.c:get_conv_params Unexecuted instantiation: intrapred.c:get_conv_params Unexecuted instantiation: loopfilter.c:get_conv_params Unexecuted instantiation: subtract.c:get_conv_params Unexecuted instantiation: fwd_txfm.c:get_conv_params Unexecuted instantiation: av1_inv_txfm2d.c:get_conv_params Unexecuted instantiation: av1_txfm.c:get_conv_params Unexecuted instantiation: convolve.c:get_conv_params Unexecuted instantiation: av1_fwd_txfm1d.c:get_conv_params Unexecuted instantiation: cnn.c:get_conv_params Unexecuted instantiation: corner_match.c:get_conv_params Unexecuted instantiation: av1_inv_txfm1d.c:get_conv_params |
97 | | |
98 | 0 | static INLINE ConvolveParams get_conv_params_wiener(int bd) { |
99 | 0 | ConvolveParams conv_params; |
100 | 0 | (void)bd; |
101 | 0 | conv_params.do_average = 0; |
102 | 0 | conv_params.is_compound = 0; |
103 | 0 | conv_params.round_0 = WIENER_ROUND0_BITS; |
104 | 0 | conv_params.round_1 = 2 * FILTER_BITS - conv_params.round_0; |
105 | 0 | const int intbufrange = bd + FILTER_BITS - conv_params.round_0 + 2; |
106 | 0 | assert(IMPLIES(bd < 12, intbufrange <= 16)); |
107 | 0 | if (intbufrange > 16) { |
108 | 0 | conv_params.round_0 += intbufrange - 16; |
109 | 0 | conv_params.round_1 -= intbufrange - 16; |
110 | 0 | } |
111 | 0 | conv_params.dst = NULL; |
112 | 0 | conv_params.dst_stride = 0; |
113 | 0 | conv_params.plane = 0; |
114 | 0 | return conv_params; |
115 | 0 | } Unexecuted instantiation: av1_dx_iface.c:get_conv_params_wiener Unexecuted instantiation: decodeframe.c:get_conv_params_wiener Unexecuted instantiation: decodemv.c:get_conv_params_wiener Unexecuted instantiation: decoder.c:get_conv_params_wiener Unexecuted instantiation: decodetxb.c:get_conv_params_wiener Unexecuted instantiation: detokenize.c:get_conv_params_wiener Unexecuted instantiation: obu.c:get_conv_params_wiener Unexecuted instantiation: av1_cx_iface.c:get_conv_params_wiener Unexecuted instantiation: av1_quantize.c:get_conv_params_wiener Unexecuted instantiation: bitstream.c:get_conv_params_wiener Unexecuted instantiation: encodemv.c:get_conv_params_wiener Unexecuted instantiation: encoder.c:get_conv_params_wiener Unexecuted instantiation: encoder_utils.c:get_conv_params_wiener Unexecuted instantiation: encodetxb.c:get_conv_params_wiener Unexecuted instantiation: ethread.c:get_conv_params_wiener Unexecuted instantiation: firstpass.c:get_conv_params_wiener Unexecuted instantiation: global_motion_facade.c:get_conv_params_wiener Unexecuted instantiation: hash_motion.c:get_conv_params_wiener Unexecuted instantiation: level.c:get_conv_params_wiener Unexecuted instantiation: lookahead.c:get_conv_params_wiener Unexecuted instantiation: mcomp.c:get_conv_params_wiener Unexecuted instantiation: mv_prec.c:get_conv_params_wiener Unexecuted instantiation: palette.c:get_conv_params_wiener Unexecuted instantiation: pass2_strategy.c:get_conv_params_wiener Unexecuted instantiation: pickcdef.c:get_conv_params_wiener Unexecuted instantiation: picklpf.c:get_conv_params_wiener Unexecuted instantiation: pickrst.c:get_conv_params_wiener Unexecuted instantiation: ratectrl.c:get_conv_params_wiener Unexecuted instantiation: rd.c:get_conv_params_wiener Unexecuted instantiation: rdopt.c:get_conv_params_wiener Unexecuted instantiation: reconinter_enc.c:get_conv_params_wiener Unexecuted instantiation: segmentation.c:get_conv_params_wiener Unexecuted instantiation: speed_features.c:get_conv_params_wiener Unexecuted instantiation: superres_scale.c:get_conv_params_wiener Unexecuted instantiation: svc_layercontext.c:get_conv_params_wiener Unexecuted instantiation: temporal_filter.c:get_conv_params_wiener Unexecuted instantiation: thirdpass.c:get_conv_params_wiener Unexecuted instantiation: tokenize.c:get_conv_params_wiener Unexecuted instantiation: tpl_model.c:get_conv_params_wiener Unexecuted instantiation: tx_search.c:get_conv_params_wiener Unexecuted instantiation: txb_rdopt.c:get_conv_params_wiener Unexecuted instantiation: intra_mode_search.c:get_conv_params_wiener Unexecuted instantiation: var_based_part.c:get_conv_params_wiener Unexecuted instantiation: av1_noise_estimate.c:get_conv_params_wiener Unexecuted instantiation: dwt.c:get_conv_params_wiener Unexecuted instantiation: aom_dsp_rtcd.c:get_conv_params_wiener Unexecuted instantiation: av1_rtcd.c:get_conv_params_wiener Unexecuted instantiation: aom_convolve.c:get_conv_params_wiener Unexecuted instantiation: blend_a64_mask.c:get_conv_params_wiener Unexecuted instantiation: avg.c:get_conv_params_wiener Unexecuted instantiation: blk_sse_sum.c:get_conv_params_wiener Unexecuted instantiation: noise_util.c:get_conv_params_wiener Unexecuted instantiation: psnr.c:get_conv_params_wiener Unexecuted instantiation: sad.c:get_conv_params_wiener Unexecuted instantiation: sad_av1.c:get_conv_params_wiener Unexecuted instantiation: sse.c:get_conv_params_wiener Unexecuted instantiation: sum_squares.c:get_conv_params_wiener Unexecuted instantiation: variance.c:get_conv_params_wiener Unexecuted instantiation: alloccommon.c:get_conv_params_wiener Unexecuted instantiation: av1_loopfilter.c:get_conv_params_wiener Unexecuted instantiation: blockd.c:get_conv_params_wiener Unexecuted instantiation: cdef.c:get_conv_params_wiener Unexecuted instantiation: cdef_block.c:get_conv_params_wiener Unexecuted instantiation: cfl.c:get_conv_params_wiener Unexecuted instantiation: debugmodes.c:get_conv_params_wiener Unexecuted instantiation: entropy.c:get_conv_params_wiener Unexecuted instantiation: entropymode.c:get_conv_params_wiener Unexecuted instantiation: entropymv.c:get_conv_params_wiener Unexecuted instantiation: idct.c:get_conv_params_wiener Unexecuted instantiation: mvref_common.c:get_conv_params_wiener Unexecuted instantiation: pred_common.c:get_conv_params_wiener Unexecuted instantiation: quant_common.c:get_conv_params_wiener Unexecuted instantiation: reconinter.c:get_conv_params_wiener Unexecuted instantiation: reconintra.c:get_conv_params_wiener Unexecuted instantiation: resize.c:get_conv_params_wiener Unexecuted instantiation: restoration.c:get_conv_params_wiener Unexecuted instantiation: scale.c:get_conv_params_wiener Unexecuted instantiation: scan.c:get_conv_params_wiener Unexecuted instantiation: seg_common.c:get_conv_params_wiener Unexecuted instantiation: thread_common.c:get_conv_params_wiener Unexecuted instantiation: tile_common.c:get_conv_params_wiener Unexecuted instantiation: txb_common.c:get_conv_params_wiener Unexecuted instantiation: warped_motion.c:get_conv_params_wiener Unexecuted instantiation: aq_complexity.c:get_conv_params_wiener Unexecuted instantiation: aq_cyclicrefresh.c:get_conv_params_wiener Unexecuted instantiation: aq_variance.c:get_conv_params_wiener Unexecuted instantiation: allintra_vis.c:get_conv_params_wiener Unexecuted instantiation: av1_fwd_txfm2d.c:get_conv_params_wiener Unexecuted instantiation: compound_type.c:get_conv_params_wiener Unexecuted instantiation: context_tree.c:get_conv_params_wiener Unexecuted instantiation: encodeframe.c:get_conv_params_wiener Unexecuted instantiation: encodeframe_utils.c:get_conv_params_wiener Unexecuted instantiation: encodemb.c:get_conv_params_wiener Unexecuted instantiation: encode_strategy.c:get_conv_params_wiener Unexecuted instantiation: global_motion.c:get_conv_params_wiener Unexecuted instantiation: gop_structure.c:get_conv_params_wiener Unexecuted instantiation: hybrid_fwd_txfm.c:get_conv_params_wiener Unexecuted instantiation: interp_search.c:get_conv_params_wiener Unexecuted instantiation: ml.c:get_conv_params_wiener Unexecuted instantiation: motion_search_facade.c:get_conv_params_wiener Unexecuted instantiation: partition_search.c:get_conv_params_wiener Unexecuted instantiation: partition_strategy.c:get_conv_params_wiener Unexecuted instantiation: ransac.c:get_conv_params_wiener Unexecuted instantiation: nonrd_pickmode.c:get_conv_params_wiener Unexecuted instantiation: wedge_utils.c:get_conv_params_wiener Unexecuted instantiation: blend_a64_hmask.c:get_conv_params_wiener Unexecuted instantiation: blend_a64_vmask.c:get_conv_params_wiener Unexecuted instantiation: intrapred.c:get_conv_params_wiener Unexecuted instantiation: loopfilter.c:get_conv_params_wiener Unexecuted instantiation: subtract.c:get_conv_params_wiener Unexecuted instantiation: fwd_txfm.c:get_conv_params_wiener Unexecuted instantiation: av1_inv_txfm2d.c:get_conv_params_wiener Unexecuted instantiation: av1_txfm.c:get_conv_params_wiener Unexecuted instantiation: convolve.c:get_conv_params_wiener Unexecuted instantiation: av1_fwd_txfm1d.c:get_conv_params_wiener Unexecuted instantiation: cnn.c:get_conv_params_wiener Unexecuted instantiation: corner_match.c:get_conv_params_wiener Unexecuted instantiation: av1_inv_txfm1d.c:get_conv_params_wiener |
116 | | |
117 | | void av1_highbd_convolve_2d_facade(const uint8_t *src8, int src_stride, |
118 | | uint8_t *dst, int dst_stride, int w, int h, |
119 | | const InterpFilterParams *interp_filters[2], |
120 | | const int subpel_x_qn, int x_step_q4, |
121 | | const int subpel_y_qn, int y_step_q4, |
122 | | int scaled, ConvolveParams *conv_params, |
123 | | int bd); |
124 | | |
125 | | // TODO(sarahparker) This will need to be integerized and optimized |
126 | | void av1_convolve_2d_sobel_y_c(const uint8_t *src, int src_stride, double *dst, |
127 | | int dst_stride, int w, int h, int dir, |
128 | | double norm); |
129 | | |
130 | | #ifdef __cplusplus |
131 | | } // extern "C" |
132 | | #endif |
133 | | |
134 | | #endif // AOM_AV1_COMMON_CONVOLVE_H_ |