blob: 534a34e56179beeb72314fd7fd79095033836f14 [file] [log] [blame]
ilnikd60d06a2017-04-05 03:02:20 -07001# Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
2#
3# Use of this source code is governed by a BSD-style license
4# that can be found in the LICENSE file in the root of the source
5# tree. An additional intellectual property rights grant can be found
6# in the file PATENTS. All contributing project authors may
7# be found in the AUTHORS file in the root of the source tree.
8
9import("../../webrtc.gni")
10if (is_android) {
11 import("//build/config/android/config.gni")
12 import("//build/config/android/rules.gni")
13}
14
15rtc_source_set("video_codecs_api") {
Per Kjellandera7f2d842018-01-10 15:54:53 +000016 visibility = [ "*" ]
ilnikd60d06a2017-04-05 03:02:20 -070017 sources = [
Niels Möllerbe682d42018-03-27 08:31:45 +020018 "sdp_video_format.cc",
andersc063f0c02017-09-11 11:50:51 -070019 "sdp_video_format.h",
Niels Möllera46bd4b2018-06-08 14:03:44 +020020 "video_codec.cc",
Niels Möller802506c2018-05-31 10:44:51 +020021 "video_codec.h",
Niels Möllerbe682d42018-03-27 08:31:45 +020022 "video_decoder.cc",
ilnikd60d06a2017-04-05 03:02:20 -070023 "video_decoder.h",
Magnus Jedvert59ab3532018-09-03 18:07:56 +020024 "video_decoder_factory.cc",
Magnus Jedvertd4b0c052017-09-14 10:24:54 +020025 "video_decoder_factory.h",
mflodman351424e2017-08-10 02:43:14 -070026 "video_encoder.cc",
ilnikd60d06a2017-04-05 03:02:20 -070027 "video_encoder.h",
Niels Möller0a8f4352018-05-18 11:37:23 +020028 "video_encoder_config.cc",
29 "video_encoder_config.h",
Magnus Jedvertd4b0c052017-09-14 10:24:54 +020030 "video_encoder_factory.h",
Erik Språng4529fbc2018-10-12 10:30:31 +020031 "vp8_temporal_layers.h",
ilnikd60d06a2017-04-05 03:02:20 -070032 ]
33
34 deps = [
ilnikd60d06a2017-04-05 03:02:20 -070035 "../..:webrtc_common",
Patrik Höglunda8005cf2017-12-13 16:05:42 +010036 "../../rtc_base:checks",
ehmaldonadof6a861a2017-07-19 10:40:47 -070037 "../../rtc_base:rtc_base_approved",
Mirko Bonadei276827c2018-10-16 14:13:50 +020038 "../../rtc_base/system:rtc_export",
Niels Möller4dc66c52018-10-05 14:17:58 +020039 "../video:encoded_image",
Erik Språngec475652018-05-15 15:12:55 +020040 "../video:video_bitrate_allocation",
Niels Möllerc6ce9c52018-05-11 11:15:30 +020041 "../video:video_frame",
Niels Möller3c7d5992018-10-19 15:29:54 +020042 "//third_party/abseil-cpp/absl/strings",
Danil Chapovalov0bc58cf2018-06-21 13:32:56 +020043 "//third_party/abseil-cpp/absl/types:optional",
ilnikd60d06a2017-04-05 03:02:20 -070044 ]
45}
Anders Carlsson67537952018-05-03 11:28:29 +020046
47rtc_static_library("builtin_video_decoder_factory") {
48 visibility = [ "*" ]
49 allow_poison = [
50 "audio_codecs", # TODO(bugs.webrtc.org/8396): Remove.
51 "software_video_codecs",
52 ]
53 sources = [
54 "builtin_video_decoder_factory.cc",
55 "builtin_video_decoder_factory.h",
56 ]
57
58 deps = [
59 ":video_codecs_api",
60 "../../media:rtc_internal_video_codecs",
61 "../../rtc_base:ptr_util",
Mirko Bonadeiac194142018-10-22 17:08:37 +020062 "../../rtc_base/system:rtc_export",
Karl Wiberg918f50c2018-07-05 11:40:33 +020063 "//third_party/abseil-cpp/absl/memory",
Anders Carlsson67537952018-05-03 11:28:29 +020064 ]
65}
66
67rtc_static_library("builtin_video_encoder_factory") {
68 visibility = [ "*" ]
69 allow_poison = [
70 "audio_codecs", # TODO(bugs.webrtc.org/8396): Remove.
71 "software_video_codecs",
72 ]
73 sources = [
74 "builtin_video_encoder_factory.cc",
75 "builtin_video_encoder_factory.h",
76 ]
77
78 deps = [
79 ":video_codecs_api",
Florent Castellie7862cc2018-12-06 13:38:24 +010080 "../../media:rtc_encoder_simulcast_proxy",
Anders Carlsson67537952018-05-03 11:28:29 +020081 "../../media:rtc_internal_video_codecs",
82 "../../media:rtc_media_base",
Jonathan Yu327b7532018-10-24 17:21:36 -070083 "../../media:rtc_vp8_encoder_simulcast_proxy",
Yves Gerey3e707812018-11-28 16:47:49 +010084 "../../rtc_base:checks",
Anders Carlsson67537952018-05-03 11:28:29 +020085 "../../rtc_base:ptr_util",
Mirko Bonadeiac194142018-10-22 17:08:37 +020086 "../../rtc_base/system:rtc_export",
Karl Wiberg918f50c2018-07-05 11:40:33 +020087 "//third_party/abseil-cpp/absl/memory",
Niels Möller039743e2018-10-23 10:07:25 +020088 "//third_party/abseil-cpp/absl/strings",
Anders Carlsson67537952018-05-03 11:28:29 +020089 ]
90}
Anders Carlssondd3e0ab2018-06-12 11:15:56 +020091
Erik Språng4529fbc2018-10-12 10:30:31 +020092rtc_static_library("create_vp8_temporal_layers") {
93 visibility = [ "*" ]
94 allow_poison = [ "software_video_codecs" ]
95 sources = [
96 "create_vp8_temporal_layers.cc",
97 "create_vp8_temporal_layers.h",
98 ]
99
100 deps = [
101 ":video_codecs_api",
102 "../..:webrtc_common",
103 "../../modules/video_coding:video_codec_interface",
104 "../../modules/video_coding:webrtc_vp8_temporal_layers",
105 "../../system_wrappers:system_wrappers",
Yves Gerey3e707812018-11-28 16:47:49 +0100106 "//third_party/abseil-cpp/absl/memory",
Erik Språng4529fbc2018-10-12 10:30:31 +0200107 ]
108}
109
Anders Carlssondd3e0ab2018-06-12 11:15:56 +0200110rtc_static_library("rtc_software_fallback_wrappers") {
111 visibility = [ "*" ]
112
113 sources = [
114 "video_decoder_software_fallback_wrapper.cc",
115 "video_decoder_software_fallback_wrapper.h",
116 "video_encoder_software_fallback_wrapper.cc",
117 "video_encoder_software_fallback_wrapper.h",
118 ]
119
120 if (!build_with_chromium && is_clang) {
121 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
122 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
123 }
124
125 deps = [
126 ":video_codecs_api",
Yves Gerey3e707812018-11-28 16:47:49 +0100127 "../../:webrtc_common",
Anders Carlssondd3e0ab2018-06-12 11:15:56 +0200128 "../../media:rtc_h264_profile_id",
129 "../../media:rtc_media_base",
130 "../../modules/video_coding:video_codec_interface",
131 "../../rtc_base:checks",
132 "../../rtc_base:rtc_base_approved",
133 "../../rtc_base/system:fallthrough",
Mirko Bonadei17f48782018-09-28 08:51:10 +0200134 "../../system_wrappers:field_trial",
Yves Gerey3e707812018-11-28 16:47:49 +0100135 "../video:encoded_image",
Anders Carlssondd3e0ab2018-06-12 11:15:56 +0200136 "../video:video_bitrate_allocation",
Yves Gerey3e707812018-11-28 16:47:49 +0100137 "../video:video_frame",
Karl Wiberg918f50c2018-07-05 11:40:33 +0200138 "//third_party/abseil-cpp/absl/memory",
Yves Gerey3e707812018-11-28 16:47:49 +0100139 "//third_party/abseil-cpp/absl/types:optional",
Anders Carlssondd3e0ab2018-06-12 11:15:56 +0200140 ]
141}