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

Side by Side Diff: webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.cc

Issue 1338203003: Wire up send-side bandwidth estimation. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: 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
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/rtp_utility.h" 17 #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h"
17 18
18 namespace webrtc { 19 namespace webrtc {
19 using namespace RTCPHelp; 20 using namespace RTCPHelp;
20 21
21 RTCPPacketInformation::RTCPPacketInformation() 22 RTCPPacketInformation::RTCPPacketInformation()
22 : rtcpPacketTypeFlags(0), 23 : rtcpPacketTypeFlags(0),
23 remoteSSRC(0), 24 remoteSSRC(0),
24 nackSequenceNumbers(), 25 nackSequenceNumbers(),
25 applicationSubType(0), 26 applicationSubType(0),
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 TmmbrSet.PacketOH(sourceIdx), 185 TmmbrSet.PacketOH(sourceIdx),
185 TmmbrSet.Ssrc(sourceIdx)); 186 TmmbrSet.Ssrc(sourceIdx));
186 return 0; 187 return 0;
187 } 188 }
188 189
189 void RTCPReceiveInformation::VerifyAndAllocateBoundingSet( 190 void RTCPReceiveInformation::VerifyAndAllocateBoundingSet(
190 const uint32_t minimumSize) { 191 const uint32_t minimumSize) {
191 TmmbnBoundingSet.VerifyAndAllocateSet(minimumSize); 192 TmmbnBoundingSet.VerifyAndAllocateSet(minimumSize);
192 } 193 }
193 } // namespace webrtc 194 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698