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

Unified Diff: media/cast/transport/cast_transport_config.cc

Issue 126843003: Revert of Cast:Adding cast_transport_config and cleaning up (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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 18c71130c3cf5c179997f275d354c84727842c46..0000000000000000000000000000000000000000
--- a/media/cast/transport/cast_transport_config.cc
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright 2013 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 {
-
-namespace {
- const int kDefaultRtpHistoryMs = 1000;
- const int kDefaultRtpMaxDelayMs = 100;
-} // namespace
-
-CastTransportConfig::CastTransportConfig()
- : sender_ssrc(0),
- rtp_history_ms(kDefaultRtpHistoryMs),
- rtp_max_delay_ms(kDefaultRtpMaxDelayMs),
- rtp_payload_type(0),
- frequency(0),
- channels(0),
- aes_key (""),
- aes_iv_mask(0) {}
-
-CastTransportConfig::~CastTransportConfig() {}
-
-EncodedVideoFrame::EncodedVideoFrame() {}
-EncodedVideoFrame::~EncodedVideoFrame() {}
-
-EncodedAudioFrame::EncodedAudioFrame() {}
-EncodedAudioFrame::~EncodedAudioFrame() {}
-
-// static
-void PacketReceiver::DeletePacket(const uint8* packet) {
- delete [] packet;
-}
-
-} // 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