Home | History | Annotate | Download | only in dec

Lines Matching refs:y_dst

38   uint8_t* const y_dst = dec->cache_y_ + cache_id * 16 * y_bps + mb_x * 16;
47 VP8SimpleHFilter16(y_dst, y_bps, limit + 4);
50 VP8SimpleHFilter16i(y_dst, y_bps, limit);
53 VP8SimpleVFilter16(y_dst, y_bps, limit + 4);
56 VP8SimpleVFilter16i(y_dst, y_bps, limit);
64 VP8HFilter16(y_dst, y_bps, limit + 4, ilevel, hev_thresh);
68 VP8HFilter16i(y_dst, y_bps, limit, ilevel, hev_thresh);
72 VP8VFilter16(y_dst, y_bps, limit + 4, ilevel, hev_thresh);
76 VP8VFilter16i(y_dst, y_bps, limit, ilevel, hev_thresh);
714 uint8_t* const y_dst = dec->yuv_b_ + Y_OFF;
724 Copy32b(&y_dst[j * BPS - 4], &y_dst[j * BPS + 12]);
732 y_dst[j * BPS - 1] = 129;
740 y_dst[-1 - BPS] = u_dst[-1 - BPS] = v_dst[-1 - BPS] = 129;
751 memcpy(y_dst - BPS, top_yuv[0].y, 16);
757 memset(y_dst - BPS - 1, 127, 16 + 4 + 1);
764 uint32_t* const top_right = (uint32_t*)(y_dst - BPS + 16);
778 uint8_t* const dst = y_dst + kScan[n];
785 VP8PredLuma16[pred_func](y_dst);
788 DoTransform(bits, coeffs + n * 16, y_dst + kScan[n]);
804 memcpy(top_yuv[0].y, y_dst + 15 * BPS, 16);
817 memcpy(y_out + j * dec->cache_y_stride_, y_dst + j * BPS, 16);