OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TMN_TH
(Results
1 - 4
of
4
) sorted by null
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
rate_control.cpp
70
//rc[n]->
TMN_TH
= (Int)((float)LayerBitRate[n]/LayerFrameRate[n]);
78
rc[n]->
TMN_TH
= (Int)((float)LayerBitRate[n] / LayerFrameRate[n]);
98
rc[n]->
TMN_TH
= (Int)((float)(LayerBitRate[n] - LayerBitRate[n-1]) / (LayerFrameRate[n] - LayerFrameRate[n-1]));
99
rc[n]->max_BitVariance_num = (Int)((float)(rc[n]->Bs - rc[n]->VBV_fullness) * 10 / ((float)rc[n]->
TMN_TH
)) - 5;
104
rc[n]->
TMN_TH
= 1 << 30;
236
pMP->counter_BTdst = PV_MAX(pMP->counter_BTdst, (Int)((rc->Bs / 2 - rc->VBV_fullness) * 0.30 / (rc->
TMN_TH
/ 10.0) + 0.5)); /* At least 30% of VBV buffer size/2 */
239
pMP->target_bits = rc->T = rc->
TMN_TH
= (Int)(rc->
TMN_TH
* (1.0 + pMP->counter_BTdst * 0.1));
323
diff_BTCounter = (Int)((float)(rc->
TMN_TH
- rc->TMN_W - pMP->actual_bits) /
330
rc->
TMN_TH
-= (Int)((float)pMP->bitrate / (pMP->framerate + 0.0001) * (diff_BTCounter * 0.1))
[
all
...]
rate_control.h
83
Int
TMN_TH
;
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
rate_control.cpp
227
rateCtrl->
TMN_TH
= rateCtrl->bitsPerFrame;
364
pMP->counter_BTdst = AVC_MAX(pMP->counter_BTdst, (int)((rateCtrl->Bs / 2 - rateCtrl->VBV_fullness) * 0.30 / (rateCtrl->
TMN_TH
/ 10.0) + 0.5)); /* At least 30% of VBV buffer size/2 */
367
pMP->target_bits = rateCtrl->T = rateCtrl->
TMN_TH
= (int)(rateCtrl->
TMN_TH
* (1.0 + pMP->counter_BTdst * 0.1));
512
rateCtrl->
TMN_TH
-= (int)(pMP->target_bits_per_frame / 10.0);
513
rateCtrl->T = rateCtrl->
TMN_TH
- rateCtrl->TMN_W;
637
/*3.diff_counter_BTsrc, diff_counter_BTdst ==>
TMN_TH
*/
638
rateCtrl->
TMN_TH
= (int)(pMP->target_bits_per_frame);
643
rateCtrl->
TMN_TH
-= (int)(pMP->target_bits_per_frame * diff_counter_BTsrc * 0.1);
648
rateCtrl->
TMN_TH
+= (int)(pMP->target_bits_per_frame * diff_counter_BTdst * 0.1)
[
all
...]
avcenc_int.h
311
int
TMN_TH
;
Completed in 1409 milliseconds