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 #ifndef MEDIA_CAST_CAST_CONFIG_H_ | 5 #ifndef MEDIA_CAST_CAST_CONFIG_H_ |
6 #define MEDIA_CAST_CAST_CONFIG_H_ | 6 #define MEDIA_CAST_CAST_CONFIG_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 // transmit/retransmit, receive, decode, and render; given its run-time | 129 // transmit/retransmit, receive, decode, and render; given its run-time |
130 // environment (sender/receiver hardware performance, network conditions, | 130 // environment (sender/receiver hardware performance, network conditions, |
131 // etc.). | 131 // etc.). |
132 int rtp_max_delay_ms; // TODO(miu): Change to TimeDelta target_playout_delay. | 132 int rtp_max_delay_ms; // TODO(miu): Change to TimeDelta target_playout_delay. |
133 | 133 |
134 // RTP payload type enum: Specifies the type/encoding of frame data. | 134 // RTP payload type enum: Specifies the type/encoding of frame data. |
135 int rtp_payload_type; | 135 int rtp_payload_type; |
136 | 136 |
137 // RTP timebase: The number of RTP units advanced per one second. For audio, | 137 // RTP timebase: The number of RTP units advanced per one second. For audio, |
138 // this is the sampling rate. For video, by convention, this is 90 kHz. | 138 // this is the sampling rate. For video, by convention, this is 90 kHz. |
139 int frequency; // TODO(miu): Rename to rtp_timebase for clarity. | 139 int rtp_timebase; |
140 | 140 |
141 // Number of channels. For audio, this is normally 2. For video, this must | 141 // Number of channels. For audio, this is normally 2. For video, this must |
142 // be 1 as Cast does not have support for stereoscopic video. | 142 // be 1 as Cast does not have support for stereoscopic video. |
143 int channels; | 143 int channels; |
144 | 144 |
145 // The target frame rate. For audio, this is normally 100 (i.e., frames have | 145 // The target frame rate. For audio, this is normally 100 (i.e., frames have |
146 // a duration of 10ms each). For video, this is normally 30, but any frame | 146 // a duration of 10ms each). For video, this is normally 30, but any frame |
147 // rate is supported. | 147 // rate is supported. |
148 int target_frame_rate; | 148 int target_frame_rate; |
149 | 149 |
(...skipping 26 matching lines...) Expand all Loading... |
176 typedef base::Callback<void(scoped_ptr<base::SharedMemory>)> | 176 typedef base::Callback<void(scoped_ptr<base::SharedMemory>)> |
177 ReceiveVideoEncodeMemoryCallback; | 177 ReceiveVideoEncodeMemoryCallback; |
178 typedef base::Callback<void(size_t size, | 178 typedef base::Callback<void(size_t size, |
179 const ReceiveVideoEncodeMemoryCallback&)> | 179 const ReceiveVideoEncodeMemoryCallback&)> |
180 CreateVideoEncodeMemoryCallback; | 180 CreateVideoEncodeMemoryCallback; |
181 | 181 |
182 } // namespace cast | 182 } // namespace cast |
183 } // namespace media | 183 } // namespace media |
184 | 184 |
185 #endif // MEDIA_CAST_CAST_CONFIG_H_ | 185 #endif // MEDIA_CAST_CAST_CONFIG_H_ |
OLD | NEW |