Home
last modified time | relevance | path

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

/external/libvpx/test/
Dyuv_temporal_filter_test.cc205 const int sub_row = row + row_step; in ApplyReferenceFilter() local
208 if (sub_row >= 0 && sub_row < static_cast<int>(block_height) && in ApplyReferenceFilter()
210 y_mod += y_diff_ptr[sub_row * y_diff_stride + sub_col]; in ApplyReferenceFilter()
250 const int sub_row = uv_row + row_step; in ApplyReferenceFilter() local
253 if (sub_row >= 0 && sub_row < uv_block_height && sub_col >= 0 && 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()
265 const int sub_row = y_row + row_step; in ApplyReferenceFilter() local
267 const int y_diff = y_diff_ptr[sub_row * y_diff_stride + sub_col]; in ApplyReferenceFilter()
/external/libvpx/vp8/decoder/
Derror_concealment.c279 int sub_row; in calc_prev_mb_overlaps() local
281 for (sub_row = 0; sub_row < 4; ++sub_row) { 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/libvpx/vp9/encoder/
Dvp9_temporal_filter.c466 const int sub_row = row + row_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()
471 y_mod += y_diff_sse[sub_row * y_diff_stride + sub_col]; in vp9_highbd_apply_temporal_filter_c()
511 const int sub_row = uv_row + row_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()
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()
526 const int sub_row = y_row + row_step; in vp9_highbd_apply_temporal_filter_c() local
528 const int y_diff = y_diff_sse[sub_row * y_diff_stride + sub_col]; in vp9_highbd_apply_temporal_filter_c()
/external/libpng/
DCHANGES5253 sub_row, up_row, avg_row, and paeth_row into try_row and tst_row.