Index: webrtc/voice_engine/transmit_mixer.cc |
diff --git a/webrtc/voice_engine/transmit_mixer.cc b/webrtc/voice_engine/transmit_mixer.cc |
index 663c02f44e2aac8b007294b1702f973c60456717..07b47ec48e71a8a74e1080fe82888ee5c314a8f6 100644 |
--- a/webrtc/voice_engine/transmit_mixer.cc |
+++ b/webrtc/voice_engine/transmit_mixer.cc |
@@ -1065,33 +1065,6 @@ void TransmitMixer::TypingDetection(bool keyPressed) |
} |
#endif |
-#if WEBRTC_VOICE_ENGINE_TYPING_DETECTION |
-int TransmitMixer::TimeSinceLastTyping(int &seconds) |
-{ |
- // We check in VoEAudioProcessingImpl that this is only called when |
- // typing detection is active. |
- seconds = _typingDetection.TimeSinceLastDetectionInSeconds(); |
- return 0; |
-} |
-#endif |
- |
-#if WEBRTC_VOICE_ENGINE_TYPING_DETECTION |
-int TransmitMixer::SetTypingDetectionParameters(int timeWindow, |
- int costPerTyping, |
- int reportingThreshold, |
- int penaltyDecay, |
- int typeEventDelay) |
-{ |
- _typingDetection.SetParameters(timeWindow, |
- costPerTyping, |
- reportingThreshold, |
- penaltyDecay, |
- typeEventDelay, |
- 0); |
- return 0; |
-} |
-#endif |
- |
void TransmitMixer::EnableStereoChannelSwapping(bool enable) { |
swap_stereo_channels_ = enable; |
} |