HomeSort by relevance Sort by last modified time
    Searched refs:MBs (Results 1 - 18 of 18) sorted by null

  /external/libvpx/libvpx/vp8/encoder/
ratectrl.c 279 static int estimate_bits_at_q(int frame_kind, int Q, int MBs,
284 * chosen such that the maximum product of Bpm and MBs fits 31 bits. The
287 if (MBs > (1 << 11)) {
288 return (Bpm >> BPER_MB_NORMBITS) * MBs;
290 return (Bpm * MBs) >> BPER_MB_NORMBITS;
305 target = estimate_bits_at_q(INTRA_FRAME, Q, cpi->common.MBs,
    [all...]
firstpass.c 737 /* adjust to the next row of mbs */
775 fps.pcnt_inter = 1.0 * (double)intercount / cm->MBs;
776 fps.pcnt_second_ref = 1.0 * (double)second_ref_count / cm->MBs;
777 fps.pcnt_neutral = 1.0 * (double)neutral_count / cm->MBs;
791 fps.pcnt_motion = 1.0 * (double)mvcount / cpi->common.MBs;
877 /* Estimate of extra bits per mv overhead for mbs
888 cpi->common.MBs) *
921 int num_mbs = cpi->common.MBs;
    [all...]
encodeframe.c 138 vpx_calloc(sizeof(unsigned int), cpi->common.MBs));
142 sizeof(unsigned int) * cpi->common.MBs);
145 for (i = 1; i < cpi->common.MBs; ++i) {
157 /* Even number MBs so estimate median as mean of two either side. */
158 median = (1 + sortlist[cpi->common.MBs >> 1] +
159 sortlist[(cpi->common.MBs >> 1) + 1]) >>
168 cpi->activity_avg = (unsigned int)(activity_sum / cpi->common.MBs);
234 /* Loop through all MBs. Note activity of each, average activity and
285 /* adjust to the next row of mbs */
779 /* adjust to the next row of mbs */
    [all...]
onyx_if.c 555 * last frame 0,0 as only (last frame 0,0) MBs are eligable for
556 * refresh : that is to say Mbs likely to be background blocks.
    [all...]
pickinter.c 131 unsigned int max_num = (cpi->common.MBs) / 10;
824 /* Count of the number of MBs tested so far this frame */
    [all...]
  /external/libvpx/libvpx/vp8/common/
onyxc_int.h 98 int MBs;
alloccommon.c 87 oci->MBs = oci->mb_rows * oci->mb_cols;
  /hardware/intel/img/psb_video/src/mrst/
lnc_hostcode.c 694 IMG_UINT32 MBs, MBsperSlice, MBsLastSlice;
698 MBs = ctx->Height * ctx->Width / (16 * 16);
705 MBsLastSlice = MBs - (MBsperSlice * (ctx->Slices - 1));
737 IMG_UINT32 MBs, MBsperSlice, MBsLastSlice;
741 MBs = ctx->Height * ctx->Width / (16 * 16);
748 MBsLastSlice = MBs - (MBsperSlice * (ctx->Slices - 1));
750 /* we have to verify that MBs is divisiable by BU AND that BU is > pipeline length */
755 BUs = MBs / ctx->sRCParams.BUSize;
756 while (BUs*ctx->sRCParams.BUSize != MBs) {
758 BUs = MBs / ctx->sRCParams.BUSize
    [all...]
  /external/ltp/testcases/kernel/fs/fs_di/
fs_di 73 -S SIZE in Mb Size of usable partition (in MBs) on which the testing is carried out (needs to be passed
  /external/libvpx/libvpx/vp9/common/
vp9_alloccommon.c 48 cm->MBs = cm->mb_rows * cm->mb_cols;
vp9_onyxc_int.h 175 // MBs, mb_rows/cols is in 16-pixel units; mi_rows/cols is in
177 int MBs;
  /hardware/intel/img/psb_video/src/
pnw_hostcode.c     [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_aq_cyclicrefresh.c 98 int mbs = cm->MBs; local
99 int num8x8bl = mbs << 2;
107 vp9_estimate_bits_at_q(cm->frame_type, cm->base_qindex, mbs,
112 mbs, correction_factor, cm->bit_depth) +
116 mbs, correction_factor, cm->bit_depth));
424 int num8x8bl = cm->MBs << 2;
vp9_mbgraph.c 342 // Only bother with segmentation if over 10% of the MBs in static segment
346 if (cm->MBs)
vp9_ratectrl.c 206 int vp9_estimate_bits_at_q(FRAME_TYPE frame_type, int q, int mbs,
212 (int)((uint64_t)bpm * mbs) >> BPER_MB_NORMBITS);
496 vp9_estimate_bits_at_q(cpi->common.frame_type, cm->base_qindex, cm->MBs,
559 (int)(((uint64_t)target_bits_per_frame << BPER_MB_NORMBITS) / cm->MBs);
    [all...]
vp9_firstpass.c 255 // remaining active MBs. The correction here assumes that coding
280 // remaining active MBs. The correction here assumes that coding
711 // Initial estimate here uses sqrt(mbs) to define the min_err, where the
712 // number of mbs is proportional to the image area.
714 : cpi->common.MBs;
    [all...]
vp9_encoder.c     [all...]
vp9_encodeframe.c     [all...]

Completed in 462 milliseconds