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

Side by Side Diff: media/cast/net/rtcp/rtcp_builder.h

Issue 495203002: Delete some dead files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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
« no previous file with comments | « no previous file | media/cast/net/rtcp/rtcp_builder.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef MEDIA_CAST_NET_RTCP_RTCP_BUILDER_H_
6 #define MEDIA_CAST_NET_RTCP_RTCP_BUILDER_H_
7
8 #include <list>
9 #include <string>
10 #include <vector>
11
12 #include "media/cast/net/cast_transport_defines.h"
13 #include "media/cast/net/pacing/paced_sender.h"
14
15 namespace media {
16 namespace cast {
17
18 class RtcpBuilder {
19 public:
20 explicit RtcpBuilder(PacedSender* const paced_packet_sender);
21
22 virtual ~RtcpBuilder();
23
24 void SendRtcpFromRtpSender(uint32 packet_type_flags,
25 const RtcpSenderInfo& sender_info,
26 const RtcpDlrrReportBlock& dlrr,
27 uint32 ssrc);
28
29 private:
30 bool BuildSR(const RtcpSenderInfo& sender_info, Packet* packet) const;
31 bool BuildDlrrRb(const RtcpDlrrReportBlock& dlrr,
32 Packet* packet) const;
33
34 PacedSender* const transport_; // Not owned by this class.
35 uint32 ssrc_;
36
37 DISALLOW_COPY_AND_ASSIGN(RtcpBuilder);
38 };
39
40 } // namespace cast
41 } // namespace media
42
43 #endif // MEDIA_CAST_NET_RTCP_RTCP_BUILDER_H_
OLDNEW
« no previous file with comments | « no previous file | media/cast/net/rtcp/rtcp_builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698