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

Unified Diff: webrtc/voice_engine/channel_proxy.h

Issue 2669153004: Remove remaining calls to VoE APIs from Audio[Send|Receive]Stream. (Closed)
Patch Set: fix Created 3 years, 10 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 7d18a74d575a5004b21ea840748d89289f97d518..20aba6fd95ae90e395bc6f5dfcffd40d6e43ea51 100644
--- a/webrtc/voice_engine/channel_proxy.h
+++ b/webrtc/voice_engine/channel_proxy.h
@@ -107,8 +107,15 @@ class ChannelProxy {
int* playout_buffer_delay_ms) const;
virtual uint32_t GetPlayoutTimestamp() const;
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