| OLD | NEW | 
|    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  Loading... | 
|   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  Loading... | 
|  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_ | 
| OLD | NEW |