summaryrefslogtreecommitdiff
path: root/voice_engine/voe_dtmf_impl.cc
diff options
context:
space:
mode:
authorfischman@webrtc.org <fischman@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-04-01 00:16:35 +0000
committerfischman@webrtc.org <fischman@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-04-01 00:16:35 +0000
commit172f42aa293ecac25139c766c9a85954e9b54d80 (patch)
treed40a993c2a75670fda87c4cd4e509b82307039ee /voice_engine/voe_dtmf_impl.cc
parent3f2f44046b93454c88f5610f5a91ccae49907e3d (diff)
downloadwebrtc-172f42aa293ecac25139c766c9a85954e9b54d80.tar.gz
VoiceEngine(iOS & Android): removed NOT_SUPPORTED
Also: - removed underflow of a uint32 creating crazy-large delay values - removed always-fail AudioDeviceIPhone::MicrophoneIsAvailable() impl (see bug 3132) - removed unnecessary exclusion of features from iOS & Android builds BUG=2050,3132 R=andrew@webrtc.org, niklas.enbom@webrtc.org Review URL: https://webrtc-codereview.appspot.com/10909005 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@5820 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'voice_engine/voe_dtmf_impl.cc')
-rw-r--r--voice_engine/voe_dtmf_impl.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/voice_engine/voe_dtmf_impl.cc b/voice_engine/voe_dtmf_impl.cc
index ac2c5466..9065d45e 100644
--- a/voice_engine/voe_dtmf_impl.cc
+++ b/voice_engine/voe_dtmf_impl.cc
@@ -307,7 +307,6 @@ int VoEDtmfImpl::SetDtmfPlayoutStatus(int channel, bool enable)
WEBRTC_TRACE(kTraceApiCall, kTraceVoice, VoEId(_shared->instance_id(), -1),
"SetDtmfPlayoutStatus(channel=%d, enable=%d)",
channel, enable);
- IPHONE_NOT_SUPPORTED(_shared->statistics());
if (!_shared->statistics().Initialized())
{
@@ -329,7 +328,6 @@ int VoEDtmfImpl::GetDtmfPlayoutStatus(int channel, bool& enabled)
{
WEBRTC_TRACE(kTraceApiCall, kTraceVoice, VoEId(_shared->instance_id(), -1),
"GetDtmfPlayoutStatus(channel=%d, enabled=?)", channel);
- IPHONE_NOT_SUPPORTED(_shared->statistics());
if (!_shared->statistics().Initialized())
{
_shared->SetLastError(VE_NOT_INITED, kTraceError);