Searched refs:mbd (Results 1 – 15 of 15) sorted by relevance
198 MACROBLOCKD *mbd = &cpi->mb.e_mbd; in vp8_temporal_filter_iterate_c() local204 unsigned char *y_buffer = mbd->pre.y_buffer; in vp8_temporal_filter_iterate_c()205 unsigned char *u_buffer = mbd->pre.u_buffer; in vp8_temporal_filter_iterate_c()206 unsigned char *v_buffer = mbd->pre.v_buffer; in vp8_temporal_filter_iterate_c()240 mbd->block[0].bmi.mv.as_mv.row = 0; in vp8_temporal_filter_iterate_c()241 mbd->block[0].bmi.mv.as_mv.col = 0; in vp8_temporal_filter_iterate_c()265 mbd, cpi->frames[frame]->y_buffer + mb_y_offset, in vp8_temporal_filter_iterate_c()268 cpi->frames[frame]->y_stride, mbd->block[0].bmi.mv.as_mv.row, in vp8_temporal_filter_iterate_c()269 mbd->block[0].bmi.mv.as_mv.col, predictor); in vp8_temporal_filter_iterate_c()341 mbd->pre.y_buffer = y_buffer; in vp8_temporal_filter_iterate_c()[all …]
444 MACROBLOCKD *mbd = &mb->e_mbd; in vp8cx_init_mbrthread_data() local446 mbd->subpixel_predict = xd->subpixel_predict; in vp8cx_init_mbrthread_data()447 mbd->subpixel_predict8x4 = xd->subpixel_predict8x4; in vp8cx_init_mbrthread_data()448 mbd->subpixel_predict8x8 = xd->subpixel_predict8x8; in vp8cx_init_mbrthread_data()449 mbd->subpixel_predict16x16 = xd->subpixel_predict16x16; in vp8cx_init_mbrthread_data()457 mbd->frame_type = cm->frame_type; in vp8cx_init_mbrthread_data()460 mbd->pre = cm->yv12_fb[cm->lst_fb_idx]; in vp8cx_init_mbrthread_data()461 mbd->dst = cm->yv12_fb[cm->new_fb_idx]; in vp8cx_init_mbrthread_data()469 mbd->left_context = &cm->left_context; in vp8cx_init_mbrthread_data()474 mbd->fullpixel_mask = 0xffffffff; in vp8cx_init_mbrthread_data()[all …]
243 MACROBLOCKD *mbd = &cpi->mb.e_mbd; in vp8cx_set_alt_lf_level() local246 mbd->segment_feature_data[MB_LVL_ALT_LF][0] = in vp8cx_set_alt_lf_level()248 mbd->segment_feature_data[MB_LVL_ALT_LF][1] = in vp8cx_set_alt_lf_level()250 mbd->segment_feature_data[MB_LVL_ALT_LF][2] = in vp8cx_set_alt_lf_level()252 mbd->segment_feature_data[MB_LVL_ALT_LF][3] = in vp8cx_set_alt_lf_level()
442 MACROBLOCKD *mbd = &cpi->mb.e_mbd; in vp8_set_quantizer() local480 mbd->segment_feature_data[MB_LVL_ALT_Q][0] = in vp8_set_quantizer()482 mbd->segment_feature_data[MB_LVL_ALT_Q][1] = in vp8_set_quantizer()484 mbd->segment_feature_data[MB_LVL_ALT_Q][2] = in vp8_set_quantizer()486 mbd->segment_feature_data[MB_LVL_ALT_Q][3] = in vp8_set_quantizer()
94 void vp8_loop_filter_frame_init(VP8_COMMON *cm, MACROBLOCKD *mbd, in vp8_loop_filter_frame_init() argument113 if (mbd->segmentation_enabled) { in vp8_loop_filter_frame_init()115 if (mbd->mb_segement_abs_delta == SEGMENT_ABSDATA) { in vp8_loop_filter_frame_init()116 lvl_seg = mbd->segment_feature_data[MB_LVL_ALT_LF][seg]; in vp8_loop_filter_frame_init()119 lvl_seg += mbd->segment_feature_data[MB_LVL_ALT_LF][seg]; in vp8_loop_filter_frame_init()124 if (!mbd->mode_ref_lf_delta_enabled) { in vp8_loop_filter_frame_init()136 lvl_ref = lvl_seg + mbd->ref_lf_deltas[ref]; in vp8_loop_filter_frame_init()141 lvl_mode = lvl_ref + mbd->mode_lf_deltas[mode]; in vp8_loop_filter_frame_init()155 lvl_ref = lvl_seg + mbd->ref_lf_deltas[ref]; in vp8_loop_filter_frame_init()159 lvl_mode = lvl_ref + mbd->mode_lf_deltas[mode]; in vp8_loop_filter_frame_init()[all …]
72 void vp8_loop_filter_frame_init(struct VP8Common *cm, struct macroblockd *mbd,75 void vp8_loop_filter_frame(struct VP8Common *cm, struct macroblockd *mbd,79 struct macroblockd *mbd,82 void vp8_loop_filter_frame_yonly(struct VP8Common *cm, struct macroblockd *mbd,
47 MACROBLOCKD *mbd = &mbrd[i].mbd; in setup_decoding_thread_data() local48 mbd->subpixel_predict = xd->subpixel_predict; in setup_decoding_thread_data()49 mbd->subpixel_predict8x4 = xd->subpixel_predict8x4; in setup_decoding_thread_data()50 mbd->subpixel_predict8x8 = xd->subpixel_predict8x8; in setup_decoding_thread_data()51 mbd->subpixel_predict16x16 = xd->subpixel_predict16x16; in setup_decoding_thread_data()53 mbd->frame_type = pc->frame_type; in setup_decoding_thread_data()54 mbd->pre = xd->pre; in setup_decoding_thread_data()55 mbd->dst = xd->dst; in setup_decoding_thread_data()57 mbd->segmentation_enabled = xd->segmentation_enabled; in setup_decoding_thread_data()58 mbd->mb_segement_abs_delta = xd->mb_segement_abs_delta; in setup_decoding_thread_data()[all …]
34 typedef struct { MACROBLOCKD mbd; } MB_ROW_DEC; member
1207 corrupt_tokens |= pbi->mb_row_di[thread].mbd.corrupted; in vp8_decode_frame()
301 MACROBLOCKD *mbd = &td->mb.e_mbd; in vp9_temporal_filter_iterate_row_c() local311 const int mb_uv_height = 16 >> mbd->plane[1].subsampling_y; in vp9_temporal_filter_iterate_row_c()312 const int mb_uv_width = 16 >> mbd->plane[1].subsampling_x; in vp9_temporal_filter_iterate_row_c()319 if (mbd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { in vp9_temporal_filter_iterate_row_c()380 mbd, frames[frame]->y_buffer + mb_y_offset, in vp9_temporal_filter_iterate_row_c()387 if (mbd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { in vp9_temporal_filter_iterate_row_c()388 int adj_strength = strength + 2 * (mbd->bd - 8); in vp9_temporal_filter_iterate_row_c()433 if (mbd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { in vp9_temporal_filter_iterate_row_c()602 MACROBLOCKD *mbd = &cpi->td.mb.e_mbd; in temporal_filter_iterate_c() local607 for (i = 0; i < MAX_MB_PLANE; i++) input_buffer[i] = mbd->plane[i].pre[0].buf; in temporal_filter_iterate_c()[all …]
237 Date mbd = getDate(1953, Calendar.JULY, 10); in TestCoverage() local249 logln("first after " + mbd + " is " + rdr.firstAfter(mbd)); in TestCoverage()250 logln("first between " + mbd + " and " + dbd + " is " + rdr.firstBetween(mbd, dbd)); in TestCoverage()
238 Date mbd = getDate(1953, Calendar.JULY, 10); in TestCoverage() local250 logln("first after " + mbd + " is " + rdr.firstAfter(mbd)); in TestCoverage()251 logln("first between " + mbd + " and " + dbd + " is " + rdr.firstBetween(mbd, dbd)); in TestCoverage()
META-INF/ META-INF/MANIFEST.MF org/ org/springframework/ org/ ...
123 struct macroblockd *mbd, int filter_level,
384 pbi->mb_row_di[i].mbd.dst = pc->yv12_fb[pc->new_fb_idx]; in vp8_decode()385 vp8_build_block_doffsets(&pbi->mb_row_di[i].mbd); in vp8_decode()