Home | History | Annotate | Download | only in test

Lines Matching defs:current

20 int CheckMb(const vpx_image_t &current, const vpx_image_t &previous, int mb_r,
25 int r_top = std::min(r + 16, static_cast<int>(current.d_h));
26 int c_top = std::min(c0 + 16, static_cast<int>(current.d_w));
29 if (plane > 0 && current.x_chroma_shift) {
33 if (plane > 0 && current.y_chroma_shift) {
39 if (current.planes[plane][current.stride[plane] * r + c] !=
49 void GenerateMap(int mb_rows, int mb_cols, const vpx_image_t &current,
53 map[mb_r * mb_cols + mb_c] = CheckMb(current, previous, mb_r, mb_c);
81 vpx_image_t *current = video->img();
85 const int width = static_cast<int>(current->d_w);
86 const int height = static_cast<int>(current->d_h);
90 GenerateMap(mb_height, mb_width, *current, *previous, active_map);