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

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

Issue 109413004: Cast:Adding cast_transport_config and cleaning up (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updating chrome/renderer 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "media/cast/transport/cast_transport_config.h"
6
7 namespace media {
8 namespace cast {
9 namespace transport {
10
11 namespace {
12 const int kDefaultRtpHistoryMs = 1000;
13 const int kDefaultRtpMaxDelayMs = 100;
14 } // namespace
15
16 CastTransportConfig::CastTransportConfig()
17 : sender_ssrc(0),
18 rtp_history_ms(kDefaultRtpHistoryMs),
19 rtp_max_delay_ms(kDefaultRtpMaxDelayMs),
20 rtp_payload_type(0),
21 frequency(0),
22 channels(0),
23 aes_key (""),
24 aes_iv_mask(0) {}
25
26 CastTransportConfig::~CastTransportConfig() {}
27
28 EncodedVideoFrame::EncodedVideoFrame() {}
29 EncodedVideoFrame::~EncodedVideoFrame() {}
30
31 EncodedAudioFrame::EncodedAudioFrame() {}
32 EncodedAudioFrame::~EncodedAudioFrame() {}
33
34 // static
35 void PacketReceiver::DeletePacket(const uint8* packet) {
36 delete [] packet;
37 }
38
39 } // namespace transport
40 } // namespace cast
41 } // namespace media
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698