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

Side by Side Diff: webrtc/voice_engine/channel_proxy.h

Issue 2721003002: Remove usage of VoEVolumeControl from WVoE and Audio[Send|Receive]Stream. (Closed)
Patch Set: rebase+comment 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 unified diff | Download patch
« no previous file with comments | « webrtc/voice_engine/channel.cc ('k') | webrtc/voice_engine/channel_proxy.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 TransportFeedbackObserver* transport_feedback_observer, 66 TransportFeedbackObserver* transport_feedback_observer,
67 PacketRouter* packet_router, 67 PacketRouter* packet_router,
68 RtcpBandwidthObserver* bandwidth_observer); 68 RtcpBandwidthObserver* bandwidth_observer);
69 virtual void RegisterReceiverCongestionControlObjects( 69 virtual void RegisterReceiverCongestionControlObjects(
70 PacketRouter* packet_router); 70 PacketRouter* packet_router);
71 virtual void ResetCongestionControlObjects(); 71 virtual void ResetCongestionControlObjects();
72 virtual CallStatistics GetRTCPStatistics() const; 72 virtual CallStatistics GetRTCPStatistics() const;
73 virtual std::vector<ReportBlock> GetRemoteRTCPReportBlocks() const; 73 virtual std::vector<ReportBlock> GetRemoteRTCPReportBlocks() const;
74 virtual NetworkStatistics GetNetworkStatistics() const; 74 virtual NetworkStatistics GetNetworkStatistics() const;
75 virtual AudioDecodingCallStats GetDecodingCallStatistics() const; 75 virtual AudioDecodingCallStats GetDecodingCallStatistics() const;
76 virtual int32_t GetSpeechOutputLevel() const;
76 virtual int32_t GetSpeechOutputLevelFullRange() const; 77 virtual int32_t GetSpeechOutputLevelFullRange() const;
77 virtual uint32_t GetDelayEstimate() const; 78 virtual uint32_t GetDelayEstimate() const;
78 virtual bool SetSendTelephoneEventPayloadType(int payload_type, 79 virtual bool SetSendTelephoneEventPayloadType(int payload_type,
79 int payload_frequency); 80 int payload_frequency);
80 virtual bool SendTelephoneEventOutband(int event, int duration_ms); 81 virtual bool SendTelephoneEventOutband(int event, int duration_ms);
81 virtual void SetBitrate(int bitrate_bps, int64_t probing_interval_ms); 82 virtual void SetBitrate(int bitrate_bps, int64_t probing_interval_ms);
82 virtual void SetRecPayloadType(int payload_type, 83 virtual void SetRecPayloadType(int payload_type,
83 const SdpAudioFormat& format); 84 const SdpAudioFormat& format);
84 virtual void SetSink(std::unique_ptr<AudioSinkInterface> sink); 85 virtual void SetSink(std::unique_ptr<AudioSinkInterface> sink);
85 virtual void SetInputMute(bool muted); 86 virtual void SetInputMute(bool muted);
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 rtc::RaceChecker audio_thread_race_checker_; 133 rtc::RaceChecker audio_thread_race_checker_;
133 rtc::RaceChecker video_capture_thread_race_checker_; 134 rtc::RaceChecker video_capture_thread_race_checker_;
134 ChannelOwner channel_owner_; 135 ChannelOwner channel_owner_;
135 136
136 RTC_DISALLOW_COPY_AND_ASSIGN(ChannelProxy); 137 RTC_DISALLOW_COPY_AND_ASSIGN(ChannelProxy);
137 }; 138 };
138 } // namespace voe 139 } // namespace voe
139 } // namespace webrtc 140 } // namespace webrtc
140 141
141 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_ 142 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_
OLDNEW
« no previous file with comments | « webrtc/voice_engine/channel.cc ('k') | webrtc/voice_engine/channel_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698