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

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

Issue 2774623006: Let PacketRouter separate send and receive modules. (Closed)
Patch Set: Send feedback messages on a send module, if possible. Created 3 years, 8 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
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 virtual void SetReceiveAudioLevelIndicationStatus(bool enable, int id); 61 virtual void SetReceiveAudioLevelIndicationStatus(bool enable, int id);
62 virtual void EnableSendTransportSequenceNumber(int id); 62 virtual void EnableSendTransportSequenceNumber(int id);
63 virtual void EnableReceiveTransportSequenceNumber(int id); 63 virtual void EnableReceiveTransportSequenceNumber(int id);
64 virtual void RegisterSenderCongestionControlObjects( 64 virtual void RegisterSenderCongestionControlObjects(
65 RtpPacketSender* rtp_packet_sender, 65 RtpPacketSender* rtp_packet_sender,
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 ResetSenderCongestionControlObjects();
72 virtual void ResetReceiverCongestionControlObjects();
72 virtual CallStatistics GetRTCPStatistics() const; 73 virtual CallStatistics GetRTCPStatistics() const;
73 virtual std::vector<ReportBlock> GetRemoteRTCPReportBlocks() const; 74 virtual std::vector<ReportBlock> GetRemoteRTCPReportBlocks() const;
74 virtual NetworkStatistics GetNetworkStatistics() const; 75 virtual NetworkStatistics GetNetworkStatistics() const;
75 virtual AudioDecodingCallStats GetDecodingCallStatistics() const; 76 virtual AudioDecodingCallStats GetDecodingCallStatistics() const;
76 virtual int GetSpeechOutputLevel() const; 77 virtual int GetSpeechOutputLevel() const;
77 virtual int GetSpeechOutputLevelFullRange() const; 78 virtual int GetSpeechOutputLevelFullRange() const;
78 virtual uint32_t GetDelayEstimate() const; 79 virtual uint32_t GetDelayEstimate() const;
79 virtual bool SetSendTelephoneEventPayloadType(int payload_type, 80 virtual bool SetSendTelephoneEventPayloadType(int payload_type,
80 int payload_frequency); 81 int payload_frequency);
81 virtual bool SendTelephoneEventOutband(int event, int duration_ms); 82 virtual bool SendTelephoneEventOutband(int event, int duration_ms);
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 rtc::RaceChecker audio_thread_race_checker_; 137 rtc::RaceChecker audio_thread_race_checker_;
137 rtc::RaceChecker video_capture_thread_race_checker_; 138 rtc::RaceChecker video_capture_thread_race_checker_;
138 ChannelOwner channel_owner_; 139 ChannelOwner channel_owner_;
139 140
140 RTC_DISALLOW_COPY_AND_ASSIGN(ChannelProxy); 141 RTC_DISALLOW_COPY_AND_ASSIGN(ChannelProxy);
141 }; 142 };
142 } // namespace voe 143 } // namespace voe
143 } // namespace webrtc 144 } // namespace webrtc
144 145
145 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_ 146 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698