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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 CriticalSectionWrapper::CreateCriticalSection()), | 61 CriticalSectionWrapper::CreateCriticalSection()), |
62 main_ssrc_(0), | 62 main_ssrc_(0), |
63 _remoteSSRC(0), | 63 _remoteSSRC(0), |
64 _remoteSenderInfo(), | 64 _remoteSenderInfo(), |
65 _lastReceivedSRNTPsecs(0), | 65 _lastReceivedSRNTPsecs(0), |
66 _lastReceivedSRNTPfrac(0), | 66 _lastReceivedSRNTPfrac(0), |
67 _lastReceivedXRNTPsecs(0), | 67 _lastReceivedXRNTPsecs(0), |
68 _lastReceivedXRNTPfrac(0), | 68 _lastReceivedXRNTPfrac(0), |
69 xr_rr_rtt_ms_(0), | 69 xr_rr_rtt_ms_(0), |
70 _receivedInfoMap(), | 70 _receivedInfoMap(), |
71 _packetTimeOutMS(0), | |
72 _lastReceivedRrMs(0), | 71 _lastReceivedRrMs(0), |
73 _lastIncreasedSequenceNumberMs(0), | 72 _lastIncreasedSequenceNumberMs(0), |
74 stats_callback_(NULL), | 73 stats_callback_(NULL), |
75 packet_type_counter_observer_(packet_type_counter_observer), | 74 packet_type_counter_observer_(packet_type_counter_observer), |
76 num_skipped_packets_(0), | 75 num_skipped_packets_(0), |
77 last_skipped_packets_warning_(clock->TimeInMilliseconds()) { | 76 last_skipped_packets_warning_(clock->TimeInMilliseconds()) { |
78 memset(&_remoteSenderInfo, 0, sizeof(_remoteSenderInfo)); | 77 memset(&_remoteSenderInfo, 0, sizeof(_remoteSenderInfo)); |
79 } | 78 } |
80 | 79 |
81 RTCPReceiver::~RTCPReceiver() { | 80 RTCPReceiver::~RTCPReceiver() { |
(...skipping 1364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1446 return -1; | 1445 return -1; |
1447 } | 1446 } |
1448 num += receiveInfo->TmmbrSet.lengthOfSet(); | 1447 num += receiveInfo->TmmbrSet.lengthOfSet(); |
1449 receiveInfoIt++; | 1448 receiveInfoIt++; |
1450 } | 1449 } |
1451 } | 1450 } |
1452 return num; | 1451 return num; |
1453 } | 1452 } |
1454 | 1453 |
1455 } // namespace webrtc | 1454 } // namespace webrtc |
OLD | NEW |