OLD | NEW |
| (Empty) |
1 /* | |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | |
3 * | |
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 | |
6 * tree. An additional intellectual property rights grant can be found | |
7 * in the file PATENTS. All contributing project authors may | |
8 * be found in the AUTHORS file in the root of the source tree. | |
9 */ | |
10 | |
11 #include "webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.h" | |
12 | |
13 #include <assert.h> // assert | |
14 #include <string.h> // memset | |
15 | |
16 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.h" | |
17 #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" | |
18 | |
19 namespace webrtc { | |
20 namespace RTCPHelp { | |
21 | |
22 RTCPReportBlockInformation::RTCPReportBlockInformation() | |
23 : remoteReceiveBlock(), | |
24 remoteMaxJitter(0), | |
25 RTT(0), | |
26 minRTT(0), | |
27 maxRTT(0), | |
28 avgRTT(0), | |
29 numAverageCalcs(0) { | |
30 memset(&remoteReceiveBlock, 0, sizeof(remoteReceiveBlock)); | |
31 } | |
32 | |
33 RTCPReportBlockInformation::~RTCPReportBlockInformation() {} | |
34 | |
35 } // namespace RTCPHelp | |
36 } // namespace webrtc | |
OLD | NEW |