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/vie_encoder.h" | 11 #include "webrtc/video/vie_encoder.h" |
12 | 12 |
13 #include <algorithm> | 13 #include <algorithm> |
14 #include <limits> | 14 #include <limits> |
15 #include <utility> | 15 #include <utility> |
16 | 16 |
17 #include "webrtc/modules/video_coding/include/video_codec_initializer.h" | 17 #include "webrtc/modules/video_coding/include/video_codec_initializer.h" |
18 #include "webrtc/base/arraysize.h" | |
18 #include "webrtc/base/checks.h" | 19 #include "webrtc/base/checks.h" |
19 #include "webrtc/base/logging.h" | 20 #include "webrtc/base/logging.h" |
20 #include "webrtc/base/trace_event.h" | 21 #include "webrtc/base/trace_event.h" |
21 #include "webrtc/base/timeutils.h" | 22 #include "webrtc/base/timeutils.h" |
22 #include "webrtc/common_video/include/video_bitrate_allocator.h" | 23 #include "webrtc/common_video/include/video_bitrate_allocator.h" |
23 #include "webrtc/modules/pacing/paced_sender.h" | 24 #include "webrtc/modules/pacing/paced_sender.h" |
24 #include "webrtc/modules/video_coding/codecs/vp8/temporal_layers.h" | 25 #include "webrtc/modules/video_coding/codecs/vp8/temporal_layers.h" |
25 #include "webrtc/modules/video_coding/include/video_coding.h" | 26 #include "webrtc/modules/video_coding/include/video_coding.h" |
26 #include "webrtc/modules/video_coding/include/video_coding_defines.h" | 27 #include "webrtc/modules/video_coding/include/video_coding_defines.h" |
27 #include "webrtc/video/overuse_frame_detector.h" | 28 #include "webrtc/video/overuse_frame_detector.h" |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
255 encoder_start_bitrate_bps_(0), | 256 encoder_start_bitrate_bps_(0), |
256 max_data_payload_length_(0), | 257 max_data_payload_length_(0), |
257 nack_enabled_(false), | 258 nack_enabled_(false), |
258 last_observed_bitrate_bps_(0), | 259 last_observed_bitrate_bps_(0), |
259 encoder_paused_and_dropped_frame_(false), | 260 encoder_paused_and_dropped_frame_(false), |
260 has_received_sli_(false), | 261 has_received_sli_(false), |
261 picture_id_sli_(0), | 262 picture_id_sli_(0), |
262 has_received_rpsi_(false), | 263 has_received_rpsi_(false), |
263 picture_id_rpsi_(0), | 264 picture_id_rpsi_(0), |
264 clock_(Clock::GetRealTimeClock()), | 265 clock_(Clock::GetRealTimeClock()), |
266 scale_counter_(kScaleReasonSize, 0), | |
265 last_frame_width_(0), | 267 last_frame_width_(0), |
266 last_frame_height_(0), | 268 last_frame_height_(0), |
267 last_captured_timestamp_(0), | 269 last_captured_timestamp_(0), |
268 delta_ntp_internal_ms_(clock_->CurrentNtpInMilliseconds() - | 270 delta_ntp_internal_ms_(clock_->CurrentNtpInMilliseconds() - |
269 clock_->TimeInMilliseconds()), | 271 clock_->TimeInMilliseconds()), |
270 last_frame_log_ms_(clock_->TimeInMilliseconds()), | 272 last_frame_log_ms_(clock_->TimeInMilliseconds()), |
271 captured_frame_count_(0), | 273 captured_frame_count_(0), |
272 dropped_frame_count_(0), | 274 dropped_frame_count_(0), |
273 bitrate_observer_(nullptr), | 275 bitrate_observer_(nullptr), |
274 encoder_queue_("EncoderQueue") { | 276 encoder_queue_("EncoderQueue") { |
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
583 video_sender_.IntraFrameRequest(0); | 585 video_sender_.IntraFrameRequest(0); |
584 } | 586 } |
585 | 587 |
586 EncodedImageCallback::Result ViEEncoder::OnEncodedImage( | 588 EncodedImageCallback::Result ViEEncoder::OnEncodedImage( |
587 const EncodedImage& encoded_image, | 589 const EncodedImage& encoded_image, |
588 const CodecSpecificInfo* codec_specific_info, | 590 const CodecSpecificInfo* codec_specific_info, |
589 const RTPFragmentationHeader* fragmentation) { | 591 const RTPFragmentationHeader* fragmentation) { |
590 // Encoded is called on whatever thread the real encoder implementation run | 592 // Encoded is called on whatever thread the real encoder implementation run |
591 // on. In the case of hardware encoders, there might be several encoders | 593 // on. In the case of hardware encoders, there might be several encoders |
592 // running in parallel on different threads. | 594 // running in parallel on different threads. |
593 if (stats_proxy_) { | 595 if (stats_proxy_) |
594 stats_proxy_->OnSendEncodedImage(encoded_image, codec_specific_info); | 596 stats_proxy_->OnSendEncodedImage(encoded_image, codec_specific_info); |
595 } | |
596 | 597 |
597 EncodedImageCallback::Result result = | 598 EncodedImageCallback::Result result = |
598 sink_->OnEncodedImage(encoded_image, codec_specific_info, fragmentation); | 599 sink_->OnEncodedImage(encoded_image, codec_specific_info, fragmentation); |
599 | 600 |
600 int64_t time_sent = clock_->TimeInMilliseconds(); | 601 int64_t time_sent = clock_->TimeInMilliseconds(); |
601 uint32_t timestamp = encoded_image._timeStamp; | 602 uint32_t timestamp = encoded_image._timeStamp; |
602 const int qp = encoded_image.qp_; | 603 const int qp = encoded_image.qp_; |
603 encoder_queue_.PostTask([this, timestamp, time_sent, qp] { | 604 encoder_queue_.PostTask([this, timestamp, time_sent, qp] { |
604 RTC_DCHECK_RUN_ON(&encoder_queue_); | 605 RTC_DCHECK_RUN_ON(&encoder_queue_); |
605 overuse_detector_.FrameSent(timestamp, time_sent); | 606 overuse_detector_.FrameSent(timestamp, time_sent); |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
694 RTC_DCHECK_RUN_ON(&encoder_queue_); | 695 RTC_DCHECK_RUN_ON(&encoder_queue_); |
695 if (!scaling_enabled_) | 696 if (!scaling_enabled_) |
696 return; | 697 return; |
697 // Request lower resolution if the current resolution is lower than last time | 698 // Request lower resolution if the current resolution is lower than last time |
698 // we asked for the resolution to be lowered. | 699 // we asked for the resolution to be lowered. |
699 int current_pixel_count = last_frame_height_ * last_frame_width_; | 700 int current_pixel_count = last_frame_height_ * last_frame_width_; |
700 if (max_pixel_count_ && current_pixel_count >= *max_pixel_count_) | 701 if (max_pixel_count_ && current_pixel_count >= *max_pixel_count_) |
701 return; | 702 return; |
702 switch (reason) { | 703 switch (reason) { |
703 case kQuality: | 704 case kQuality: |
704 stats_proxy_->OnQualityRestrictedResolutionChanged(true); | 705 stats_proxy_->OnQualityRestrictedResolutionChanged( |
706 scale_counter_[reason] + 1); | |
705 break; | 707 break; |
706 case kCpu: | 708 case kCpu: |
707 if (scale_counter_[reason] >= kMaxCpuDowngrades) | 709 if (scale_counter_[reason] >= kMaxCpuDowngrades) |
708 return; | 710 return; |
709 // Update stats accordingly. | 711 // Update stats accordingly. |
710 stats_proxy_->OnCpuRestrictedResolutionChanged(true); | 712 stats_proxy_->OnCpuRestrictedResolutionChanged(true); |
711 break; | 713 break; |
712 } | 714 } |
713 max_pixel_count_ = rtc::Optional<int>(current_pixel_count); | 715 max_pixel_count_ = rtc::Optional<int>(current_pixel_count); |
714 max_pixel_count_step_up_ = rtc::Optional<int>(); | 716 max_pixel_count_step_up_ = rtc::Optional<int>(); |
(...skipping 11 matching lines...) Expand all Loading... | |
726 if (scale_counter_[reason] == 0 || !scaling_enabled_) | 728 if (scale_counter_[reason] == 0 || !scaling_enabled_) |
727 return; | 729 return; |
728 // Only scale if resolution is higher than last time | 730 // Only scale if resolution is higher than last time |
729 // we requested higher resolution. | 731 // we requested higher resolution. |
730 int current_pixel_count = last_frame_height_ * last_frame_width_; | 732 int current_pixel_count = last_frame_height_ * last_frame_width_; |
731 if (current_pixel_count <= max_pixel_count_step_up_.value_or(0)) | 733 if (current_pixel_count <= max_pixel_count_step_up_.value_or(0)) |
732 return; | 734 return; |
733 switch (reason) { | 735 switch (reason) { |
734 case kQuality: | 736 case kQuality: |
735 stats_proxy_->OnQualityRestrictedResolutionChanged( | 737 stats_proxy_->OnQualityRestrictedResolutionChanged( |
736 scale_counter_[reason] > 1); | 738 scale_counter_[reason]); |
åsapersson
2016/12/14 09:25:13
-1? Maybe add a test.
kthelgason
2016/12/15 10:33:54
Wow, good catch, thanks!
| |
737 break; | 739 break; |
738 case kCpu: | 740 case kCpu: |
739 // Update stats accordingly. | 741 // Update stats accordingly. |
740 stats_proxy_->OnCpuRestrictedResolutionChanged(scale_counter_[reason] > | 742 stats_proxy_->OnCpuRestrictedResolutionChanged(scale_counter_[reason] > |
741 1); | 743 1); |
742 break; | 744 break; |
743 } | 745 } |
744 max_pixel_count_ = rtc::Optional<int>(); | 746 max_pixel_count_ = rtc::Optional<int>(); |
745 max_pixel_count_step_up_ = rtc::Optional<int>(current_pixel_count); | 747 max_pixel_count_step_up_ = rtc::Optional<int>(current_pixel_count); |
746 --scale_counter_[reason]; | 748 --scale_counter_[reason]; |
747 source_proxy_->RequestHigherResolutionThan(current_pixel_count); | 749 source_proxy_->RequestHigherResolutionThan(current_pixel_count); |
748 LOG(LS_INFO) << "Scaling up resolution."; | 750 LOG(LS_INFO) << "Scaling up resolution."; |
749 for (size_t i = 0; i < kScaleReasonSize; ++i) { | 751 for (size_t i = 0; i < kScaleReasonSize; ++i) { |
750 LOG(LS_INFO) << "Scaled " << scale_counter_[i] | 752 LOG(LS_INFO) << "Scaled " << scale_counter_[i] |
751 << " times for reason: " << (i ? "quality" : "cpu"); | 753 << " times for reason: " << (i ? "quality" : "cpu"); |
752 } | 754 } |
753 } | 755 } |
754 | 756 |
755 } // namespace webrtc | 757 } // namespace webrtc |
OLD | NEW |