| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 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 |
| 11 #include "webrtc/base/checks.h" | |
| 12 #include "webrtc/base/logging.h" | |
| 13 #include "webrtc/base/trace_event.h" | |
| 14 #include "webrtc/common_types.h" | 11 #include "webrtc/common_types.h" |
| 15 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" | 12 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" |
| 13 #include "webrtc/modules/video_coding/encoded_frame.h" |
| 16 #include "webrtc/modules/video_coding/include/video_codec_interface.h" | 14 #include "webrtc/modules/video_coding/include/video_codec_interface.h" |
| 17 #include "webrtc/modules/video_coding/encoded_frame.h" | |
| 18 #include "webrtc/modules/video_coding/jitter_buffer.h" | 15 #include "webrtc/modules/video_coding/jitter_buffer.h" |
| 19 #include "webrtc/modules/video_coding/packet.h" | 16 #include "webrtc/modules/video_coding/packet.h" |
| 20 #include "webrtc/modules/video_coding/video_coding_impl.h" | 17 #include "webrtc/modules/video_coding/video_coding_impl.h" |
| 18 #include "webrtc/rtc_base/checks.h" |
| 19 #include "webrtc/rtc_base/logging.h" |
| 20 #include "webrtc/rtc_base/trace_event.h" |
| 21 #include "webrtc/system_wrappers/include/clock.h" | 21 #include "webrtc/system_wrappers/include/clock.h" |
| 22 | 22 |
| 23 namespace webrtc { | 23 namespace webrtc { |
| 24 namespace vcm { | 24 namespace vcm { |
| 25 | 25 |
| 26 VideoReceiver::VideoReceiver(Clock* clock, | 26 VideoReceiver::VideoReceiver(Clock* clock, |
| 27 EventFactory* event_factory, | 27 EventFactory* event_factory, |
| 28 EncodedImageCallback* pre_decode_image_callback, | 28 EncodedImageCallback* pre_decode_image_callback, |
| 29 VCMTiming* timing, | 29 VCMTiming* timing, |
| 30 NackSender* nack_sender, | 30 NackSender* nack_sender, |
| (...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 448 _receiver.SetNackSettings(max_nack_list_size, max_packet_age_to_nack, | 448 _receiver.SetNackSettings(max_nack_list_size, max_packet_age_to_nack, |
| 449 max_incomplete_time_ms); | 449 max_incomplete_time_ms); |
| 450 } | 450 } |
| 451 | 451 |
| 452 int VideoReceiver::SetMinReceiverDelay(int desired_delay_ms) { | 452 int VideoReceiver::SetMinReceiverDelay(int desired_delay_ms) { |
| 453 return _receiver.SetMinReceiverDelay(desired_delay_ms); | 453 return _receiver.SetMinReceiverDelay(desired_delay_ms); |
| 454 } | 454 } |
| 455 | 455 |
| 456 } // namespace vcm | 456 } // namespace vcm |
| 457 } // namespace webrtc | 457 } // namespace webrtc |
| OLD | NEW |