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