Index: webrtc/media/engine/webrtcvoiceengine.h |
diff --git a/webrtc/media/engine/webrtcvoiceengine.h b/webrtc/media/engine/webrtcvoiceengine.h |
index fac7fa6f3049daa8f829ea251adb237538b07472..55655e3887f20f9fa1fc587f9c7795b7fbe0e93a 100644 |
--- a/webrtc/media/engine/webrtcvoiceengine.h |
+++ b/webrtc/media/engine/webrtcvoiceengine.h |
@@ -52,6 +52,7 @@ class WebRtcVoiceEngine final : public webrtc::TraceCallback { |
rtc::scoped_refptr<webrtc::AudioState> GetAudioState() const; |
VoiceMediaChannel* CreateChannel(webrtc::Call* call, |
+ const MediaConfig& config, |
const AudioOptions& options); |
bool GetOutputVolume(int* level); |
@@ -140,12 +141,15 @@ class WebRtcVoiceMediaChannel final : public VoiceMediaChannel, |
public webrtc::Transport { |
public: |
WebRtcVoiceMediaChannel(WebRtcVoiceEngine* engine, |
+ const MediaConfig& config, |
const AudioOptions& options, |
webrtc::Call* call); |
~WebRtcVoiceMediaChannel() override; |
const AudioOptions& options() const { return options_; } |
+ rtc::DiffServCodePoint PreferredDscp() const override; |
+ |
bool SetSendParameters(const AudioSendParameters& params) override; |
bool SetRecvParameters(const AudioRecvParameters& params) override; |
bool SetPlayout(bool playout) override; |