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

Side by Side Diff: media/cast/net/cast_transport_config.cc

Issue 388663003: Cast: Reshuffle files under media/cast (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: missing includes Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « media/cast/net/cast_transport_config.h ('k') | media/cast/net/cast_transport_defines.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 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 #include "media/cast/transport/cast_transport_config.h" 5 #include "media/cast/net/cast_transport_config.h"
6 6
7 namespace media { 7 namespace media {
8 namespace cast { 8 namespace cast {
9 namespace transport {
10 9
11 CastTransportRtpConfig::CastTransportRtpConfig() 10 CastTransportRtpConfig::CastTransportRtpConfig()
12 : ssrc(0), rtp_payload_type(0), stored_frames(0) {} 11 : ssrc(0), rtp_payload_type(0), stored_frames(0) {}
13 12
14 CastTransportRtpConfig::~CastTransportRtpConfig() {} 13 CastTransportRtpConfig::~CastTransportRtpConfig() {}
15 14
16 EncodedFrame::EncodedFrame() 15 EncodedFrame::EncodedFrame()
17 : dependency(UNKNOWN_DEPENDENCY), 16 : dependency(UNKNOWN_DEPENDENCY),
18 frame_id(0), 17 frame_id(0),
19 referenced_frame_id(0), 18 referenced_frame_id(0),
(...skipping 30 matching lines...) Expand all
50 RtcpReportBlock::~RtcpReportBlock() {} 49 RtcpReportBlock::~RtcpReportBlock() {}
51 50
52 RtcpDlrrReportBlock::RtcpDlrrReportBlock() 51 RtcpDlrrReportBlock::RtcpDlrrReportBlock()
53 : last_rr(0), delay_since_last_rr(0) {} 52 : last_rr(0), delay_since_last_rr(0) {}
54 RtcpDlrrReportBlock::~RtcpDlrrReportBlock() {} 53 RtcpDlrrReportBlock::~RtcpDlrrReportBlock() {}
55 54
56 SendRtcpFromRtpSenderData::SendRtcpFromRtpSenderData() 55 SendRtcpFromRtpSenderData::SendRtcpFromRtpSenderData()
57 : packet_type_flags(0), sending_ssrc(0) {} 56 : packet_type_flags(0), sending_ssrc(0) {}
58 SendRtcpFromRtpSenderData::~SendRtcpFromRtpSenderData() {} 57 SendRtcpFromRtpSenderData::~SendRtcpFromRtpSenderData() {}
59 58
60 } // namespace transport
61 } // namespace cast 59 } // namespace cast
62 } // namespace media 60 } // namespace media
OLDNEW
« no previous file with comments | « media/cast/net/cast_transport_config.h ('k') | media/cast/net/cast_transport_defines.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698