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

Side by Side Diff: webrtc/modules/rtp_rtcp/source/rtcp_sender.h

Issue 1362303002: Reland "Wire up send-side bandwidth estimation." (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 2 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
(...skipping 15 matching lines...) Expand all
26 #include "webrtc/modules/rtp_rtcp/source/rtcp_utility.h" 26 #include "webrtc/modules/rtp_rtcp/source/rtcp_utility.h"
27 #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" 27 #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h"
28 #include "webrtc/modules/rtp_rtcp/source/tmmbr_help.h" 28 #include "webrtc/modules/rtp_rtcp/source/tmmbr_help.h"
29 #include "webrtc/typedefs.h" 29 #include "webrtc/typedefs.h"
30 30
31 namespace webrtc { 31 namespace webrtc {
32 32
33 class ModuleRtpRtcpImpl; 33 class ModuleRtpRtcpImpl;
34 class RTCPReceiver; 34 class RTCPReceiver;
35 35
36 namespace rtcp {
37 class TransportFeedback;
38 }
39 class NACKStringBuilder { 36 class NACKStringBuilder {
40 public: 37 public:
41 NACKStringBuilder(); 38 NACKStringBuilder();
42 ~NACKStringBuilder(); 39 ~NACKStringBuilder();
43 40
44 void PushNACK(uint16_t nack); 41 void PushNACK(uint16_t nack);
45 std::string GetResult(); 42 std::string GetResult();
46 43
47 private: 44 private:
48 std::ostringstream stream_; 45 std::ostringstream stream_;
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 std::set<ReportFlag> report_flags_ GUARDED_BY(critical_section_rtcp_sender_); 318 std::set<ReportFlag> report_flags_ GUARDED_BY(critical_section_rtcp_sender_);
322 319
323 typedef BuildResult (RTCPSender::*Builder)(RtcpContext*); 320 typedef BuildResult (RTCPSender::*Builder)(RtcpContext*);
324 std::map<RTCPPacketType, Builder> builders_; 321 std::map<RTCPPacketType, Builder> builders_;
325 322
326 class PacketBuiltCallback; 323 class PacketBuiltCallback;
327 }; 324 };
328 } // namespace webrtc 325 } // namespace webrtc
329 326
330 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_SENDER_H_ 327 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_SENDER_H_
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtcp_receiver_unittest.cc ('k') | webrtc/modules/rtp_rtcp/source/rtcp_utility.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698