Searched refs:yuv_b_ (Results 1 – 2 of 2) sorted by relevance
36 const int yuv_size = YUV_SIZE * sizeof(*dec->yuv_b_); in VP8InitFrame()75 dec->yuv_b_ = (uint8_t*)mem; in VP8InitFrame()228 dec->yuv_b_ + Y_OFF + y * BPS, 16); in VP8StoreBlock()232 dec->yuv_b_ + U_OFF + y * BPS, 8); in VP8StoreBlock()234 dec->yuv_b_ + V_OFF + y * BPS, 8); in VP8StoreBlock()405 uint8_t* const y_dst = dec->yuv_b_ + Y_OFF; in VP8ReconstructBlock()406 uint8_t* const u_dst = dec->yuv_b_ + U_OFF; in VP8ReconstructBlock()407 uint8_t* const v_dst = dec->yuv_b_ + V_OFF; in VP8ReconstructBlock()
223 uint8_t* yuv_b_; // main block for Y/U/V (size = YUV_SIZE) member