Lines Matching refs:mbd
46 MACROBLOCKD *mbd = &mbrd[i].mbd; in setup_decoding_thread_data() local
47 mbd->subpixel_predict = xd->subpixel_predict; in setup_decoding_thread_data()
48 mbd->subpixel_predict8x4 = xd->subpixel_predict8x4; in setup_decoding_thread_data()
49 mbd->subpixel_predict8x8 = xd->subpixel_predict8x8; in setup_decoding_thread_data()
50 mbd->subpixel_predict16x16 = xd->subpixel_predict16x16; in setup_decoding_thread_data()
52 mbd->frame_type = pc->frame_type; in setup_decoding_thread_data()
53 mbd->pre = xd->pre; in setup_decoding_thread_data()
54 mbd->dst = xd->dst; in setup_decoding_thread_data()
56 mbd->segmentation_enabled = xd->segmentation_enabled; in setup_decoding_thread_data()
57 mbd->mb_segement_abs_delta = xd->mb_segement_abs_delta; in setup_decoding_thread_data()
58 memcpy(mbd->segment_feature_data, xd->segment_feature_data, in setup_decoding_thread_data()
62 memcpy(mbd->ref_lf_deltas, xd->ref_lf_deltas, sizeof(xd->ref_lf_deltas)); in setup_decoding_thread_data()
64 memcpy(mbd->mode_lf_deltas, xd->mode_lf_deltas, sizeof(xd->mode_lf_deltas)); in setup_decoding_thread_data()
67 mbd->mode_ref_lf_delta_enabled = xd->mode_ref_lf_delta_enabled; in setup_decoding_thread_data()
68 mbd->mode_ref_lf_delta_update = xd->mode_ref_lf_delta_update; in setup_decoding_thread_data()
70 mbd->current_bc = &pbi->mbc[0]; in setup_decoding_thread_data()
72 memcpy(mbd->dequant_y1_dc, xd->dequant_y1_dc, sizeof(xd->dequant_y1_dc)); in setup_decoding_thread_data()
73 memcpy(mbd->dequant_y1, xd->dequant_y1, sizeof(xd->dequant_y1)); in setup_decoding_thread_data()
74 memcpy(mbd->dequant_y2, xd->dequant_y2, sizeof(xd->dequant_y2)); in setup_decoding_thread_data()
75 memcpy(mbd->dequant_uv, xd->dequant_uv, sizeof(xd->dequant_uv)); in setup_decoding_thread_data()
77 mbd->fullpixel_mask = 0xffffffff; in setup_decoding_thread_data()
79 if (pc->full_pixel) mbd->fullpixel_mask = 0xfffffff8; in setup_decoding_thread_data()
594 MACROBLOCKD *xd = &mbrd->mbd; in thread_decoding_proc()
643 vp8_setup_block_dptrs(&pbi->mb_row_di[ithread].mbd); in vp8_decoder_create_threads()