Index: webrtc/audio/audio_send_stream.cc |
diff --git a/webrtc/audio/audio_send_stream.cc b/webrtc/audio/audio_send_stream.cc |
index 24afcbcf58e94ad2582dd9fc88cf7860f27d3b2d..1d85a072f52212b17dc1635227885253bc9bd9e9 100644 |
--- a/webrtc/audio/audio_send_stream.cc |
+++ b/webrtc/audio/audio_send_stream.cc |
@@ -97,11 +97,7 @@ AudioSendStream::~AudioSendStream() { |
void AudioSendStream::Start() { |
RTC_DCHECK(thread_checker_.CalledOnValidThread()); |
- ScopedVoEInterface<VoEBase> base(voice_engine()); |
- int error = base->StartSend(config_.voe_channel_id); |
- if (error != 0) { |
- LOG(LS_ERROR) << "AudioSendStream::Start failed with error: " << error; |
- } |
+ channel_proxy_->StartSend(); |
} |
void AudioSendStream::Stop() { |