Home
last modified time | relevance | path

Searched refs:intermediate_height (Results 1 – 5 of 5) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/mips/dspr2/
Dvp9_convolve8_dspr2.c954 int32_t intermediate_height = ((h * y_step_q4) >> 4) + 7; in vp9_convolve8_dspr2() local
964 if (intermediate_height < h) in vp9_convolve8_dspr2()
965 intermediate_height = h; in vp9_convolve8_dspr2()
985 temp, intermediate_height, in vp9_convolve8_dspr2()
986 w, intermediate_height); in vp9_convolve8_dspr2()
989 temp, intermediate_height, in vp9_convolve8_dspr2()
991 w, intermediate_height); in vp9_convolve8_dspr2()
1002 temp, intermediate_height, in vp9_convolve8_dspr2()
1003 filter_x, intermediate_height); in vp9_convolve8_dspr2()
1007 temp, intermediate_height, in vp9_convolve8_dspr2()
[all …]
Dvp9_convolve8_avg_dspr2.c417 int32_t intermediate_height = ((h * y_step_q4) >> 4) + 7; in vp9_convolve8_avg_dspr2() local
422 if (intermediate_height < h) in vp9_convolve8_avg_dspr2()
423 intermediate_height = h; in vp9_convolve8_avg_dspr2()
436 w, intermediate_height); in vp9_convolve8_avg_dspr2()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/arm/neon/
Dvp9_convolve_neon.c26 int intermediate_height = h + 7; in vp9_convolve8_neon() local
43 w, intermediate_height); in vp9_convolve8_neon()
58 int intermediate_height = h + 7; in vp9_convolve8_avg_neon() local
73 w, intermediate_height); in vp9_convolve8_avg_neon()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
Dvp9_convolve.c125 int intermediate_height = (((h - 1) * y_step_q4 + 15) >> 4) + SUBPEL_TAPS; in convolve() local
132 if (intermediate_height < h) in convolve()
133 intermediate_height = h; in convolve()
136 x_filters, x0_q4, x_step_q4, w, intermediate_height); in convolve()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
Dconvolve_test.cc69 const unsigned int intermediate_height = in filter_block2d_8_c() local
80 const int intermediate_next_stride = 1 - intermediate_height * output_width; in filter_block2d_8_c()
88 for (i = 0; i < intermediate_height; ++i) { in filter_block2d_8_c()
104 output_ptr += intermediate_height; in filter_block2d_8_c()
131 src_ptr += intermediate_height; in filter_block2d_8_c()