Home
last modified time | relevance | path

Searched refs:attenuationDb (Results 1 – 12 of 12) sorted by relevance

/external/chromium_org/third_party/webrtc/voice_engine/
Dvoe_dtmf_impl.cc59 int attenuationDb) in SendTelephoneEvent() argument
64 channel, eventCode, (int)outOfBand, lengthMs, attenuationDb); in SendTelephoneEvent()
93 (attenuationDb < kMinTelephoneEventAttenuation) || in SendTelephoneEvent()
94 (attenuationDb > kMaxTelephoneEventAttenuation)); in SendTelephoneEvent()
119 attenuationDb); in SendTelephoneEvent()
133 attenuationDb, in SendTelephoneEvent()
148 attenuationDb, in SendTelephoneEvent()
198 int attenuationDb) in PlayDtmfTone() argument
202 eventCode, lengthMs, attenuationDb); in PlayDtmfTone()
219 (attenuationDb <kMinTelephoneEventAttenuation) || in PlayDtmfTone()
[all …]
Ddtmf_inband.cc131 int32_t attenuationDb) in AddTone() argument
135 if (attenuationDb > 36 || eventCode > 15) in AddTone()
151 _attenuationDb = static_cast<int16_t> (attenuationDb); in AddTone()
175 int32_t attenuationDb) in StartTone() argument
179 if (attenuationDb > 36 || eventCode > 15) in StartTone()
194 _attenuationDb = static_cast<int16_t> (attenuationDb); in StartTone()
Dvoe_dtmf_impl.h28 int attenuationDb = 10);
43 int attenuationDb = 10);
Ddtmf_inband.h35 int32_t attenuationDb);
38 int StartTone(uint8_t eventCode, int32_t attenuationDb);
Doutput_mixer.h55 int PlayDtmfTone(uint8_t eventCode, int lengthMs, int attenuationDb);
Doutput_mixer.cc225 int attenuationDb) in PlayDtmfTone() argument
229 if (_dtmfGenerator.AddTone(eventCode, lengthMs, attenuationDb) != 0) in PlayDtmfTone()
Dchannel.h294 int attenuationDb, bool playDtmfEvent);
296 int attenuationDb, bool playDtmfEvent);
Dchannel.cc2593 int lengthMs, int attenuationDb, in SendTelephoneEventOutband() argument
2603 attenuationDb) != 0) in SendTelephoneEventOutband()
2616 int attenuationDb, in SendTelephoneEventInband() argument
2624 _inbandDtmfQueue.AddDtmf(eventCode, lengthMs, attenuationDb); in SendTelephoneEventInband()
4191 uint8_t attenuationDb(0); in InsertInbandDtmfTone() local
4193 eventCode = _inbandDtmfQueue.NextDtmf(&lengthMs, &attenuationDb); in InsertInbandDtmfTone()
4194 _inbandDtmfGenerator.AddTone(eventCode, lengthMs, attenuationDb); in InsertInbandDtmfTone()
4200 attenuationDb); in InsertInbandDtmfTone()
/external/chromium_org/third_party/webrtc/voice_engine/include/
Dvoe_dtmf.h61 int attenuationDb = 10) = 0;
91 int attenuationDb = 10) = 0;
95 int attenuationDb = 10) { return -1; }
/external/chromium_org/third_party/WebKit/Source/platform/audio/
DDynamicsCompressorKernel.cpp397 float attenuationDb = -linearToDecibels(attenuation); in process() local
398 attenuationDb = std::max(2.0f, attenuationDb); in process()
400 float dbPerFrame = attenuationDb / satReleaseFrames; in process()
/external/chromium_org/third_party/webrtc/voice_engine/test/win_test/
DWinTestDlg.cc626 int attenuationDb(0); in SendTelephoneEvent() local
642 attenuationDb = GetDlgItemInt(IDC_EDIT_EVENT_ATTENUATION, &ret); in SendTelephoneEvent()
646 attenuationDb = 10; in SendTelephoneEvent()
663 TEST2(_veDTMFPtr->PlayDtmfTone(eventCode, lengthMs, attenuationDb) == 0, in SendTelephoneEvent()
664 …("PlayDtmfTone(eventCode=%u, lengthMs=%d, attenuationDb=%d)"), eventCode, lengthMs, attenuationDb); in SendTelephoneEvent()
670 TEST2((res = _veDTMFPtr->StartPlayingDtmfTone(eventCode, attenuationDb)) == 0, in SendTelephoneEvent()
671 … _T("StartPlayingDtmfTone(eventCode=%u, attenuationDb=%d)"), eventCode, attenuationDb); in SendTelephoneEvent()
706 TEST2(_veDTMFPtr->PlayDtmfTone(eventCode, lengthMs, attenuationDb) == 0, in SendTelephoneEvent()
707 …ne(eventCode=%u, outBand=%d, lengthMs=%d, attenuationDb=%d)"), eventCode, lengthMs, attenuationDb); in SendTelephoneEvent()
720 … TEST2(_veDTMFPtr->SendTelephoneEvent(_channel, eventCode, outBand, lengthMs, attenuationDb) == 0, in SendTelephoneEvent()
[all …]
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
Dfakewebrtcvoiceengine.h703 (int eventCode, int attenuationDb = 10));