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

  /system/extras/tests/icachetest/
icache_main.c 13 long MBs;
30 MBs = (8388608LL*32*1000000) / (t * (1024*1024));
31 printf("\n%6lld us\t%ld MB/s\n", t, MBs);
  /external/libvpx/libvpx/vp8/common/
onyxc_int.h 98 int MBs;
alloccommon.c 84 oci->MBs = oci->mb_rows * oci->mb_cols;
  /external/libvpx/libvpx/vp9/encoder/
vp9_ratectrl.c 136 static int estimate_bits_at_q(int frame_kind, int q, int mbs,
141 // chosen such that the maximum product of Bpm and MBs fits 31 bits. The
143 return (mbs > (1 << 11)) ? (bpm >> BPER_MB_NORMBITS) * mbs
144 : (bpm * mbs) >> BPER_MB_NORMBITS;
226 (estimate_bits_at_q(1, q, cpi->common.MBs, 1.0)
264 cpi->common.MBs,
344 (target_bits_per_frame / cpi->common.MBs)
348 (target_bits_per_frame << BPER_MB_NORMBITS) / cpi->common.MBs;
vp9_firstpass.c 792 // adjust to the next row of mbs
830 fps.pcnt_inter = 1.0 * (double)intercount / cm->MBs;
831 fps.pcnt_second_ref = 1.0 * (double)second_ref_count / cm->MBs;
832 fps.pcnt_neutral = 1.0 * (double)neutral_count / cm->MBs;
846 fps.pcnt_motion = 1.0 * (double)mvcount / cpi->common.MBs;
931 // Estimate of extra bits per mv overhead for mbs
    [all...]
vp9_encodeframe.c 181 cpi->common.MBs));
185 sizeof(unsigned int) * cpi->common.MBs);
188 for (i = 1; i < cpi->common.MBs; i ++) {
201 // Even number MBs so estimate median as mean of two either side.
202 median = (1 + sortlist[cpi->common.MBs >> 1] +
203 sortlist[(cpi->common.MBs >> 1) + 1]) >> 1;
211 cpi->activity_avg = (unsigned int) (activity_sum / cpi->common.MBs);
277 // Loop through all MBs. Note activity of each, average activity and
327 // adjust to the next row of mbs
581 << 16) / cm->MBs;
    [all...]
vp9_mbgraph.c 369 // Only bother with segmentation if over 10% of the MBs in static segment
373 if (cm->MBs)
vp9_onyx_if.c 447 // All mbs should use ALTREF_FRAME
453 // Skip all MBs if high Q (0,0 mv and skip coeffs)
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
ratectrl.c 333 static int estimate_bits_at_q(int frame_kind, int Q, int MBs,
339 * chosen such that the maximum product of Bpm and MBs fits 31 bits. The
342 if (MBs > (1 << 11))
343 return (Bpm >> BPER_MB_NORMBITS) * MBs;
345 return (Bpm * MBs) >> BPER_MB_NORMBITS;
362 target = estimate_bits_at_q(INTRA_FRAME, Q, cpi->common.MBs,
    [all...]
firstpass.c 785 /* adjust to the next row of mbs */
824 fps.pcnt_inter = 1.0 * (double)intercount / cm->MBs;
825 fps.pcnt_second_ref = 1.0 * (double)second_ref_count / cm->MBs;
826 fps.pcnt_neutral = 1.0 * (double)neutral_count / cm->MBs;
839 fps.pcnt_motion = 1.0 * (double)mvcount / cpi->common.MBs;
    [all...]
encodeframe.c 154 cpi->common.MBs));
158 sizeof(unsigned int) * cpi->common.MBs );
162 for ( i = 1; i < cpi->common.MBs; i ++ )
178 /* Even number MBs so estimate median as mean of two either side. */
179 median = ( 1 + sortlist[cpi->common.MBs >> 1] +
180 sortlist[(cpi->common.MBs >> 1) + 1] ) >> 1;
188 cpi->activity_avg = (unsigned int)(activity_sum/cpi->common.MBs);
259 /* Loop through all MBs. Note activity of each, average activity and
314 /* adjust to the next row of mbs */
831 /* adjust to the next row of mbs */
    [all...]
onyx_if.c 594 * last frame 0,0 as only (last frame 0,0) MBs are eligable for
595 * refresh : that is to say Mbs likely to be background blocks.
946 unsigned int total_mbs = cm->MBs;
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_alloccommon.c 62 cm->MBs = cm->mb_rows * cm->mb_cols;
vp9_onyxc_int.h 143 // MBs, mb_rows/cols is in 16-pixel units; mi_rows/cols is in
145 int MBs;

Completed in 3243 milliseconds