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

Side by Side Diff: webrtc/modules/rtp_rtcp/source/rtcp_receiver.h

Issue 1335353005: Remove channel ids from various interfaces. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 5 years, 3 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) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 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 11 matching lines...) Expand all
22 #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" 22 #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h"
23 #include "webrtc/modules/rtp_rtcp/source/tmmbr_help.h" 23 #include "webrtc/modules/rtp_rtcp/source/tmmbr_help.h"
24 #include "webrtc/typedefs.h" 24 #include "webrtc/typedefs.h"
25 25
26 namespace webrtc { 26 namespace webrtc {
27 class ModuleRtpRtcpImpl; 27 class ModuleRtpRtcpImpl;
28 28
29 class RTCPReceiver : public TMMBRHelp 29 class RTCPReceiver : public TMMBRHelp
30 { 30 {
31 public: 31 public:
32 RTCPReceiver(int32_t id, 32 RTCPReceiver(Clock* clock,
33 Clock* clock,
34 bool receiver_only, 33 bool receiver_only,
35 RtcpPacketTypeCounterObserver* packet_type_counter_observer, 34 RtcpPacketTypeCounterObserver* packet_type_counter_observer,
36 RtcpBandwidthObserver* rtcp_bandwidth_observer, 35 RtcpBandwidthObserver* rtcp_bandwidth_observer,
37 RtcpIntraFrameObserver* rtcp_intra_frame_observer, 36 RtcpIntraFrameObserver* rtcp_intra_frame_observer,
38 ModuleRtpRtcpImpl* owner); 37 ModuleRtpRtcpImpl* owner);
39 virtual ~RTCPReceiver(); 38 virtual ~RTCPReceiver();
40 39
41 RTCPMethod Status() const; 40 RTCPMethod Status() const;
42 void SetRTCPStatus(RTCPMethod method); 41 void SetRTCPStatus(RTCPMethod method);
43 42
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 278
280 RtcpStatisticsCallback* stats_callback_ GUARDED_BY(_criticalSectionFeedbacks); 279 RtcpStatisticsCallback* stats_callback_ GUARDED_BY(_criticalSectionFeedbacks);
281 280
282 RtcpPacketTypeCounterObserver* const packet_type_counter_observer_; 281 RtcpPacketTypeCounterObserver* const packet_type_counter_observer_;
283 RtcpPacketTypeCounter packet_type_counter_; 282 RtcpPacketTypeCounter packet_type_counter_;
284 283
285 RTCPUtility::NackStats nack_stats_; 284 RTCPUtility::NackStats nack_stats_;
286 }; 285 };
287 } // namespace webrtc 286 } // namespace webrtc
288 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_RECEIVER_H_ 287 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_RECEIVER_H_
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtcp_format_remb_unittest.cc ('k') | webrtc/modules/rtp_rtcp/source/rtcp_receiver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698