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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 | 244 |
245 // Implements VCMDecoderTimingCallback. | 245 // Implements VCMDecoderTimingCallback. |
246 virtual void OnDecoderTiming(int decode_ms, | 246 virtual void OnDecoderTiming(int decode_ms, |
247 int max_decode_ms, | 247 int max_decode_ms, |
248 int current_delay_ms, | 248 int current_delay_ms, |
249 int target_delay_ms, | 249 int target_delay_ms, |
250 int jitter_buffer_ms, | 250 int jitter_buffer_ms, |
251 int min_playout_delay_ms, | 251 int min_playout_delay_ms, |
252 int render_delay_ms); | 252 int render_delay_ms); |
253 | 253 |
254 // Implements VideoFrameTypeCallback. | 254 // Implements FrameTypeCallback. |
255 virtual int32_t RequestKeyFrame(); | 255 virtual int32_t RequestKeyFrame(); |
256 | 256 |
257 // Implements VideoFrameTypeCallback. | 257 // Implements FrameTypeCallback. |
258 virtual int32_t SliceLossIndicationRequest( | 258 virtual int32_t SliceLossIndicationRequest( |
259 const uint64_t picture_id); | 259 const uint64_t picture_id); |
260 | 260 |
261 // Implements VideoPacketRequestCallback. | 261 // Implements VideoPacketRequestCallback. |
262 int32_t ResendPackets(const uint16_t* sequence_numbers, | 262 int32_t ResendPackets(const uint16_t* sequence_numbers, |
263 uint16_t length) override; | 263 uint16_t length) override; |
264 | 264 |
265 int32_t SetVoiceChannel(int32_t ve_channel_id, | 265 int32_t SetVoiceChannel(int32_t ve_channel_id, |
266 VoEVideoSync* ve_sync_interface); | 266 VoEVideoSync* ve_sync_interface); |
267 int32_t VoiceChannel(); | 267 int32_t VoiceChannel(); |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
450 size_t num_rtts_ GUARDED_BY(crit_); | 450 size_t num_rtts_ GUARDED_BY(crit_); |
451 | 451 |
452 // RtpRtcp modules, declared last as they use other members on construction. | 452 // RtpRtcp modules, declared last as they use other members on construction. |
453 const std::vector<RtpRtcp*> rtp_rtcp_modules_; | 453 const std::vector<RtpRtcp*> rtp_rtcp_modules_; |
454 size_t num_active_rtp_rtcp_modules_ GUARDED_BY(crit_); | 454 size_t num_active_rtp_rtcp_modules_ GUARDED_BY(crit_); |
455 }; | 455 }; |
456 | 456 |
457 } // namespace webrtc | 457 } // namespace webrtc |
458 | 458 |
459 #endif // WEBRTC_VIDEO_ENGINE_VIE_CHANNEL_H_ | 459 #endif // WEBRTC_VIDEO_ENGINE_VIE_CHANNEL_H_ |
OLD | NEW |