Searched defs:num_mbs (Results 1 - 6 of 6) sorted by relevance

/external/libavc/encoder/
H A Dirc_frame_info_collector.h27 WORD32 num_mbs[MAX_MB_TYPE]; member in struct:__anon8971
70 {(frame_info)->qp_sum[(mb_type)] += (qp);(frame_info)->num_mbs[(mb_type)]++;}
/external/libavc/test/encoder/
H A Dinput.c82 WORD32 num_mbs; local
86 num_mbs = ALIGN16(ps_app_ctxt->u4_wd) * ALIGN16(ps_app_ctxt->u4_ht);
87 num_mbs /= 256;
92 size = sizeof(ih264e_mb_info1_t) * num_mbs;
96 size = sizeof(ih264e_mb_info2_t) * num_mbs;
100 size = sizeof(ih264e_mb_info3_t) * num_mbs;
104 size = sizeof(ih264e_mb_info4_t) * num_mbs;
235 WORD32 num_mbs; local
249 num_mbs = ALIGN16(ps_app_ctxt->u4_max_wd) * ALIGN16(ps_app_ctxt->u4_max_ht);
250 num_mbs /
[all...]
/external/libhevc/decoder/
H A Dihevcd_decode.c412 WORD32 num_mbs; local
414 num_mbs = (ps_codec->i4_wd * ps_codec->i4_ht + 255) >> 8;
417 memset(ps_codec->mb_map, 0, ((num_mbs + 7) >> 3));
/external/libavc/decoder/
H A Dih264d_parse_slice.c352 UWORD32 num_mbs; local
356 num_mbs = (pic_wd * pic_ht) >> 8;
360 memset((void *)ps_dec->pu1_dec_mb_map, 0, num_mbs);
366 memset((void *)ps_dec->pu1_recon_mb_map, 0, num_mbs);
372 (num_mbs * sizeof(UWORD16)));
/external/libvpx/libvpx/vp8/encoder/
H A Dfirstpass.c985 int num_mbs = cpi->common.MBs; local
989 double err_per_mb = section_err / num_mbs;
999 ? (512 * section_target_bandwitdh) / num_mbs
1000 : 512 * (section_target_bandwitdh / num_mbs);
1038 overhead_bits_per_mb = overhead_bits / num_mbs;
1104 int num_mbs = cpi->common.MBs; local
1108 double err_per_mb = section_err / num_mbs;
1123 ? (512 * section_target_bandwitdh) / num_mbs
1124 : 512 * (section_target_bandwitdh / num_mbs);
1127 overhead_bits_per_mb = overhead_bits / num_mbs;
1188 int num_mbs = cpi->common.MBs; local
1234 int num_mbs = cpi->common.MBs; local
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_firstpass.c1038 const int num_mbs = (cpi->oxcf.resize_mode != RESIZE_NONE) local
1040 const double min_err = 200 * sqrt(num_mbs);
1042 intra_factor = intra_factor / (double)num_mbs;
1043 brightness_factor = brightness_factor / (double)num_mbs;
1052 fps.pcnt_inter = (double)intercount / num_mbs;
1053 fps.pcnt_second_ref = (double)second_ref_count / num_mbs;
1054 fps.pcnt_neutral = (double)neutral_count / num_mbs;
1055 fps.intra_skip_pct = (double)intra_skip_count / num_mbs;
1070 fps.pcnt_motion = (double)mvcount / num_mbs;
1195 const int num_mbs local
1352 const int num_mbs = (cpi->oxcf.resize_mode != RESIZE_NONE) local
1491 int num_mbs = (cpi->oxcf.resize_mode != RESIZE_NONE) local
2746 const int num_mbs = (cpi->oxcf.resize_mode != RESIZE_NONE) local
[all...]

Completed in 162 milliseconds