mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-16 07:10:38 +01:00

(Reland with no changes after the fix to the downstream project) This can be overriden for kNative frame types to perform scaling efficiently. Default implementations for existing buffer types require actual buffer implementation, thus this CL also merges "video_frame" with "video_frame_I420" build targets. Originally Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/186303 (Landing with TBR as it's unchaged reland of already approved CL) TBR=nisse@webrtc.org,sakal@webrtc.org Bug: webrtc:11976, chromium:1132299 Change-Id: Ia23f7d3e474bd9cdc177104cc5c6d772f04b210f Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/187345 Commit-Queue: Ilya Nikolaevskiy <ilnik@webrtc.org> Reviewed-by: Ilya Nikolaevskiy <ilnik@webrtc.org> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Stefan Holmer <stefan@webrtc.org> Cr-Commit-Position: refs/heads/master@{#32362}
160 lines
4.4 KiB
Text
160 lines
4.4 KiB
Text
# Copyright (c) 2017 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")
|
|
if (is_android) {
|
|
import("//build/config/android/config.gni")
|
|
import("//build/config/android/rules.gni")
|
|
}
|
|
|
|
rtc_library("video_codecs_api") {
|
|
visibility = [ "*" ]
|
|
sources = [
|
|
"sdp_video_format.cc",
|
|
"sdp_video_format.h",
|
|
"spatial_layer.cc",
|
|
"spatial_layer.h",
|
|
"video_codec.cc",
|
|
"video_codec.h",
|
|
"video_decoder.cc",
|
|
"video_decoder.h",
|
|
"video_decoder_factory.cc",
|
|
"video_decoder_factory.h",
|
|
"video_encoder.cc",
|
|
"video_encoder.h",
|
|
"video_encoder_config.cc",
|
|
"video_encoder_config.h",
|
|
"video_encoder_factory.h",
|
|
"vp8_frame_buffer_controller.h",
|
|
"vp8_frame_config.cc",
|
|
"vp8_frame_config.h",
|
|
"vp8_temporal_layers.cc",
|
|
"vp8_temporal_layers.h",
|
|
]
|
|
|
|
deps = [
|
|
"..:fec_controller_api",
|
|
"..:scoped_refptr",
|
|
"../../modules/video_coding:codec_globals_headers",
|
|
"../../rtc_base:checks",
|
|
"../../rtc_base:rtc_base_approved",
|
|
"../../rtc_base/system:rtc_export",
|
|
"../units:data_rate",
|
|
"../video:encoded_image",
|
|
"../video:video_bitrate_allocation",
|
|
"../video:video_codec_constants",
|
|
"../video:video_frame",
|
|
"../video:video_rtp_headers",
|
|
]
|
|
absl_deps = [
|
|
"//third_party/abseil-cpp/absl/algorithm:container",
|
|
"//third_party/abseil-cpp/absl/container:inlined_vector",
|
|
"//third_party/abseil-cpp/absl/strings",
|
|
"//third_party/abseil-cpp/absl/types:optional",
|
|
]
|
|
}
|
|
|
|
rtc_source_set("bitstream_parser_api") {
|
|
visibility = [ "*" ]
|
|
sources = [ "bitstream_parser.h" ]
|
|
deps = [ "..:array_view" ]
|
|
}
|
|
|
|
rtc_library("builtin_video_decoder_factory") {
|
|
visibility = [ "*" ]
|
|
allow_poison = [
|
|
"audio_codecs", # TODO(bugs.webrtc.org/8396): Remove.
|
|
"software_video_codecs",
|
|
]
|
|
sources = [
|
|
"builtin_video_decoder_factory.cc",
|
|
"builtin_video_decoder_factory.h",
|
|
]
|
|
|
|
deps = [
|
|
":video_codecs_api",
|
|
"../../api:scoped_refptr",
|
|
"../../media:rtc_internal_video_codecs",
|
|
"../../rtc_base/system:rtc_export",
|
|
]
|
|
}
|
|
|
|
rtc_library("builtin_video_encoder_factory") {
|
|
visibility = [ "*" ]
|
|
allow_poison = [
|
|
"audio_codecs", # TODO(bugs.webrtc.org/8396): Remove.
|
|
"software_video_codecs",
|
|
]
|
|
sources = [
|
|
"builtin_video_encoder_factory.cc",
|
|
"builtin_video_encoder_factory.h",
|
|
]
|
|
|
|
deps = [
|
|
":video_codecs_api",
|
|
"../../api:scoped_refptr",
|
|
"../../media:rtc_encoder_simulcast_proxy",
|
|
"../../media:rtc_internal_video_codecs",
|
|
"../../media:rtc_media_base",
|
|
"../../rtc_base:checks",
|
|
"../../rtc_base/system:rtc_export",
|
|
]
|
|
absl_deps = [ "//third_party/abseil-cpp/absl/strings" ]
|
|
}
|
|
|
|
rtc_library("vp8_temporal_layers_factory") {
|
|
visibility = [ "*" ]
|
|
allow_poison = [ "software_video_codecs" ]
|
|
sources = [
|
|
"vp8_temporal_layers_factory.cc",
|
|
"vp8_temporal_layers_factory.h",
|
|
]
|
|
|
|
deps = [
|
|
":video_codecs_api",
|
|
"../:fec_controller_api",
|
|
"../../modules/video_coding:video_coding_utility",
|
|
"../../modules/video_coding:webrtc_vp8_temporal_layers",
|
|
"../../rtc_base:checks",
|
|
]
|
|
}
|
|
|
|
rtc_library("rtc_software_fallback_wrappers") {
|
|
visibility = [ "*" ]
|
|
|
|
sources = [
|
|
"video_decoder_software_fallback_wrapper.cc",
|
|
"video_decoder_software_fallback_wrapper.h",
|
|
"video_encoder_software_fallback_wrapper.cc",
|
|
"video_encoder_software_fallback_wrapper.h",
|
|
]
|
|
|
|
deps = [
|
|
":video_codecs_api",
|
|
"..:fec_controller_api",
|
|
"../../api/video:video_frame",
|
|
"../../media:rtc_h264_profile_id",
|
|
"../../media:rtc_media_base",
|
|
"../../modules/video_coding:video_codec_interface",
|
|
"../../modules/video_coding:video_coding_utility",
|
|
"../../rtc_base:checks",
|
|
"../../rtc_base:rtc_base_approved",
|
|
"../../rtc_base/system:rtc_export",
|
|
"../../system_wrappers:field_trial",
|
|
"../../system_wrappers:metrics",
|
|
"../video:encoded_image",
|
|
"../video:video_bitrate_allocation",
|
|
"../video:video_frame",
|
|
"../video:video_rtp_headers",
|
|
]
|
|
absl_deps = [
|
|
"//third_party/abseil-cpp/absl/base:core_headers",
|
|
"//third_party/abseil-cpp/absl/strings",
|
|
"//third_party/abseil-cpp/absl/types:optional",
|
|
]
|
|
}
|