Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  BUILD.gn   Sprache: unbekannt

 
Spracherkennung für: .gn vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]

# 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:field_trials_view",
    "../../api:make_ref_counted",
    "../../api:ref_count",
    "../../api:rtp_parameters",
    "../../api:scoped_refptr",
    "../../api:sequence_checker",
    "../../api/adaptation:resource_adaptation_api",
    "../../api/task_queue",
    "../../api/video:video_adaptation",
    "../../api/video:video_frame",
    "../../api/video_codecs:video_codecs_api",
    "../../modules/video_coding/svc:scalability_mode_util",
    "../../rtc_base:checks",
    "../../rtc_base:logging",
    "../../rtc_base:macromagic",
    "../../rtc_base:safe_conversions",
    "../../rtc_base:stringutils",
    "../../rtc_base/experiments:balanced_degradation_settings",
    "../../rtc_base/synchronization:mutex",
    "../../rtc_base/system:no_unique_address",
    "../../video:video_stream_encoder_interface",
    "../../video/config:encoder_config",
    "//third_party/abseil-cpp/absl/algorithm:container",
    "//third_party/abseil-cpp/absl/strings:string_view",
  ]
}

if (rtc_include_tests) {
  rtc_cc_test("broadcast_resource_listener_unittest") {
    sources = [ "broadcast_resource_listener_unittest.cc" ]
    deps = [
      ":resource_adaptation",
      ":resource_adaptation_test_utilities",
      "../../api:scoped_refptr",
      "../../api/adaptation:resource_adaptation_api",
      "../../test:test_support",
    ]
  }

  rtc_cc_test("resource_adaptation_processor_unittest") {
    sources = [ "resource_adaptation_processor_unittest.cc" ]
    deps = [
      ":resource_adaptation",
      ":resource_adaptation_test_utilities",
      "../../api:rtc_error_matchers",
      "../../api:rtp_parameters",
      "../../api:scoped_refptr",
      "../../api:sequence_checker",
      "../../api/adaptation:resource_adaptation_api",
      "../../api/units:time_delta",
      "../../api/video:video_adaptation",
      "../../rtc_base:macromagic",
      "../../rtc_base:rtc_event",
      "../../rtc_base:task_queue_for_test",
      "../../test:create_test_field_trials",
      "../../test:run_loop",
      "../../test:test_support",
      "../../test:wait_until",
    ]
  }

  rtc_cc_test("resource_unittest") {
    sources = [ "resource_unittest.cc" ]
    deps = [
      ":resource_adaptation_test_utilities",
      "../../api:scoped_refptr",
      "../../api/adaptation:resource_adaptation_api",
      "../../test:test_support",
    ]
  }

  rtc_cc_test("video_source_restrictions_unittest") {
    sources = [ "video_source_restrictions_unittest.cc" ]
    deps = [
      ":resource_adaptation",
      "../../test:test_support",
    ]
  }

  rtc_cc_test("video_stream_adapter_unittest") {
    sources = [ "video_stream_adapter_unittest.cc" ]
    deps = [
      ":resource_adaptation",
      ":resource_adaptation_test_utilities",
      "../../api:rtp_parameters",
      "../../api:scoped_refptr",
      "../../api/adaptation:resource_adaptation_api",
      "../../api/video:video_adaptation",
      "../../api/video_codecs:video_codecs_api",
      "../../rtc_base:checks",
      "../../test:create_test_field_trials",
      "../../test:test_support",
      "//third_party/abseil-cpp/absl/strings",
    ]
  }

  rtc_cc_test("video_stream_input_state_provider_unittest") {
    sources = [ "video_stream_input_state_provider_unittest.cc" ]
    deps = [
      ":resource_adaptation",
      ":resource_adaptation_test_utilities",
      "../../api/video:video_frame",
      "../../api/video_codecs:video_codecs_api",
      "../../test:test_support",
      "../../video/config:encoder_config",
    ]
  }

  rtc_test_suite("resource_adaptation_tests") {
    tests = [
      ":broadcast_resource_listener_unittest",
      ":resource_adaptation_processor_unittest",
      ":resource_unittest",
      ":video_source_restrictions_unittest",
      ":video_stream_adapter_unittest",
      ":video_stream_input_state_provider_unittest",
    ]
  }

  rtc_library("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:make_ref_counted",
      "../../api:scoped_refptr",
      "../../api/adaptation:resource_adaptation_api",
      "../../api/video:video_adaptation",
      "../../api/video:video_bitrate_allocation",
      "../../api/video_codecs:video_codecs_api",
      "../../test:test_support",
      "../../video:video_stream_encoder_interface",
      "../../video/config:encoder_config",
      "//third_party/abseil-cpp/absl/strings:string_view",
    ]
  }
}

[Dauer der Verarbeitung: 0.13 Sekunden, vorverarbeitet 2026-08-27]

                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Open Source Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Jenseits des Üblichen ....

Besucherstatistik

Besucherstatistik

Statistik
#Sources=434850
#Domains=655579