OLD | NEW |
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 "chrome/renderer/media/cast_send_transport.h" | 5 #include "chrome/renderer/media/cast_send_transport.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "chrome/renderer/media/cast_session.h" | 8 #include "chrome/renderer/media/cast_session.h" |
9 #include "chrome/renderer/media/cast_udp_transport.h" | 9 #include "chrome/renderer/media/cast_udp_transport.h" |
10 | 10 |
11 CastCodecSpecificParams::CastCodecSpecificParams() { | 11 CastCodecSpecificParams::CastCodecSpecificParams() { |
12 } | 12 } |
13 | 13 |
14 CastCodecSpecificParams::~CastCodecSpecificParams() { | 14 CastCodecSpecificParams::~CastCodecSpecificParams() { |
15 } | 15 } |
16 | 16 |
17 CastRtpPayloadParams::CastRtpPayloadParams() | 17 CastRtpPayloadParams::CastRtpPayloadParams() |
18 : payload_type(0), | 18 : payload_type(0), |
19 ssrc(0), | 19 ssrc(0), |
20 clock_rate(0), | 20 clock_rate(0), |
21 bitrate(0), | 21 max_bitrate(0), |
| 22 min_bitrate(0), |
22 channels(0), | 23 channels(0), |
23 width(0), | 24 width(0), |
24 height(0) { | 25 height(0) { |
25 } | 26 } |
26 | 27 |
27 CastRtpPayloadParams::~CastRtpPayloadParams() { | 28 CastRtpPayloadParams::~CastRtpPayloadParams() { |
28 } | 29 } |
29 | 30 |
30 CastRtpCaps::CastRtpCaps() { | 31 CastRtpCaps::CastRtpCaps() { |
31 } | 32 } |
(...skipping 24 matching lines...) Expand all Loading... |
56 return CastRtpParams(); | 57 return CastRtpParams(); |
57 } | 58 } |
58 | 59 |
59 void CastSendTransport::Start(const CastRtpParams& params) { | 60 void CastSendTransport::Start(const CastRtpParams& params) { |
60 NOTIMPLEMENTED(); | 61 NOTIMPLEMENTED(); |
61 } | 62 } |
62 | 63 |
63 void CastSendTransport::Stop() { | 64 void CastSendTransport::Stop() { |
64 NOTIMPLEMENTED(); | 65 NOTIMPLEMENTED(); |
65 } | 66 } |
OLD | NEW |