Home
last modified time | relevance | path

Searched refs:mb_col (Results 1 – 13 of 13) sorted by relevance

/external/libvpx/vp8/common/
Ddebugmodes.c20 int mb_col; in vp8_print_modes_and_motion_vectors() local
30 for (mb_col = 0; mb_col < cols; mb_col++) in vp8_print_modes_and_motion_vectors()
49 for (mb_col = 0; mb_col < cols; mb_col++) in vp8_print_modes_and_motion_vectors()
69 for (mb_col = 0; mb_col < cols; mb_col++) in vp8_print_modes_and_motion_vectors()
117 for (mb_col = 0; mb_col < cols; mb_col++) in vp8_print_modes_and_motion_vectors()
Dloopfilter.c318 int mb_col; in vp8_loop_filter_frame() local
366 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++) in vp8_loop_filter_frame()
380 if (mb_col > 0) in vp8_loop_filter_frame()
423 int mb_col; in vp8_loop_filter_frame_yonly() local
470 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++) in vp8_loop_filter_frame_yonly()
480 if (mb_col > 0) in vp8_loop_filter_frame_yonly()
520 int mb_col; in vp8_loop_filter_partial_frame() local
578 for (mb_col = 0; mb_col < mb_cols; mb_col++) in vp8_loop_filter_partial_frame()
585 if (mb_col > 0) in vp8_loop_filter_partial_frame()
/external/libvpx/vp8/decoder/
Dreconintra_mt.h17 extern void vp8mt_build_intra_predictors_mby(VP8D_COMP *pbi, MACROBLOCKD *x, int mb_row, int mb_col
18 …rn void vp8mt_build_intra_predictors_mby_s(VP8D_COMP *pbi, MACROBLOCKD *x, int mb_row, int mb_col);
19 …ern void vp8mt_build_intra_predictors_mbuv(VP8D_COMP *pbi, MACROBLOCKD *x, int mb_row, int mb_col);
20 …n void vp8mt_build_intra_predictors_mbuv_s(VP8D_COMP *pbi, MACROBLOCKD *x, int mb_row, int mb_col);
22 …_COMP *pbi, MACROBLOCKD *x, int b_mode, unsigned char *predictor, int mb_row, int mb_col, int num);
23 extern void vp8mt_intra_prediction_down_copy(VP8D_COMP *pbi, MACROBLOCKD *x, int mb_row, int mb_col
Dthreading.c100 void vp8mt_decode_macroblock(VP8D_COMP *pbi, MACROBLOCKD *xd, int mb_row, int mb_col) in vp8mt_decode_macroblock() argument
131 vp8mt_build_intra_predictors_mbuv_s(pbi, xd, mb_row, mb_col); in vp8mt_decode_macroblock()
132 vp8mt_build_intra_predictors_mby_s(pbi, xd, mb_row, mb_col); in vp8mt_decode_macroblock()
147 vp8mt_build_intra_predictors_mbuv(pbi, xd, mb_row, mb_col); in vp8mt_decode_macroblock()
151 vp8mt_build_intra_predictors_mby(pbi, xd, mb_row, mb_col); in vp8mt_decode_macroblock()
153 vp8mt_intra_prediction_down_copy(pbi, xd, mb_row, mb_col); in vp8mt_decode_macroblock()
196 vp8mt_predict_intra4x4(pbi, xd, b->bmi.mode, b->predictor, mb_row, mb_col, i); in vp8mt_decode_macroblock()
229 (void) mb_col; in vp8mt_decode_macroblock()
266 int mb_col; in vp8_thread_decoding_proc() local
294 for (mb_col = 0; mb_col < pc->mb_cols; mb_col++) in vp8_thread_decoding_proc()
[all …]
Dreconintra_mt.c22 void vp8mt_build_intra_predictors_mby(VP8D_COMP *pbi, MACROBLOCKD *x, int mb_row, int mb_col) in vp8mt_build_intra_predictors_mby() argument
34 yabove_row = pbi->mt_yabove_row[mb_row] + mb_col*16 +32; in vp8mt_build_intra_predictors_mby()
153 (void) mb_col; in vp8mt_build_intra_predictors_mby()
157 void vp8mt_build_intra_predictors_mby_s(VP8D_COMP *pbi, MACROBLOCKD *x, int mb_row, int mb_col) in vp8mt_build_intra_predictors_mby_s() argument
172 yabove_row = pbi->mt_yabove_row[mb_row] + mb_col*16 +32; in vp8mt_build_intra_predictors_mby_s()
296 (void) mb_col; in vp8mt_build_intra_predictors_mby_s()
300 void vp8mt_build_intra_predictors_mbuv(VP8D_COMP *pbi, MACROBLOCKD *x, int mb_row, int mb_col) in vp8mt_build_intra_predictors_mbuv() argument
317 uabove_row = pbi->mt_uabove_row[mb_row] + mb_col*8 +16; in vp8mt_build_intra_predictors_mbuv()
318 vabove_row = pbi->mt_vabove_row[mb_row] + mb_col*8 +16; in vp8mt_build_intra_predictors_mbuv()
459 (void) mb_col; in vp8mt_build_intra_predictors_mbuv()
[all …]
Ddecodemv.c65 static void vp8_kfread_modes(VP8D_COMP *pbi, MODE_INFO *m, int mb_row, int mb_col) in vp8_kfread_modes() argument
291 int mb_row, int mb_col) in vp8_read_mb_modes_mv() argument
314 mb_to_left_edge = -((mb_col * 16) << 3); in vp8_read_mb_modes_mv()
318 mb_to_right_edge = ((pbi->common.mb_cols - 1 - mb_col) * 16) << 3; in vp8_read_mb_modes_mv()
532 int mb_col = -1; in vp8_decode_mode_mvs() local
544 while (++mb_col < pbi->common.mb_cols) in vp8_decode_mode_mvs()
548 vp8_kfread_modes(pbi, mi, mb_row, mb_col); in vp8_decode_mode_mvs()
550 vp8_read_mb_modes_mv(pbi, mi, &mi->mbmi, mb_row, mb_col); in vp8_decode_mode_mvs()
Ddecodframe.c331 int mb_col; in vp8_decode_mb_row() local
348 for (mb_col = 0; mb_col < pc->mb_cols; mb_col++) in vp8_decode_mb_row()
363 xd->mb_to_left_edge = -((mb_col * 16) << 3); in vp8_decode_mb_row()
364 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3; in vp8_decode_mb_row()
370 xd->left_available = (mb_col != 0); in vp8_decode_mb_row()
/external/libvpx/vp8/encoder/
Dethreading.c58 int mb_col; in thread_encoding_proc() local
86 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++) in thread_encoding_proc()
90 … while (mb_col > (*last_row_current_mb_col - 1) && *last_row_current_mb_col != cm->mb_cols - 1) in thread_encoding_proc()
98 xd->mb_to_left_edge = -((mb_col * 16) << 3); in thread_encoding_proc()
99 xd->mb_to_right_edge = ((cm->mb_cols - 1 - mb_col) * 16) << 3; in thread_encoding_proc()
104 x->mv_col_min = -((mb_col * 16) + (VP8BORDERINPIXELS - 16)); in thread_encoding_proc()
105 … x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16) + (VP8BORDERINPIXELS - 16); in thread_encoding_proc()
112 xd->left_available = (mb_col != 0); in thread_encoding_proc()
119 if (cpi->segmentation_map[seg_map_index+mb_col] <= 3) in thread_encoding_proc()
120 … xd->mode_info_context->mbmi.segment_id = cpi->segmentation_map[seg_map_index+mb_col]; in thread_encoding_proc()
[all …]
Dsegmentation.c17 int mb_row, mb_col; in vp8_update_gf_useage_maps() local
35 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++) in vp8_update_gf_useage_maps()
Dencodeframe.c379 int mb_col; in encode_mb_row() local
409 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++) in encode_mb_row()
414 xd->mb_to_left_edge = -((mb_col * 16) << 3); in encode_mb_row()
415 xd->mb_to_right_edge = ((cm->mb_cols - 1 - mb_col) * 16) << 3; in encode_mb_row()
419 x->mv_col_min = -((mb_col * 16) + (VP8BORDERINPIXELS - 16)); in encode_mb_row()
420 x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16) in encode_mb_row()
426 xd->left_available = (mb_col != 0); in encode_mb_row()
433 if (cpi->segmentation_map[seg_map_index+mb_col] <= 3) in encode_mb_row()
434 … xd->mode_info_context->mbmi.segment_id = cpi->segmentation_map[seg_map_index+mb_col]; in encode_mb_row()
443 x->active_ptr = cpi->active_map + seg_map_index + mb_col; in encode_mb_row()
[all …]
Dtemporal_filter.c321 int mb_col, mb_row; in vp8cx_temp_blur1_c() local
357 for (mb_col = 0; mb_col < cols; mb_col++) in vp8cx_temp_blur1_c()
368 cpi->mb.mv_col_min = -((mb_col * 16) + (VP8BORDERINPIXELS - 19)); in vp8cx_temp_blur1_c()
369 cpi->mb.mv_col_max = ((cpi->common.mb_cols - 1 - mb_col) * 16) in vp8cx_temp_blur1_c()
Dfirstpass.c514 int mb_row, mb_col; in vp8_first_pass() local
585 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++) in vp8_first_pass()
591 int use_dc_pred = (mb_col || mb_row) && (!mb_col || !mb_row); in vp8_first_pass()
596 xd->left_available = (mb_col != 0); in vp8_first_pass()
614 x->mv_col_min = -((mb_col * 16) + (VP8BORDERINPIXELS - 16)); in vp8_first_pass()
615 x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16) + (VP8BORDERINPIXELS - 16); in vp8_first_pass()
726 if (mb_col < cm->mb_cols / 2) in vp8_first_pass()
733 else if (mb_col > cm->mb_cols / 2) in vp8_first_pass()
Dbitstream.c921 int mb_col = -1; in pack_inter_mode_mvs() local
923 while (++mb_col < pc->mb_cols) in pack_inter_mode_mvs()
933 xd->mb_to_left_edge = -((mb_col * 16) << 3); in pack_inter_mode_mvs()
934 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3; in pack_inter_mode_mvs()
1091 int mb_col = -1; in write_kfmodes() local
1093 while (++mb_col < c->mb_cols) in write_kfmodes()