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

Unified Diff: media/cast/transport/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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/cast/transport/cast_transport_config.h ('k') | media/cast/transport/cast_transport_defines.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/transport/cast_transport_config.cc
diff --git a/media/cast/transport/cast_transport_config.cc b/media/cast/transport/cast_transport_config.cc
deleted file mode 100644
index 174763c28cfbe49eae57b1db484abe8f0e23d65f..0000000000000000000000000000000000000000
--- a/media/cast/transport/cast_transport_config.cc
+++ /dev/null
@@ -1,62 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "media/cast/transport/cast_transport_config.h"
-
-namespace media {
-namespace cast {
-namespace transport {
-
-CastTransportRtpConfig::CastTransportRtpConfig()
- : ssrc(0), rtp_payload_type(0), stored_frames(0) {}
-
-CastTransportRtpConfig::~CastTransportRtpConfig() {}
-
-EncodedFrame::EncodedFrame()
- : dependency(UNKNOWN_DEPENDENCY),
- frame_id(0),
- referenced_frame_id(0),
- rtp_timestamp(0) {}
-
-EncodedFrame::~EncodedFrame() {}
-
-void EncodedFrame::CopyMetadataTo(EncodedFrame* dest) const {
- DCHECK(dest);
- dest->dependency = this->dependency;
- dest->frame_id = this->frame_id;
- dest->referenced_frame_id = this->referenced_frame_id;
- dest->rtp_timestamp = this->rtp_timestamp;
- dest->reference_time = this->reference_time;
-}
-
-RtcpSenderInfo::RtcpSenderInfo()
- : ntp_seconds(0),
- ntp_fraction(0),
- rtp_timestamp(0),
- send_packet_count(0),
- send_octet_count(0) {}
-RtcpSenderInfo::~RtcpSenderInfo() {}
-
-RtcpReportBlock::RtcpReportBlock()
- : remote_ssrc(0),
- media_ssrc(0),
- fraction_lost(0),
- cumulative_lost(0),
- extended_high_sequence_number(0),
- jitter(0),
- last_sr(0),
- delay_since_last_sr(0) {}
-RtcpReportBlock::~RtcpReportBlock() {}
-
-RtcpDlrrReportBlock::RtcpDlrrReportBlock()
- : last_rr(0), delay_since_last_rr(0) {}
-RtcpDlrrReportBlock::~RtcpDlrrReportBlock() {}
-
-SendRtcpFromRtpSenderData::SendRtcpFromRtpSenderData()
- : packet_type_flags(0), sending_ssrc(0) {}
-SendRtcpFromRtpSenderData::~SendRtcpFromRtpSenderData() {}
-
-} // namespace transport
-} // namespace cast
-} // namespace media
« no previous file with comments | « media/cast/transport/cast_transport_config.h ('k') | media/cast/transport/cast_transport_defines.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698