Home
last modified time | relevance | path

Searched refs:SCALE_EXTRA_BITS (Results 1 – 7 of 7) sorted by relevance

/external/libaom/libaom/aom_dsp/
Daom_filter.h31 #define SCALE_EXTRA_BITS (SCALE_SUBPEL_BITS - SUBPEL_BITS) macro
32 #define SCALE_EXTRA_OFF ((1 << SCALE_EXTRA_BITS) / 2)
/external/libaom/libaom/av1/common/
Dscale.c25 REF_SCALE_SHIFT - SCALE_EXTRA_BITS); in scaled_x()
34 REF_SCALE_SHIFT - SCALE_EXTRA_BITS); in scaled_y()
40 return val * (1 << SCALE_EXTRA_BITS); in unscaled_value()
Dreconinter.h147 sp->subpel_x >>= SCALE_EXTRA_BITS; in revert_scale_extra_bits()
148 sp->subpel_y >>= SCALE_EXTRA_BITS; in revert_scale_extra_bits()
149 sp->xs >>= SCALE_EXTRA_BITS; in revert_scale_extra_bits()
150 sp->ys >>= SCALE_EXTRA_BITS; in revert_scale_extra_bits()
298 sf ? sf->scale_value_x(x_offset, sf) >> SCALE_EXTRA_BITS : x_offset; in scaled_buffer_offset()
300 sf ? sf->scale_value_y(y_offset, sf) >> SCALE_EXTRA_BITS : y_offset; in scaled_buffer_offset()
Dconvolve.c481 const int x_filter_idx = (x_qn & SCALE_SUBPEL_MASK) >> SCALE_EXTRA_BITS; in av1_convolve_2d_scale_c()
503 const int y_filter_idx = (y_qn & SCALE_SUBPEL_MASK) >> SCALE_EXTRA_BITS; in av1_convolve_2d_scale_c()
966 const int x_filter_idx = (x_qn & SCALE_SUBPEL_MASK) >> SCALE_EXTRA_BITS; in av1_highbd_convolve_2d_scale_c()
988 const int y_filter_idx = (y_qn & SCALE_SUBPEL_MASK) >> SCALE_EXTRA_BITS; in av1_highbd_convolve_2d_scale_c()
/external/libaom/libaom/av1/common/x86/
Dav1_convolve_scale_sse4.c38 const int filter_idx = (x_qn & SCALE_SUBPEL_MASK) >> SCALE_EXTRA_BITS; in hfilter8()
139 const int filter_idx = (y_qn & SCALE_SUBPEL_MASK) >> SCALE_EXTRA_BITS; in vfilter8()
276 const int filter_idx = (x_qn & SCALE_SUBPEL_MASK) >> SCALE_EXTRA_BITS; in highbd_hfilter8()
370 const int filter_idx = (y_qn & SCALE_SUBPEL_MASK) >> SCALE_EXTRA_BITS; in highbd_vfilter8()
/external/libaom/libaom/av1/encoder/
Dinterp_search.c583 const int sub_x = (mv_q4.col & SUBPEL_MASK) << SCALE_EXTRA_BITS; in calc_interp_skip_pred_flag()
584 const int sub_y = (mv_q4.row & SUBPEL_MASK) << SCALE_EXTRA_BITS; in calc_interp_skip_pred_flag()
/external/libaom/libaom/av1/decoder/
Ddecodeframe.c608 subpel_params->subpel_x = (mv_q4.col & SUBPEL_MASK) << SCALE_EXTRA_BITS; in dec_calc_subpel_params()
609 subpel_params->subpel_y = (mv_q4.row & SUBPEL_MASK) << SCALE_EXTRA_BITS; in dec_calc_subpel_params()