Home
last modified time | relevance | path

Searched refs:sub_col (Results 1 – 4 of 4) sorted by relevance

/external/libvpx/libvpx/test/
Dyuv_temporal_filter_test.cc206 const int sub_col = col + col_step; in ApplyReferenceFilter() local
209 sub_col >= 0 && sub_col < static_cast<int>(block_width)) { in ApplyReferenceFilter()
210 y_mod += y_diff_ptr[sub_row * y_diff_stride + sub_col]; in ApplyReferenceFilter()
251 const int sub_col = uv_col + col_step; in ApplyReferenceFilter() local
253 if (sub_row >= 0 && sub_row < uv_block_height && sub_col >= 0 && in ApplyReferenceFilter()
254 sub_col < uv_block_width) { in ApplyReferenceFilter()
255 u_mod += u_diff_ptr[sub_row * uv_diff_stride + sub_col]; in ApplyReferenceFilter()
256 v_mod += v_diff_ptr[sub_row * uv_diff_stride + sub_col]; in ApplyReferenceFilter()
266 const int sub_col = y_col + col_step; in ApplyReferenceFilter() local
267 const int y_diff = y_diff_ptr[sub_row * y_diff_stride + sub_col]; in ApplyReferenceFilter()
/external/libvpx/libvpx/vp8/decoder/
Derror_concealment.c280 int sub_col; in calc_prev_mb_overlaps() local
282 for (sub_col = 0; sub_col < 4; ++sub_col) { in calc_prev_mb_overlaps()
284 &(prev_mi->bmi[sub_row * 4 + sub_col]), in calc_prev_mb_overlaps()
285 4 * mb_row + sub_row, 4 * mb_col + sub_col); in calc_prev_mb_overlaps()
/external/libaom/libaom/test/
Dtemporal_filter_yuv_test.cc272 const int sub_col = col + col_step; in ApplyReferenceFilter() local
274 if (sub_row >= 0 && sub_row < (int)block_height && sub_col >= 0 && in ApplyReferenceFilter()
275 sub_col < (int)block_width) { in ApplyReferenceFilter()
276 y_mod += y_dif[sub_row * y_diff_stride + sub_col]; in ApplyReferenceFilter()
317 const int sub_col = uv_col + col_step; in ApplyReferenceFilter() local
319 if (sub_row >= 0 && sub_row < uv_block_height && sub_col >= 0 && in ApplyReferenceFilter()
320 sub_col < uv_block_width) { in ApplyReferenceFilter()
321 u_mod += u_dif[sub_row * uv_diff_stride + sub_col]; in ApplyReferenceFilter()
322 v_mod += v_dif[sub_row * uv_diff_stride + sub_col]; in ApplyReferenceFilter()
332 const int sub_col = y_col + col_step; in ApplyReferenceFilter() local
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_temporal_filter.c467 const int sub_col = col + col_step; in vp9_highbd_apply_temporal_filter_c() local
469 if (sub_row >= 0 && sub_row < (int)block_height && sub_col >= 0 && in vp9_highbd_apply_temporal_filter_c()
470 sub_col < (int)block_width) { in vp9_highbd_apply_temporal_filter_c()
471 y_mod += y_diff_sse[sub_row * y_diff_stride + sub_col]; in vp9_highbd_apply_temporal_filter_c()
512 const int sub_col = uv_col + col_step; in vp9_highbd_apply_temporal_filter_c() local
514 if (sub_row >= 0 && sub_row < uv_block_height && sub_col >= 0 && in vp9_highbd_apply_temporal_filter_c()
515 sub_col < uv_block_width) { in vp9_highbd_apply_temporal_filter_c()
516 u_mod += u_diff_sse[sub_row * uv_diff_stride + sub_col]; in vp9_highbd_apply_temporal_filter_c()
517 v_mod += v_diff_sse[sub_row * uv_diff_stride + sub_col]; in vp9_highbd_apply_temporal_filter_c()
527 const int sub_col = y_col + col_step; in vp9_highbd_apply_temporal_filter_c() local
[all …]