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

  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
rate_control.cpp 116 pMP[n]->counter_BTsrc = (Int)((rc[n]->Bs / 2.0 - rc[n]->Bs / 3.0) / (rc[n]->bitrate / rc[n]->framerate / 10.0));
117 rc[n]->TMN_W = (Int)(rc[n]->VBV_fullness + pMP[n]->counter_BTsrc * (rc[n]->bitrate / rc[n]->framerate / 10.0));
131 pMP[n]->counter_BTdst = pMP[n]->counter_BTsrc = 0;
321 /* update pMP->counter_BTsrc, pMP->counter_BTdst */
326 pMP->counter_BTsrc += diff_BTCounter; /* pMP->actual_bits is smaller */
392 pMP->counter_BTsrc += 10 * num_skip;
399 pMP->counter_BTsrc = pMP->counter_BTdst + (Int)((float)(rc->Bs / 2 - rc->low_bound) / 2.0 / (pMP->target_bits_per_frame / 10));
483 /* update pMP[n]->counter_BTdst and pMP[n]->counter_BTsrc */
487 pMP[n]->counter_BTdst = pMP[n]->counter_BTsrc = 0;
492 pMP[n]->counter_BTsrc = -diff_counter
    [all...]
mp4lib_int.h 290 Int counter_BTsrc; /* BT = Bit Transfer, bit transfer from low motion frames or less complicatedly compressed frames */
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
rate_control.cpp 153 pMP->counter_BTsrc += 10 * (frameInc - 1);
160 pMP->counter_BTsrc = pMP->counter_BTdst + (int)((OsclFloat)(rateCtrl->Bs / 2 - rateCtrl->low_bound) / 2.0 / (pMP->target_bits_per_frame / 10));
235 rateCtrl->pMP->counter_BTsrc = (int)((rateCtrl->Bs / 2.0 - rateCtrl->Bs / 3.0) / (rateCtrl->bitsPerFrame / 10.0));
236 rateCtrl->TMN_W = (int)(rateCtrl->VBV_fullness + rateCtrl->pMP->counter_BTsrc * (rateCtrl->bitsPerFrame / 10.0));
510 pMP->counter_BTsrc <= (pMP->counter_BTdst + (int)(pMP->framerate*1.0 + 0.5)))
514 pMP->counter_BTsrc++;
525 /* BT = Bit Transfer, for pMP->counter_BTsrc, pMP->counter_BTdst */
530 /* update pMP->counter_BTsrc and pMP->counter_BTdst to avoid interger overflow */
531 if (pMP->counter_BTsrc > 1000 && pMP->counter_BTdst > 1000)
533 pMP->counter_BTsrc -= 1000
    [all...]
avcenc_int.h 191 int counter_BTsrc; /* BT = Bit Transfer, bit transfer from low motion frames or less complicatedly compressed frames */

Completed in 41 milliseconds