/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
dtmfsenderinterface.h | 77 // If InsertDtmf is called on the same object while an existing task for this 80 virtual bool InsertDtmf(const std::string& tones, int duration, 90 // This value will be the value last set via the InsertDtmf() method, or the 91 // default value of 100 ms if InsertDtmf() was never called. 95 // This value will be the value last set via the InsertDtmf() method, or the 96 // default value of 50 ms if InsertDtmf() was never called.
|
dtmfsender.h | 60 virtual bool InsertDtmf(const std::string& track_id, 84 virtual bool InsertDtmf(const std::string& tones, int duration, 126 PROXY_METHOD3(bool, InsertDtmf, const std::string&, int, int)
|
dtmfsender_unittest.cc | 97 virtual bool InsertDtmf(const std::string& track_label, 107 LOG(LS_VERBOSE) << "FakeDtmfProvider::InsertDtmf code=" << code 244 TEST_F(DtmfSenderTest, InsertDtmf) { 248 EXPECT_TRUE(dtmf_->InsertDtmf(tones, duration, inter_tone_gap)); 262 EXPECT_TRUE(dtmf_->InsertDtmf(tones1, duration, inter_tone_gap)); 268 EXPECT_TRUE(dtmf_->InsertDtmf(tones2, duration, inter_tone_gap)); 284 EXPECT_TRUE(dtmf_->InsertDtmf(tones, duration, inter_tone_gap)); 298 EXPECT_TRUE(dtmf_->InsertDtmf(tones, duration, inter_tone_gap)); 313 EXPECT_TRUE(dtmf_->InsertDtmf(tones1, duration, inter_tone_gap)); 317 EXPECT_TRUE(dtmf_->InsertDtmf(tones2, duration, inter_tone_gap)) [all...] |
dtmfsender.cc | 133 bool DtmfSender::InsertDtmf(const std::string& tones, int duration, 140 LOG(LS_ERROR) << "InsertDtmf is called with invalid duration or tones gap. " 149 << "InsertDtmf is called on DtmfSender that can't send DTMF."; 227 if (!provider_->InsertDtmf(track_->id(), code, duration_)) {
|
webrtcsession.h | 184 virtual bool InsertDtmf(const std::string& track_id,
|
webrtcsession.cc | [all...] |
webrtcsession_unittest.cc | [all...] |
peerconnection_unittest.cc | 251 EXPECT_TRUE(dtmf_sender->InsertDtmf("1a", 100, 50)); [all...] |
/external/chromium_org/content/renderer/media/ |
rtc_dtmf_sender_handler.cc | 41 bool RtcDtmfSenderHandler::insertDTMF(const blink::WebString& tones, 45 return dtmf_sender_->InsertDtmf(utf8_tones, static_cast<int>(duration),
|
mock_peer_connection_impl.cc | 177 virtual bool InsertDtmf(const std::string& tones, int duration,
|
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
filemediaengine.h | 229 virtual bool InsertDtmf(uint32 ssrc, int event, int duration, int flags) {
|
fakemediaengine.h | 363 virtual bool InsertDtmf(uint32 ssrc, int event_code, int duration, [all...] |
mediachannel.h | [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/ |
webrtcvoiceengine.h | 357 virtual bool InsertDtmf(uint32 ssrc, int event, int duration, int flags);
|
webrtcvoiceengine_unittest.cc | 162 // Test we can only InsertDtmf when the other side supports telephone-event. 168 EXPECT_FALSE(channel_->InsertDtmf(ssrc, 1, 111, cricket::DF_SEND)); 175 EXPECT_FALSE(channel_->InsertDtmf(ssrc, 2, 123, cricket::DF_SEND)); 181 EXPECT_FALSE(channel_->InsertDtmf(-1, 1, 111, cricket::DF_SEND)); 185 EXPECT_TRUE(channel_->InsertDtmf(ssrc, 2, 123, cricket::DF_SEND)); 190 EXPECT_TRUE(channel_->InsertDtmf(ssrc, 3, 134, cricket::DF_PLAY)); 196 EXPECT_TRUE(channel_->InsertDtmf(ssrc, 4, 145, [all...] |
webrtcvoiceengine.cc | [all...] |
/external/chromium_org/third_party/libjingle/source/talk/session/media/ |
channel.h | 399 // TODO(ronghuawu): Replace PressDTMF with InsertDtmf. 408 bool InsertDtmf(uint32 ssrc, int event_code, int duration, int flags);
|
channel.cc | [all...] |
channel_unittest.cc | [all...] |