Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(613)

Unified Diff: webrtc/voice_engine/channel_proxy.cc

Issue 1782053002: Relanding https://codereview.webrtc.org/1715883002/ in pieces. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/voice_engine/channel_proxy.h ('k') | webrtc/voice_engine/dtmf_inband.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/voice_engine/channel_proxy.cc
diff --git a/webrtc/voice_engine/channel_proxy.cc b/webrtc/voice_engine/channel_proxy.cc
index da7864f15feed7f7e58d0fb780c27c40453d37d8..10c88212024aa2ea911c09ccb97bcb2fd15ca65e 100644
--- a/webrtc/voice_engine/channel_proxy.cc
+++ b/webrtc/voice_engine/channel_proxy.cc
@@ -148,11 +148,9 @@ bool ChannelProxy::SetSendTelephoneEventPayloadType(int payload_type) {
return channel()->SetSendTelephoneEventPayloadType(payload_type) == 0;
}
-bool ChannelProxy::SendTelephoneEventOutband(uint8_t event,
- uint32_t duration_ms) {
+bool ChannelProxy::SendTelephoneEventOutband(int event, int duration_ms) {
RTC_DCHECK(thread_checker_.CalledOnValidThread());
- return
- channel()->SendTelephoneEventOutband(event, duration_ms, 10, false) == 0;
+ return channel()->SendTelephoneEventOutband(event, duration_ms) == 0;
}
void ChannelProxy::SetSink(std::unique_ptr<AudioSinkInterface> sink) {
« no previous file with comments | « webrtc/voice_engine/channel_proxy.h ('k') | webrtc/voice_engine/dtmf_inband.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698