| Index: webrtc/media/webrtc/webrtcvoiceengine.h
|
| diff --git a/webrtc/media/webrtc/webrtcvoiceengine.h b/webrtc/media/webrtc/webrtcvoiceengine.h
|
| index de12ef3410fae4ad58a0cce36d219077502accc5..ffe909b42349f45d4cf1468992488b8996b06611 100644
|
| --- a/webrtc/media/webrtc/webrtcvoiceengine.h
|
| +++ b/webrtc/media/webrtc/webrtcvoiceengine.h
|
| @@ -69,6 +69,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);
|
| @@ -157,12 +158,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;
|
|
|