OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 | 219 |
220 // Called on any new send bitrate estimate. | 220 // Called on any new send bitrate estimate. |
221 void RegisterSendBitrateObserver(BitrateStatisticsObserver* observer); | 221 void RegisterSendBitrateObserver(BitrateStatisticsObserver* observer); |
222 | 222 |
223 // Implements RtpFeedback. | 223 // Implements RtpFeedback. |
224 virtual int32_t OnInitializeDecoder( | 224 virtual int32_t OnInitializeDecoder( |
225 const int32_t id, | 225 const int32_t id, |
226 const int8_t payload_type, | 226 const int8_t payload_type, |
227 const char payload_name[RTP_PAYLOAD_NAME_SIZE], | 227 const char payload_name[RTP_PAYLOAD_NAME_SIZE], |
228 const int frequency, | 228 const int frequency, |
229 const uint8_t channels, | 229 const size_t channels, |
230 const uint32_t rate); | 230 const uint32_t rate); |
231 virtual void OnIncomingSSRCChanged(const int32_t id, | 231 virtual void OnIncomingSSRCChanged(const int32_t id, |
232 const uint32_t ssrc); | 232 const uint32_t ssrc); |
233 virtual void OnIncomingCSRCChanged(const int32_t id, | 233 virtual void OnIncomingCSRCChanged(const int32_t id, |
234 const uint32_t CSRC, | 234 const uint32_t CSRC, |
235 const bool added); | 235 const bool added); |
236 | 236 |
237 int32_t SetRemoteSSRCType(const StreamType usage, const uint32_t SSRC); | 237 int32_t SetRemoteSSRCType(const StreamType usage, const uint32_t SSRC); |
238 | 238 |
239 int32_t StartSend(); | 239 int32_t StartSend(); |
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
483 const rtc::scoped_ptr<ReportBlockStats> report_block_stats_sender_; | 483 const rtc::scoped_ptr<ReportBlockStats> report_block_stats_sender_; |
484 | 484 |
485 // RtpRtcp modules, declared last as they use other members on construction. | 485 // RtpRtcp modules, declared last as they use other members on construction. |
486 const std::vector<RtpRtcp*> rtp_rtcp_modules_; | 486 const std::vector<RtpRtcp*> rtp_rtcp_modules_; |
487 size_t num_active_rtp_rtcp_modules_ GUARDED_BY(crit_); | 487 size_t num_active_rtp_rtcp_modules_ GUARDED_BY(crit_); |
488 }; | 488 }; |
489 | 489 |
490 } // namespace webrtc | 490 } // namespace webrtc |
491 | 491 |
492 #endif // WEBRTC_VIDEO_ENGINE_VIE_CHANNEL_H_ | 492 #endif // WEBRTC_VIDEO_ENGINE_VIE_CHANNEL_H_ |
OLD | NEW |