Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Unified Diff: webrtc/voice_engine/channel_proxy.h

Issue 2705093002: Injectable audio encoders: WebRtcVoiceEngine and company (Closed)
Patch Set: audio_send_spec made optional<>, EnableAudioNetworkAdapter now called directly on encoder, VAD supp… Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/voice_engine/channel_proxy.h
diff --git a/webrtc/voice_engine/channel_proxy.h b/webrtc/voice_engine/channel_proxy.h
index b0d39e81a36c052e62ca0c2747356aaf36b3daf4..4cb7d7df45bbec7d8c79bca0fe59b13dddf052b1 100644
--- a/webrtc/voice_engine/channel_proxy.h
+++ b/webrtc/voice_engine/channel_proxy.h
@@ -96,10 +96,6 @@ class ChannelProxy {
GetAudioDecoderFactory() const;
virtual void SetChannelOutputVolumeScaling(float scaling);
virtual void SetRtcEventLog(RtcEventLog* event_log);
- virtual void EnableAudioNetworkAdaptor(const std::string& config_string);
- virtual void DisableAudioNetworkAdaptor();
- virtual void SetReceiverFrameLengthRange(int min_frame_length_ms,
- int max_frame_length_ms);
virtual AudioMixer::Source::AudioFrameInfo GetAudioFrameWithInfo(
int sample_rate_hz,
AudioFrame* audio_frame);
@@ -113,13 +109,6 @@ class ChannelProxy {
virtual void SetMinimumPlayoutDelay(int delay_ms);
virtual void SetRtcpRttStats(RtcpRttStats* rtcp_rtt_stats);
virtual bool GetRecCodec(CodecInst* codec_inst) const;
- virtual bool GetSendCodec(CodecInst* codec_inst) const;
- virtual bool SetVADStatus(bool enable);
- virtual bool SetCodecFECStatus(bool enable);
- virtual bool SetOpusDtx(bool enable);
- virtual bool SetOpusMaxPlaybackRate(int frequency_hz);
- virtual bool SetSendCodec(const CodecInst& codec_inst);
- virtual bool SetSendCNPayloadType(int type, PayloadFrequencies frequency);
private:
Channel* channel() const;

Powered by Google App Engine
This is Rietveld 408576698