Home
last modified time | relevance | path

Searched refs:max_bandwidth (Results 1 – 5 of 5) sorted by relevance

/external/chromium/third_party/libjingle/source/talk/session/phone/
Dchannel.h107 bool SetMaxSendBandwidth(int max_bandwidth);
220 bool SetMaxSendBandwidth_w(int max_bandwidth);
Dchannel.cc172 bool BaseChannel::SetMaxSendBandwidth(int max_bandwidth) { in SetMaxSendBandwidth() argument
173 SetBandwidthData data(max_bandwidth); in SetMaxSendBandwidth()
486 bool BaseChannel::SetMaxSendBandwidth_w(int max_bandwidth) { in SetMaxSendBandwidth_w() argument
487 return media_channel()->SetSendBandwidth(true, max_bandwidth); in SetMaxSendBandwidth_w()
/external/chromium_org/third_party/libjingle/source/talk/session/media/
Dchannel.h118 bool SetMaxSendBandwidth(int max_bandwidth);
327 virtual bool SetMaxSendBandwidth_w(int max_bandwidth);
701 virtual bool SetMaxSendBandwidth_w(int max_bandwidth);
Dchannel.cc522 bool BaseChannel::SetMaxSendBandwidth(int max_bandwidth) { in SetMaxSendBandwidth() argument
523 SetBandwidthData data(max_bandwidth); in SetMaxSendBandwidth()
1090 bool BaseChannel::SetMaxSendBandwidth_w(int max_bandwidth) { in SetMaxSendBandwidth_w() argument
1091 return media_channel()->SetSendBandwidth(true, max_bandwidth); in SetMaxSendBandwidth_w()
/external/chromium_org/third_party/opus/src/src/
Dopus_encoder.c71 int max_bandwidth; member
225 st->max_bandwidth = OPUS_BANDWIDTH_FULLBAND; in opus_encoder_init()
1304 if (st->bandwidth>st->max_bandwidth) in opus_encode_native()
1305 st->bandwidth = st->max_bandwidth; in opus_encode_native()
2126 st->max_bandwidth = value; in opus_encoder_ctl()
2127 if (st->max_bandwidth == OPUS_BANDWIDTH_NARROWBAND) { in opus_encoder_ctl()
2129 } else if (st->max_bandwidth == OPUS_BANDWIDTH_MEDIUMBAND) { in opus_encoder_ctl()
2143 *value = st->max_bandwidth; in opus_encoder_ctl()