Index: webrtc/audio/audio_receive_stream.h |
diff --git a/webrtc/audio/audio_receive_stream.h b/webrtc/audio/audio_receive_stream.h |
index bc4981bbb17ced7939c5efecac5c209585f710ed..a461aadc5f58f093b532dbfac5f241452f3eb445 100644 |
--- a/webrtc/audio/audio_receive_stream.h |
+++ b/webrtc/audio/audio_receive_stream.h |
@@ -12,15 +12,13 @@ |
#define WEBRTC_AUDIO_AUDIO_RECEIVE_STREAM_H_ |
#include "webrtc/audio_receive_stream.h" |
-#include "webrtc/audio/scoped_voe_interface.h" |
+#include "webrtc/audio_state.h" |
#include "webrtc/base/thread_checker.h" |
#include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" |
-#include "webrtc/voice_engine/include/voe_base.h" |
namespace webrtc { |
class RemoteBitrateEstimator; |
-class VoiceEngine; |
namespace internal { |
@@ -28,7 +26,7 @@ class AudioReceiveStream final : public webrtc::AudioReceiveStream { |
public: |
AudioReceiveStream(RemoteBitrateEstimator* remote_bitrate_estimator, |
const webrtc::AudioReceiveStream::Config& config, |
- VoiceEngine* voice_engine); |
+ const rtc::scoped_refptr<webrtc::AudioState>& audio_state); |
~AudioReceiveStream() override; |
// webrtc::ReceiveStream implementation. |
@@ -49,9 +47,7 @@ class AudioReceiveStream final : public webrtc::AudioReceiveStream { |
rtc::ThreadChecker thread_checker_; |
RemoteBitrateEstimator* const remote_bitrate_estimator_; |
const webrtc::AudioReceiveStream::Config config_; |
- VoiceEngine* voice_engine_; |
- // We hold one interface pointer to the VoE to make sure it is kept alive. |
- ScopedVoEInterface<VoEBase> voe_base_; |
+ rtc::scoped_refptr<webrtc::AudioState> audio_state_; |
rtc::scoped_ptr<RtpHeaderParser> rtp_header_parser_; |
RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AudioReceiveStream); |