Searched refs:mbd (Results 1 – 9 of 9) sorted by relevance
/external/libvpx/vp8/common/ |
D | loopfilter.c | 252 int vp8_adjust_mb_lf_value(MACROBLOCKD *mbd, int filter_level) in vp8_adjust_mb_lf_value() argument 254 MB_MODE_INFO *mbmi = &mbd->mode_info_context->mbmi; in vp8_adjust_mb_lf_value() 256 if (mbd->mode_ref_lf_delta_enabled) in vp8_adjust_mb_lf_value() 259 filter_level += mbd->ref_lf_deltas[mbmi->ref_frame]; in vp8_adjust_mb_lf_value() 266 filter_level += mbd->mode_lf_deltas[0]; in vp8_adjust_mb_lf_value() 272 filter_level += mbd->mode_lf_deltas[1]; in vp8_adjust_mb_lf_value() 276 filter_level += mbd->mode_lf_deltas[3]; in vp8_adjust_mb_lf_value() 280 filter_level += mbd->mode_lf_deltas[2]; in vp8_adjust_mb_lf_value() 296 MACROBLOCKD *mbd, in vp8_loop_filter_frame() argument 310 int alt_flt_enabled = mbd->segmentation_enabled; in vp8_loop_filter_frame() [all …]
|
D | onyxc_int.h | 203 int vp8_adjust_mb_lf_value(MACROBLOCKD *mbd, int filter_level); 206 extern void vp8_loop_filter_frame(VP8_COMMON *cm, MACROBLOCKD *mbd, int filt_val);
|
/external/libvpx/vp8/decoder/ |
D | threading.c | 43 MACROBLOCKD *mbd = &mbrd[i].mbd; in setup_decoding_thread_data() local 45 mbd->rtcd = xd->rtcd; in setup_decoding_thread_data() 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->mode_info_context = pc->mi + pc->mode_info_stride * (i + 1); in setup_decoding_thread_data() 53 mbd->mode_info_stride = pc->mode_info_stride; in setup_decoding_thread_data() 55 mbd->frame_type = pc->frame_type; in setup_decoding_thread_data() 56 mbd->frames_since_golden = pc->frames_since_golden; in setup_decoding_thread_data() [all …]
|
D | onyxd_int.h | 30 MACROBLOCKD mbd; member
|
/external/libvpx/vp8/encoder/ |
D | temporal_filter.c | 298 MACROBLOCKD *mbd = &cpi->mb.e_mbd; in vp8_temporal_filter_iterate_c() local 304 unsigned char *y_buffer = mbd->pre.y_buffer; in vp8_temporal_filter_iterate_c() 305 unsigned char *u_buffer = mbd->pre.u_buffer; in vp8_temporal_filter_iterate_c() 306 unsigned char *v_buffer = mbd->pre.v_buffer; in vp8_temporal_filter_iterate_c() 340 mbd->block[0].bmi.mv.as_mv.row = 0; in vp8_temporal_filter_iterate_c() 341 mbd->block[0].bmi.mv.as_mv.col = 0; in vp8_temporal_filter_iterate_c() 366 (mbd, in vp8_temporal_filter_iterate_c() 371 mbd->block[0].bmi.mv.as_mv.row, in vp8_temporal_filter_iterate_c() 372 mbd->block[0].bmi.mv.as_mv.col, in vp8_temporal_filter_iterate_c() 467 mbd->pre.y_buffer = y_buffer; in vp8_temporal_filter_iterate_c() [all …]
|
D | ethreading.c | 406 MACROBLOCKD *mbd = &mb->e_mbd; in vp8cx_init_mbrthread_data() local 408 mbd->subpixel_predict = xd->subpixel_predict; in vp8cx_init_mbrthread_data() 409 mbd->subpixel_predict8x4 = xd->subpixel_predict8x4; in vp8cx_init_mbrthread_data() 410 mbd->subpixel_predict8x8 = xd->subpixel_predict8x8; in vp8cx_init_mbrthread_data() 411 mbd->subpixel_predict16x16 = xd->subpixel_predict16x16; in vp8cx_init_mbrthread_data() 413 mbd->rtcd = xd->rtcd; in vp8cx_init_mbrthread_data() 424 mbd->mode_info_context = cm->mi + x->e_mbd.mode_info_stride * (i + 1); in vp8cx_init_mbrthread_data() 425 mbd->mode_info_stride = cm->mode_info_stride; in vp8cx_init_mbrthread_data() 427 mbd->frame_type = cm->frame_type; in vp8cx_init_mbrthread_data() 429 mbd->frames_since_golden = cm->frames_since_golden; in vp8cx_init_mbrthread_data() [all …]
|
D | picklpf.c | 23 extern void vp8_loop_filter_frame(VP8_COMMON *cm, MACROBLOCKD *mbd, int filt_val); 24 extern void vp8_loop_filter_frame_yonly(VP8_COMMON *cm, MACROBLOCKD *mbd, int filt_val, int sha… 110 MACROBLOCKD *mbd, 282 MACROBLOCKD *mbd = &cpi->mb.e_mbd; in vp8cx_set_alt_lf_level() local 285 mbd->segment_feature_data[MB_LVL_ALT_LF][0] = cpi->segment_feature_data[MB_LVL_ALT_LF][0]; in vp8cx_set_alt_lf_level() 286 mbd->segment_feature_data[MB_LVL_ALT_LF][1] = cpi->segment_feature_data[MB_LVL_ALT_LF][1]; in vp8cx_set_alt_lf_level() 287 mbd->segment_feature_data[MB_LVL_ALT_LF][2] = cpi->segment_feature_data[MB_LVL_ALT_LF][2]; in vp8cx_set_alt_lf_level() 288 mbd->segment_feature_data[MB_LVL_ALT_LF][3] = cpi->segment_feature_data[MB_LVL_ALT_LF][3]; in vp8cx_set_alt_lf_level()
|
D | onyx_if.c | 55 extern void vp8_loop_filter_frame(VP8_COMMON *cm, MACROBLOCKD *mbd, int filt_val); 56 extern void vp8_loop_filter_frame_yonly(VP8_COMMON *cm, MACROBLOCKD *mbd, int filt_val, int sha… 2770 MACROBLOCKD *mbd = &cpi->mb.e_mbd; in set_quantizer() local 2795 mbd->segment_feature_data[MB_LVL_ALT_Q][0] = cpi->segment_feature_data[MB_LVL_ALT_Q][0]; in set_quantizer() 2796 mbd->segment_feature_data[MB_LVL_ALT_Q][1] = cpi->segment_feature_data[MB_LVL_ALT_Q][1]; in set_quantizer() 2797 mbd->segment_feature_data[MB_LVL_ALT_Q][2] = cpi->segment_feature_data[MB_LVL_ALT_Q][2]; in set_quantizer() 2798 mbd->segment_feature_data[MB_LVL_ALT_Q][3] = cpi->segment_feature_data[MB_LVL_ALT_Q][3]; in set_quantizer()
|
/external/kernel-headers/original/linux/mtd/ |
D | nftl.h | 22 struct mtd_blktrans_dev mbd; member
|