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

Unified Diff: webrtc/media/engine/webrtcvoiceengine.cc

Issue 2699503002: Change minimum DTMF event duration to be 40 milliseconds (Closed)
Patch Set: Change minimum DTMF event duration to be 40 milliseconds Created 3 years, 10 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
Index: webrtc/media/engine/webrtcvoiceengine.cc
diff --git a/webrtc/media/engine/webrtcvoiceengine.cc b/webrtc/media/engine/webrtcvoiceengine.cc
index f96c8e741e04ad94075ad69add97fab351230e01..52386d70a89eeebb88434081219fb4e790abf1a3 100644
--- a/webrtc/media/engine/webrtcvoiceengine.cc
+++ b/webrtc/media/engine/webrtcvoiceengine.cc
@@ -102,7 +102,7 @@ const rtc::DiffServCodePoint kAudioDscpValue = rtc::DSCP_EF;
// Constants from voice_engine_defines.h.
const int kMinTelephoneEventCode = 0; // RFC4733 (Section 2.3.1)
const int kMaxTelephoneEventCode = 255;
-const int kMinTelephoneEventDuration = 100;
+const int kMinTelephoneEventDuration = 40;
const int kMaxTelephoneEventDuration = 60000; // Actual limit is 2^16
Taylor Brandstetter 2017/02/16 18:18:22 As long as we're changing the min to match the spe
the sun 2017/02/16 19:54:58 I don't think it makes sense to check ranges at al
Taylor Brandstetter 2017/02/16 22:46:40 Sounds good to me.
const int kMinPayloadType = 0;
« no previous file with comments | « no previous file | webrtc/media/engine/webrtcvoiceengine_unittest.cc » ('j') | webrtc/media/engine/webrtcvoiceengine_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698