Searched refs:left_col (Results 1 – 3 of 3) sorted by relevance
/external/libvpx/libvpx/vp9/common/ |
D | vp9_reconintra.c | 120 DECLARE_ALIGNED(16, uint16_t, left_col[32]); in build_intra_predictors_high() 158 for (i = 0; i < bs; ++i) left_col[i] = ref[i * ref_stride - 1]; in build_intra_predictors_high() 162 left_col[i] = ref[i * ref_stride - 1]; in build_intra_predictors_high() 164 left_col[i] = ref[(extend_bottom - 1) * ref_stride - 1]; in build_intra_predictors_high() 168 for (i = 0; i < bs; ++i) left_col[i] = ref[i * ref_stride - 1]; in build_intra_predictors_high() 171 vpx_memset16(left_col, base + 1, bs); in build_intra_predictors_high() 255 dst, dst_stride, const_above_row, left_col, xd->bd); in build_intra_predictors_high() 257 pred_high[mode][tx_size](dst, dst_stride, const_above_row, left_col, in build_intra_predictors_high() 270 DECLARE_ALIGNED(16, uint8_t, left_col[32]); in build_intra_predictors() 305 for (i = 0; i < bs; ++i) left_col[i] = ref[i * ref_stride - 1]; in build_intra_predictors() [all …]
|
/external/libvpx/libvpx/test/ |
D | vp9_intrapred_test.cc | 49 void RunTest(Pixel *left_col, Pixel *above_data, Pixel *dst, Pixel *ref_dst) { in RunTest() argument 53 left_col_ = left_col; in RunTest() 126 DECLARE_ALIGNED(16, uint8_t, left_col[2 * 32]); in TEST_P() 130 RunTest(left_col, above_data, dst, ref_dst); in TEST_P() 463 DECLARE_ALIGNED(16, uint16_t, left_col[2 * 32]); in TEST_P() 467 RunTest(left_col, above_data, dst, ref_dst); in TEST_P()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_pickmode.c | 1239 int left_row, left_col; in vp9_NEWMV_diff_bias() local 1254 left_col = xd->left_mi->mv[0].as_mv.col; in vp9_NEWMV_diff_bias() 1258 al_mv_average_col = (above_col + left_col + 1) >> 1; in vp9_NEWMV_diff_bias() 1264 al_mv_average_col = left_col; in vp9_NEWMV_diff_bias()
|