OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NetEqCapacityConfig
(Results
1 - 4
of
4
) sorted by null
/external/webrtc/webrtc/
config.h
129
struct
NetEqCapacityConfig
{
130
NetEqCapacityConfig
() : enabled(false), capacity(0) {}
131
explicit
NetEqCapacityConfig
(int value) : enabled(true), capacity(value) {}
/external/webrtc/talk/media/webrtc/
fakewebrtcvoiceengine.h
300
if (config.Get<webrtc::
NetEqCapacityConfig
>().enabled) {
301
ch->neteq_capacity = config.Get<webrtc::
NetEqCapacityConfig
>().capacity;
webrtcvoiceengine.cc
770
voe_config_.Set<webrtc::
NetEqCapacityConfig
>(
771
new webrtc::
NetEqCapacityConfig
(
[
all
...]
/external/webrtc/webrtc/voice_engine/
channel.cc
901
if (config.Get<
NetEqCapacityConfig
>().enabled) {
905
std::max(20, config.Get<
NetEqCapacityConfig
>().capacity);
[
all
...]
Completed in 161 milliseconds