OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:threshold_bps
(Results
1 - 3
of
3
) sorted by null
/external/webrtc/webrtc/modules/video_coding/
video_sender.cc
336
int
threshold_bps
;
local
338
threshold_bps
= current_codec_.minBitrate * 1000;
340
threshold_bps
= current_codec_.simulcastStream[0].minBitrate * 1000;
344
int window_bps = std::max(
threshold_bps
/ 10, 10000);
345
_mediaOpt.SuspendBelowMinBitrate(
threshold_bps
, window_bps);
media_optimization.cc
401
void MediaOptimization::SuspendBelowMinBitrate(int
threshold_bps
,
404
assert(
threshold_bps
> 0 && window_bps >= 0);
405
suspension_threshold_bps_ =
threshold_bps
;
media_optimization.h
70
// |
threshold_bps
|, and turns back on when the rate goes back up above
71
// |
threshold_bps
| + |window_bps|.
72
void SuspendBelowMinBitrate(int
threshold_bps
, int window_bps);
Completed in 3105 milliseconds