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

Side by Side Diff: media/cast/cast_config.cc

Issue 109413004: Cast:Adding cast_transport_config and cleaning up (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nits 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
« no previous file with comments | « media/cast/cast_config.h ('k') | media/cast/cast_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 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 #include "media/cast/cast_config.h" 5 #include "media/cast/cast_config.h"
6 6
7 namespace media { 7 namespace media {
8 namespace cast { 8 namespace cast {
9 9
10 VideoSenderConfig::VideoSenderConfig() 10 VideoSenderConfig::VideoSenderConfig()
(...skipping 28 matching lines...) Expand all
39 : feedback_ssrc(0), 39 : feedback_ssrc(0),
40 incoming_ssrc(0), 40 incoming_ssrc(0),
41 rtcp_interval(kDefaultRtcpIntervalMs), 41 rtcp_interval(kDefaultRtcpIntervalMs),
42 rtcp_mode(kRtcpReducedSize), 42 rtcp_mode(kRtcpReducedSize),
43 rtp_max_delay_ms(kDefaultRtpMaxDelayMs), 43 rtp_max_delay_ms(kDefaultRtpMaxDelayMs),
44 rtp_payload_type(0), 44 rtp_payload_type(0),
45 use_external_decoder(false), 45 use_external_decoder(false),
46 max_frame_rate(kDefaultMaxFrameRate), 46 max_frame_rate(kDefaultMaxFrameRate),
47 decoder_faster_than_max_frame_rate(true) {} 47 decoder_faster_than_max_frame_rate(true) {}
48 48
49 EncodedVideoFrame::EncodedVideoFrame() {}
50 EncodedVideoFrame::~EncodedVideoFrame() {}
51
52 EncodedAudioFrame::EncodedAudioFrame() {}
53 EncodedAudioFrame::~EncodedAudioFrame() {}
54
55 PcmAudioFrame::PcmAudioFrame() {} 49 PcmAudioFrame::PcmAudioFrame() {}
56 PcmAudioFrame::~PcmAudioFrame() {} 50 PcmAudioFrame::~PcmAudioFrame() {}
57 51
58 // static
59 void PacketReceiver::DeletePacket(const uint8* packet) {
60 delete [] packet;
61 }
62
63 } // namespace cast 52 } // namespace cast
64 } // namespace media 53 } // namespace media
OLDNEW
« no previous file with comments | « media/cast/cast_config.h ('k') | media/cast/cast_defines.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698