HomeSort by relevance Sort by last modified time
    Searched refs:InsertDtmf (Results 1 - 16 of 16) sorted by null

  /external/webrtc/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 bool InsertDtmf(const std::string& tones,
127 PROXY_METHOD3(bool, InsertDtmf, const std::string&, int, int)
dtmfsender_unittest.cc 97 bool InsertDtmf(const std::string& track_label,
108 LOG(LS_VERBOSE) << "FakeDtmfProvider::InsertDtmf code=" << code
245 TEST_F(DtmfSenderTest, InsertDtmf) {
249 EXPECT_TRUE(dtmf_->InsertDtmf(tones, duration, inter_tone_gap));
263 EXPECT_TRUE(dtmf_->InsertDtmf(tones1, duration, inter_tone_gap));
269 EXPECT_TRUE(dtmf_->InsertDtmf(tones2, duration, inter_tone_gap));
285 EXPECT_TRUE(dtmf_->InsertDtmf(tones, duration, inter_tone_gap));
299 EXPECT_TRUE(dtmf_->InsertDtmf(tones, duration, inter_tone_gap));
314 EXPECT_TRUE(dtmf_->InsertDtmf(tones1, duration, inter_tone_gap));
318 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 271 virtual bool InsertDtmf(const std::string& track_id,
webrtcsession.cc     [all...]
webrtcsession_unittest.cc     [all...]
peerconnection_unittest.cc 523 EXPECT_TRUE(dtmf_sender->InsertDtmf("1a", 100, 50));
    [all...]
  /external/webrtc/talk/media/webrtc/
webrtcvoiceengine.h 190 bool InsertDtmf(uint32_t ssrc, int event, int duration) override;
webrtcvoiceengine_unittest.cc 151 // Test we can only InsertDtmf when the other side supports telephone-event.
155 EXPECT_FALSE(channel_->InsertDtmf(ssrc, 1, 111));
162 EXPECT_FALSE(channel_->InsertDtmf(ssrc, 2, 123));
168 EXPECT_FALSE(channel_->InsertDtmf(-1, 1, 111));
174 EXPECT_TRUE(channel_->InsertDtmf(ssrc, 2, 123));
    [all...]
webrtcvoiceengine.cc     [all...]
  /external/webrtc/talk/session/media/
channel.h 376 bool InsertDtmf(uint32_t ssrc, int event_code, int duration);
channel.cc     [all...]
channel_unittest.cc     [all...]
  /external/webrtc/talk/media/base/
fakemediaengine.h 321 virtual bool InsertDtmf(uint32_t ssrc,
mediachannel.h     [all...]

Completed in 189 milliseconds