OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:low_system_threshold
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/talk/media/base/
videoadapter.h
148
void set_low_system_threshold(float
low_system_threshold
);
149
float
low_system_threshold
() const { return low_system_threshold_; }
function in class:cricket::CoordinatedVideoAdapter
videoadapter.cc
458
float
low_system_threshold
) {
459
ASSERT(
low_system_threshold
<= 1.0f);
460
ASSERT(
low_system_threshold
>= 0.0f);
461
if (low_system_threshold_ !=
low_system_threshold
) {
463
<< low_system_threshold_ << " to " <<
low_system_threshold
;
local
464
low_system_threshold_ =
low_system_threshold
;
Completed in 4772 milliseconds