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

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

Issue 147993010: Cast: end2end bug fixes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Disable (some) tests on win Created 6 years, 10 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
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 18 matching lines...) Expand all
29 use_external_encoder(false), 29 use_external_encoder(false),
30 frequency(0), 30 frequency(0),
31 channels(0), 31 channels(0),
32 bitrate(0) {} 32 bitrate(0) {}
33 33
34 AudioReceiverConfig::AudioReceiverConfig() 34 AudioReceiverConfig::AudioReceiverConfig()
35 : feedback_ssrc(0), 35 : feedback_ssrc(0),
36 incoming_ssrc(0), 36 incoming_ssrc(0),
37 rtcp_interval(kDefaultRtcpIntervalMs), 37 rtcp_interval(kDefaultRtcpIntervalMs),
38 rtcp_mode(kRtcpReducedSize), 38 rtcp_mode(kRtcpReducedSize),
39 rtp_max_delay_ms(kDefaultRtpMaxDelayMs),
40 rtp_payload_type(0),
39 use_external_decoder(false), 41 use_external_decoder(false),
40 frequency(0), 42 frequency(0),
41 channels(0) {} 43 channels(0) {}
42 44
43 VideoReceiverConfig::VideoReceiverConfig() 45 VideoReceiverConfig::VideoReceiverConfig()
44 : feedback_ssrc(0), 46 : feedback_ssrc(0),
45 incoming_ssrc(0), 47 incoming_ssrc(0),
46 rtcp_interval(kDefaultRtcpIntervalMs), 48 rtcp_interval(kDefaultRtcpIntervalMs),
47 rtcp_mode(kRtcpReducedSize), 49 rtcp_mode(kRtcpReducedSize),
48 rtp_max_delay_ms(kDefaultRtpMaxDelayMs), 50 rtp_max_delay_ms(kDefaultRtpMaxDelayMs),
49 rtp_payload_type(0), 51 rtp_payload_type(0),
50 use_external_decoder(false), 52 use_external_decoder(false),
51 max_frame_rate(kDefaultMaxFrameRate), 53 max_frame_rate(kDefaultMaxFrameRate),
52 decoder_faster_than_max_frame_rate(true) {} 54 decoder_faster_than_max_frame_rate(true) {}
53 55
54 PcmAudioFrame::PcmAudioFrame() {} 56 PcmAudioFrame::PcmAudioFrame() {}
55 PcmAudioFrame::~PcmAudioFrame() {} 57 PcmAudioFrame::~PcmAudioFrame() {}
56 58
57 } // namespace cast 59 } // namespace cast
58 } // namespace media 60 } // namespace media
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698