This CL implements a Resource that aggressively reports overuse or underuse until the encoded stream has the max pixels specified. The pixel limit is controlled with a field trial, e.g: --force-fieldtrials="WebRTC-PixelLimitResource/Enabled-307200/" This caps the resolution to 307200 (=640x480). This can be used by the TestBed to simulate being CPU limited. Note that the resource doesn't care about degradation preference at the moment, so if the degradation preference would be set to "maintain-resolution" the PixelLimitResource would never stop reporting overuse and we would quickly get a low-FPS stream. PixelLimitResource runs a repeating task and reports overuse, underuse or neither every 5 seconds. This ensures we quickly reach the desired resolution. Unit tests are added. I did not add any integration tests (I think that's overkill for a testing-only resource) but I have manually verified that this works as intended. This CL also moves the FakeVideoStreamInputStateProvider into a test/ folder and exposes video_stream_adapter.cc's GetLowerResolutionThan(). Bug: webrtc:12261 Change-Id: Ifbf7c4c05e9dd2843543589bebef3f49b18c38c0 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/195600 Reviewed-by: Evan Shrubsole <eshr@google.com> Reviewed-by: Ilya Nikolaevskiy <ilnik@webrtc.org> Commit-Queue: Henrik Boström <hbos@webrtc.org> Cr-Commit-Position: refs/heads/master@{#32771}
122 lines
4.2 KiB
Plaintext
122 lines
4.2 KiB
Plaintext
# Copyright (c) 2019 The WebRTC project authors. All Rights Reserved.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license
|
|
# that can be found in the LICENSE file in the root of the source
|
|
# tree. An additional intellectual property rights grant can be found
|
|
# in the file PATENTS. All contributing project authors may
|
|
# be found in the AUTHORS file in the root of the source tree.
|
|
|
|
import("../../webrtc.gni")
|
|
|
|
rtc_library("resource_adaptation") {
|
|
sources = [
|
|
"adaptation_constraint.cc",
|
|
"adaptation_constraint.h",
|
|
"broadcast_resource_listener.cc",
|
|
"broadcast_resource_listener.h",
|
|
"degradation_preference_provider.cc",
|
|
"degradation_preference_provider.h",
|
|
"encoder_settings.cc",
|
|
"encoder_settings.h",
|
|
"resource_adaptation_processor.cc",
|
|
"resource_adaptation_processor.h",
|
|
"resource_adaptation_processor_interface.cc",
|
|
"resource_adaptation_processor_interface.h",
|
|
"video_source_restrictions.cc",
|
|
"video_source_restrictions.h",
|
|
"video_stream_adapter.cc",
|
|
"video_stream_adapter.h",
|
|
"video_stream_input_state.cc",
|
|
"video_stream_input_state.h",
|
|
"video_stream_input_state_provider.cc",
|
|
"video_stream_input_state_provider.h",
|
|
]
|
|
deps = [
|
|
"../../api:rtp_parameters",
|
|
"../../api:scoped_refptr",
|
|
"../../api/adaptation:resource_adaptation_api",
|
|
"../../api/task_queue:task_queue",
|
|
"../../api/video:video_adaptation",
|
|
"../../api/video:video_frame",
|
|
"../../api/video:video_stream_encoder",
|
|
"../../api/video_codecs:video_codecs_api",
|
|
"../../modules/video_coding:video_coding_utility",
|
|
"../../rtc_base:checks",
|
|
"../../rtc_base:rtc_base_approved",
|
|
"../../rtc_base:rtc_task_queue",
|
|
"../../rtc_base/experiments:balanced_degradation_settings",
|
|
"../../rtc_base/synchronization:mutex",
|
|
"../../rtc_base/synchronization:sequence_checker",
|
|
"../../rtc_base/system:no_unique_address",
|
|
"../../rtc_base/task_utils:to_queued_task",
|
|
]
|
|
absl_deps = [
|
|
"//third_party/abseil-cpp/absl/algorithm:container",
|
|
"//third_party/abseil-cpp/absl/types:optional",
|
|
"//third_party/abseil-cpp/absl/types:variant",
|
|
]
|
|
}
|
|
|
|
if (rtc_include_tests) {
|
|
rtc_library("resource_adaptation_tests") {
|
|
testonly = true
|
|
|
|
sources = [
|
|
"broadcast_resource_listener_unittest.cc",
|
|
"resource_adaptation_processor_unittest.cc",
|
|
"resource_unittest.cc",
|
|
"video_source_restrictions_unittest.cc",
|
|
"video_stream_adapter_unittest.cc",
|
|
"video_stream_input_state_provider_unittest.cc",
|
|
]
|
|
deps = [
|
|
":resource_adaptation",
|
|
":resource_adaptation_test_utilities",
|
|
"../../api:scoped_refptr",
|
|
"../../api/adaptation:resource_adaptation_api",
|
|
"../../api/task_queue:default_task_queue_factory",
|
|
"../../api/task_queue:task_queue",
|
|
"../../api/video:video_adaptation",
|
|
"../../api/video_codecs:video_codecs_api",
|
|
"../../rtc_base:checks",
|
|
"../../rtc_base:gunit_helpers",
|
|
"../../rtc_base:rtc_base_approved",
|
|
"../../rtc_base:rtc_task_queue",
|
|
"../../rtc_base:task_queue_for_test",
|
|
"../../rtc_base/synchronization:mutex",
|
|
"../../test:field_trial",
|
|
"../../test:rtc_expect_death",
|
|
"../../test:test_support",
|
|
]
|
|
absl_deps = [ "//third_party/abseil-cpp/absl/types:optional" ]
|
|
}
|
|
|
|
rtc_source_set("resource_adaptation_test_utilities") {
|
|
testonly = true
|
|
|
|
sources = [
|
|
"test/fake_adaptation_constraint.cc",
|
|
"test/fake_adaptation_constraint.h",
|
|
"test/fake_frame_rate_provider.cc",
|
|
"test/fake_frame_rate_provider.h",
|
|
"test/fake_resource.cc",
|
|
"test/fake_resource.h",
|
|
"test/fake_video_stream_input_state_provider.cc",
|
|
"test/fake_video_stream_input_state_provider.h",
|
|
"test/mock_resource_listener.h",
|
|
]
|
|
deps = [
|
|
":resource_adaptation",
|
|
"../../api:scoped_refptr",
|
|
"../../api/adaptation:resource_adaptation_api",
|
|
"../../api/task_queue:task_queue",
|
|
"../../api/video:video_stream_encoder",
|
|
"../../rtc_base:rtc_base_approved",
|
|
"../../rtc_base/synchronization:sequence_checker",
|
|
"../../rtc_base/task_utils:to_queued_task",
|
|
"../../test:test_support",
|
|
]
|
|
absl_deps = [ "//third_party/abseil-cpp/absl/types:optional" ]
|
|
}
|
|
}
|