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 |
11 #include "webrtc/video_engine/vie_encoder.h" | 11 #include "webrtc/video_engine/vie_encoder.h" |
12 | 12 |
13 #include <assert.h> | 13 #include <assert.h> |
14 | 14 |
15 #include <algorithm> | 15 #include <algorithm> |
16 | 16 |
17 #include "webrtc/base/checks.h" | 17 #include "webrtc/base/checks.h" |
| 18 #include "webrtc/base/trace_event.h" |
18 #include "webrtc/common_video/interface/video_image.h" | 19 #include "webrtc/common_video/interface/video_image.h" |
19 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" | 20 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" |
20 #include "webrtc/frame_callback.h" | 21 #include "webrtc/frame_callback.h" |
21 #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h" | 22 #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h" |
22 #include "webrtc/modules/pacing/include/paced_sender.h" | 23 #include "webrtc/modules/pacing/include/paced_sender.h" |
23 #include "webrtc/modules/utility/interface/process_thread.h" | 24 #include "webrtc/modules/utility/interface/process_thread.h" |
24 #include "webrtc/modules/video_coding/codecs/interface/video_codec_interface.h" | 25 #include "webrtc/modules/video_coding/codecs/interface/video_codec_interface.h" |
25 #include "webrtc/modules/video_coding/main/interface/video_coding.h" | 26 #include "webrtc/modules/video_coding/main/interface/video_coding.h" |
26 #include "webrtc/modules/video_coding/main/interface/video_coding_defines.h" | 27 #include "webrtc/modules/video_coding/main/interface/video_coding_defines.h" |
27 #include "webrtc/modules/video_coding/main/source/encoded_frame.h" | 28 #include "webrtc/modules/video_coding/main/source/encoded_frame.h" |
28 #include "webrtc/system_wrappers/interface/clock.h" | 29 #include "webrtc/system_wrappers/interface/clock.h" |
29 #include "webrtc/system_wrappers/interface/critical_section_wrapper.h" | 30 #include "webrtc/system_wrappers/interface/critical_section_wrapper.h" |
30 #include "webrtc/system_wrappers/interface/logging.h" | 31 #include "webrtc/system_wrappers/interface/logging.h" |
31 #include "webrtc/system_wrappers/interface/metrics.h" | 32 #include "webrtc/system_wrappers/interface/metrics.h" |
32 #include "webrtc/system_wrappers/interface/tick_util.h" | 33 #include "webrtc/system_wrappers/interface/tick_util.h" |
33 #include "webrtc/system_wrappers/interface/trace_event.h" | |
34 #include "webrtc/video/send_statistics_proxy.h" | 34 #include "webrtc/video/send_statistics_proxy.h" |
35 #include "webrtc/video_engine/payload_router.h" | 35 #include "webrtc/video_engine/payload_router.h" |
36 #include "webrtc/video_engine/vie_defines.h" | 36 #include "webrtc/video_engine/vie_defines.h" |
37 | 37 |
38 namespace webrtc { | 38 namespace webrtc { |
39 | 39 |
40 // Margin on when we pause the encoder when the pacing buffer overflows relative | 40 // Margin on when we pause the encoder when the pacing buffer overflows relative |
41 // to the configured buffer delay. | 41 // to the configured buffer delay. |
42 static const float kEncoderPausePacerMargin = 2.0f; | 42 static const float kEncoderPausePacerMargin = 2.0f; |
43 | 43 |
(...skipping 670 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
714 const uint32_t width, | 714 const uint32_t width, |
715 const uint32_t height) { | 715 const uint32_t height) { |
716 return vpm_->SetTargetResolution(width, height, frame_rate); | 716 return vpm_->SetTargetResolution(width, height, frame_rate); |
717 } | 717 } |
718 | 718 |
719 void QMVideoSettingsCallback::SetTargetFramerate(int frame_rate) { | 719 void QMVideoSettingsCallback::SetTargetFramerate(int frame_rate) { |
720 vpm_->SetTargetFramerate(frame_rate); | 720 vpm_->SetTargetFramerate(frame_rate); |
721 } | 721 } |
722 | 722 |
723 } // namespace webrtc | 723 } // namespace webrtc |
OLD | NEW |