| 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 |
| 11 #include "webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.h" | 11 #include "webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.h" |
| 12 | 12 |
| 13 #include <assert.h> // assert | 13 #include <assert.h> // assert |
| 14 #include <string.h> // memset | 14 #include <string.h> // memset |
| 15 | 15 |
| 16 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.h" | 16 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.h" |
| 17 #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" | 17 #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" |
| 18 | 18 |
| 19 namespace webrtc { | 19 namespace webrtc { |
| 20 using namespace RTCPHelp; | 20 namespace RTCPHelp { |
| 21 | 21 |
| 22 RTCPPacketInformation::RTCPPacketInformation() | 22 RTCPPacketInformation::RTCPPacketInformation() |
| 23 : rtcpPacketTypeFlags(0), | 23 : rtcpPacketTypeFlags(0), |
| 24 remoteSSRC(0), | 24 remoteSSRC(0), |
| 25 nackSequenceNumbers(), | 25 nackSequenceNumbers(), |
| 26 applicationSubType(0), | 26 applicationSubType(0), |
| 27 applicationName(0), | 27 applicationName(0), |
| 28 applicationData(), | 28 applicationData(), |
| 29 applicationLength(0), | 29 applicationLength(0), |
| 30 rtt(0), | 30 rtt(0), |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 TmmbrSet.Tmmbr(sourceIdx), | 183 TmmbrSet.Tmmbr(sourceIdx), |
| 184 TmmbrSet.PacketOH(sourceIdx), | 184 TmmbrSet.PacketOH(sourceIdx), |
| 185 TmmbrSet.Ssrc(sourceIdx)); | 185 TmmbrSet.Ssrc(sourceIdx)); |
| 186 return 0; | 186 return 0; |
| 187 } | 187 } |
| 188 | 188 |
| 189 void RTCPReceiveInformation::VerifyAndAllocateBoundingSet( | 189 void RTCPReceiveInformation::VerifyAndAllocateBoundingSet( |
| 190 const uint32_t minimumSize) { | 190 const uint32_t minimumSize) { |
| 191 TmmbnBoundingSet.VerifyAndAllocateSet(minimumSize); | 191 TmmbnBoundingSet.VerifyAndAllocateSet(minimumSize); |
| 192 } | 192 } |
| 193 } // namespace RTCPHelp |
| 193 } // namespace webrtc | 194 } // namespace webrtc |
| OLD | NEW |