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

Side by Side Diff: media/cast/net/rtp_sender/rtp_sender.h

Issue 112133002: Cast:Moving netwrok sender related code to a designated folder (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: moving const' to .cc Created 7 years 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file contains the interface to the cast RTP sender. 5 // This file contains the interface to the cast RTP sender.
6 6
7 #ifndef MEDIA_CAST_RTP_SENDER_RTP_SENDER_H_ 7 #ifndef MEDIA_CAST_NET_RTP_SENDER_RTP_SENDER_H_
8 #define MEDIA_CAST_RTP_SENDER_RTP_SENDER_H_ 8 #define MEDIA_CAST_NET_RTP_SENDER_RTP_SENDER_H_
9 9
10 #include <map> 10 #include <map>
11 #include <set> 11 #include <set>
12 12
13 #include "base/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
14 #include "base/time/tick_clock.h" 14 #include "base/time/tick_clock.h"
15 #include "base/time/time.h" 15 #include "base/time/time.h"
16 #include "media/cast/cast_config.h" 16 #include "media/cast/cast_config.h"
17 #include "media/cast/cast_environment.h" 17 #include "media/cast/cast_environment.h"
18 #include "media/cast/rtp_sender/packet_storage/packet_storage.h" 18 #include "media/cast/net/rtp_sender/packet_storage/packet_storage.h"
19 #include "media/cast/rtp_sender/rtp_packetizer/rtp_packetizer.h" 19 #include "media/cast/net/rtp_sender/rtp_packetizer/rtp_packetizer.h"
20 #include "media/cast/rtp_sender/rtp_packetizer/rtp_packetizer_config.h" 20 #include "media/cast/net/rtp_sender/rtp_packetizer/rtp_packetizer_config.h"
21 21
22 namespace media { 22 namespace media {
23 namespace cast { 23 namespace cast {
24 24
25 class PacedPacketSender; 25 class PacedPacketSender;
26 struct RtcpSenderInfo; 26 struct RtcpSenderInfo;
27 27
28 // This object is only called from the main cast thread. 28 // This object is only called from the main cast thread.
29 // This class handles splitting encoded audio and video frames into packets and 29 // This class handles splitting encoded audio and video frames into packets and
30 // add an RTP header to each packet. The sent packets are stored until they are 30 // add an RTP header to each packet. The sent packets are stored until they are
(...skipping 25 matching lines...) Expand all
56 scoped_refptr<CastEnvironment> cast_environment_; 56 scoped_refptr<CastEnvironment> cast_environment_;
57 RtpPacketizerConfig config_; 57 RtpPacketizerConfig config_;
58 scoped_ptr<RtpPacketizer> packetizer_; 58 scoped_ptr<RtpPacketizer> packetizer_;
59 scoped_ptr<PacketStorage> storage_; 59 scoped_ptr<PacketStorage> storage_;
60 PacedPacketSender* transport_; 60 PacedPacketSender* transport_;
61 }; 61 };
62 62
63 } // namespace cast 63 } // namespace cast
64 } // namespace media 64 } // namespace media
65 65
66 #endif // MEDIA_CAST_RTP_SENDER_RTP_SENDER_H_ 66 #endif // MEDIA_CAST_NET_RTP_SENDER_RTP_SENDER_H_
OLDNEW
« no previous file with comments | « media/cast/net/rtp_sender/rtp_packetizer/test/rtp_header_parser.cc ('k') | media/cast/net/rtp_sender/rtp_sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698