blob: dbffa2b71ad88e028be1cfcf3c594263a95c5324 [file] [log] [blame]
kjellander@webrtc.org1227ab82014-06-23 19:21:071# Copyright (c) 2014 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
mbonadei9aa3f0a2017-01-24 14:58:229import("../webrtc.gni")
kjellander@webrtc.org1227ab82014-06-23 19:21:0710
Mirko Bonadei86d053c2019-10-17 19:32:0411rtc_library("video") {
kjellander@webrtc.org788f0582014-08-28 13:51:0812 sources = [
Benjamin Wright00765292018-12-01 00:18:2613 "buffered_frame_decryptor.cc",
14 "buffered_frame_decryptor.h",
Tommi822a8742020-05-10 22:42:3015 "call_stats2.cc",
16 "call_stats2.h",
Elad Alon14d1c9d2019-04-08 12:16:1717 "encoder_rtcp_feedback.cc",
18 "encoder_rtcp_feedback.h",
Henrik Boströmce33b6a2019-05-28 15:42:3819 "quality_limitation_reason_tracker.cc",
20 "quality_limitation_reason_tracker.h",
palmkvist349092b2016-12-13 10:45:5721 "quality_threshold.cc",
22 "quality_threshold.h",
Tommi74fc5742020-04-27 08:43:0623 "receive_statistics_proxy2.cc",
24 "receive_statistics_proxy2.h",
Peter Boström7623ce42015-12-09 11:13:3025 "report_block_stats.cc",
26 "report_block_stats.h",
Tommiad84d022020-05-10 17:03:4327 "rtp_streams_synchronizer2.cc",
28 "rtp_streams_synchronizer2.h",
Tommid3807da2020-05-22 15:36:3629 "rtp_video_stream_receiver2.cc",
30 "rtp_video_stream_receiver2.h",
Marina Ciocea78964c12020-03-10 20:31:5231 "rtp_video_stream_receiver_frame_transformer_delegate.cc",
32 "rtp_video_stream_receiver_frame_transformer_delegate.h",
asapersson35151f32016-05-03 06:44:0133 "send_delay_stats.cc",
34 "send_delay_stats.h",
kjellander@webrtc.org788f0582014-08-28 13:51:0835 "send_statistics_proxy.cc",
36 "send_statistics_proxy.h",
asapersson0e9d6d92016-05-23 13:07:5537 "stats_counter.cc",
38 "stats_counter.h",
Peter Boström7623ce42015-12-09 11:13:3039 "stream_synchronization.cc",
40 "stream_synchronization.h",
charujainbf6a45b2016-11-03 11:21:4241 "transport_adapter.cc",
42 "transport_adapter.h",
Tommi74fc5742020-04-27 08:43:0643 "video_quality_observer2.cc",
44 "video_quality_observer2.h",
Tommi74fc5742020-04-27 08:43:0645 "video_receive_stream2.cc",
46 "video_receive_stream2.h",
kjellander@webrtc.org788f0582014-08-28 13:51:0847 "video_send_stream.cc",
48 "video_send_stream.h",
Sebastian Jansson8e0b15b2018-04-18 17:19:2249 "video_send_stream_impl.cc",
50 "video_send_stream_impl.h",
Tommi74fc5742020-04-27 08:43:0651 "video_stream_decoder2.cc",
52 "video_stream_decoder2.h",
kjellander@webrtc.org788f0582014-08-28 13:51:0853 ]
54
kwiberg@webrtc.orgac2d27d2015-02-26 13:59:2255 deps = [
Markus Handellb4e96d42021-11-05 11:00:5556 ":frame_cadence_adapter",
Evan Shrubsole9a999052021-12-12 14:27:0057 ":frame_decode_scheduler",
Erik Språng96965ae2018-10-23 13:42:3758 ":frame_dumping_decoder",
Rasmus Brandtfbf66dd2022-05-23 07:53:3259 ":unique_timestamp_counter",
Evan Shrubsole9a999052021-12-12 14:27:0060 ":video_receive_stream_timeout_tracker",
Evan Shrubsole476f18d22022-08-15 15:21:1661 ":video_stream_buffer_controller",
Per Kjellanderb03b6c82021-01-03 09:26:0362 ":video_stream_encoder_impl",
Yves Gerey3e707812018-11-28 15:47:4963 "../api:array_view",
Ying Wang3b790f32018-01-19 16:58:5764 "../api:fec_controller_api",
Jonas Orelande62c2f22022-03-29 09:04:4865 "../api:field_trials_view",
Marina Ciocea412a31b2020-02-28 15:02:0666 "../api:frame_transformer_interface",
Patrik Höglundbe214a22018-01-04 11:14:3567 "../api:libjingle_peerconnection_api",
Niels Möller6dcd4dc2019-08-26 08:45:2868 "../api:rtp_parameters",
Mirko Bonadeid9708072019-01-25 19:26:4869 "../api:scoped_refptr",
Artem Titovd15a5752021-02-10 13:31:2470 "../api:sequence_checker",
aleloia8eb7562016-11-28 15:02:1371 "../api:transport_api",
Mirko Bonadeieaaaf412019-09-13 12:42:1572 "../api/crypto:frame_decryptor_interface",
73 "../api/crypto:options",
Danil Chapovalov83bbe912019-08-07 10:24:5374 "../api/rtc_event_log",
Sebastian Jansson74682c12019-03-01 10:50:2075 "../api/task_queue",
Artem Titovc374d112022-06-16 19:27:4576 "../api/task_queue:pending_task_safety_flag",
Evan Shrubsoled425f502022-04-28 08:18:1277 "../api/units:frequency",
Tommi28e96532021-06-03 09:52:1578 "../api/units:time_delta",
Tommid7e08c82020-05-10 09:24:4379 "../api/units:timestamp",
Yves Gerey3e707812018-11-28 15:47:4980 "../api/video:encoded_image",
philipel8615bf02022-05-05 13:12:1381 "../api/video:frame_buffer",
Markus Handell269ac812019-12-03 13:31:4582 "../api/video:recordable_encoded_frame",
Yves Gerey3e707812018-11-28 15:47:4983 "../api/video:video_bitrate_allocation",
Jiawei Ou4206a0a2018-07-20 22:49:4384 "../api/video:video_bitrate_allocator",
Evan Shrubsolecc62b162019-09-09 09:26:4585 "../api/video:video_codec_constants",
Niels Möllerc6ce9c52018-05-11 09:15:3086 "../api/video:video_frame",
Chen Xing5d24b162019-06-10 10:59:3887 "../api/video:video_rtp_headers",
Niels Möller0327c2d2018-05-21 12:09:3188 "../api/video:video_stream_encoder",
ilnikd60d06a2017-04-05 10:02:2089 "../api/video_codecs:video_codecs_api",
Mirko Bonadei245660a2017-10-10 12:38:1190 "../call:bitrate_allocator",
mbonadei9087d492017-04-25 07:35:3591 "../call:call_interfaces",
nissed76b7b22017-06-01 11:02:3592 "../call:rtp_interfaces",
Danil Chapovalov1aa75812019-03-05 10:11:3593 "../call:rtp_receiver", # For RtxReceiveStream.
Stefan Holmera2f15332018-07-11 15:11:3194 "../call:rtp_sender",
aleloi440b6d92017-08-22 12:43:2395 "../call:video_stream_api",
Danil Chapovalov1aa75812019-03-05 10:11:3596 "../common_video",
Danil Chapovalov1aa75812019-03-05 10:11:3597 "../modules:module_api",
Yves Gerey3e707812018-11-28 15:47:4998 "../modules:module_api_public",
Danil Chapovalov1aa75812019-03-05 10:11:3599 "../modules/pacing",
100 "../modules/remote_bitrate_estimator",
101 "../modules/rtp_rtcp",
Mirko Bonadeib5728d92017-12-06 06:51:33102 "../modules/rtp_rtcp:rtp_rtcp_format",
philipel1a4746a2018-07-09 13:52:29103 "../modules/rtp_rtcp:rtp_video_header",
Danil Chapovalov1aa75812019-03-05 10:11:35104 "../modules/video_coding",
Sergey Silkin86684962018-03-28 17:32:37105 "../modules/video_coding:codec_globals_headers",
Evan Shrubsole9a999052021-12-12 14:27:00106 "../modules/video_coding:frame_helpers",
Markus Handell06a2bf02021-07-22 13:09:39107 "../modules/video_coding:nack_requester",
philipel10dc1a62021-09-15 08:45:43108 "../modules/video_coding:packet_buffer",
Patrik Höglund99175c62018-01-08 10:05:10109 "../modules/video_coding:video_codec_interface",
Danil Chapovalov1aa75812019-03-05 10:11:35110 "../modules/video_coding:video_coding_utility",
Rasmus Brandt23772262022-05-23 07:53:15111 "../modules/video_coding/timing:inter_frame_delay",
Rasmus Brandtc4d253c2022-05-25 10:03:35112 "../modules/video_coding/timing:timing_module",
Danil Chapovalov1aa75812019-03-05 10:11:35113 "../modules/video_processing",
Patrik Höglunda8005cf2017-12-13 15:05:42114 "../rtc_base:checks",
Florent Castellia30aef32022-04-19 15:47:13115 "../rtc_base:event_tracer",
Florent Castelli3629a5f2022-04-14 11:50:13116 "../rtc_base:histogram_percentile_counter",
Florent Castelliaa6d05d2022-04-14 11:13:56117 "../rtc_base:location",
Florent Castelli0af55ba2022-04-04 13:06:30118 "../rtc_base:logging",
Florent Castelli4467ad72022-04-04 13:18:46119 "../rtc_base:macromagic",
Florent Castelli31764092022-04-14 11:41:58120 "../rtc_base:mod_ops",
Florent Castelli83a36d42022-04-14 11:44:39121 "../rtc_base:moving_max_counter",
Florent Castelli45a05992022-04-14 10:18:28122 "../rtc_base:platform_thread",
Stefan Holmerdbdb3a02018-07-17 14:03:46123 "../rtc_base:rate_limiter",
Florent Castelli6bb1fd32022-04-19 13:58:39124 "../rtc_base:rate_statistics",
Florent Castelli58cc4682022-04-19 13:50:28125 "../rtc_base:rate_tracker",
Marina Ciocea78964c12020-03-10 20:31:52126 "../rtc_base:rtc_base",
Florent Castelli33d31fb2022-04-04 14:57:52127 "../rtc_base:rtc_event",
Danil Chapovalov1aa75812019-03-05 10:11:35128 "../rtc_base:rtc_numerics",
129 "../rtc_base:rtc_task_queue",
Florent Castellie10a9f62022-04-04 15:04:37130 "../rtc_base:safe_conversions",
Florent Castelli17296422022-04-14 11:48:10131 "../rtc_base:sample_counter",
Tommifef05002018-02-27 12:51:08132 "../rtc_base:stringutils",
Mirko Bonadeie5f4c6b2021-01-15 09:41:01133 "../rtc_base:threading",
Florent Castellidd837e22022-04-04 15:16:15134 "../rtc_base:timeutils",
Danil Chapovalov1aa75812019-03-05 10:11:35135 "../rtc_base:weak_ptr",
Sebastian Janssoncabe3832018-01-12 09:54:18136 "../rtc_base/experiments:alr_experiment",
Jonas Olsson0182a032019-07-09 10:31:20137 "../rtc_base/experiments:field_trial_parser",
Rasmus Brandt3dde4502019-03-21 10:46:17138 "../rtc_base/experiments:keyframe_interval_settings_experiment",
Elad Alon80f53b72019-10-11 14:19:43139 "../rtc_base/experiments:min_video_bitrate_experiment",
Åsa Perssona945aee2018-04-24 14:53:25140 "../rtc_base/experiments:quality_scaling_experiment",
Erik Språngcd76eab2019-01-21 17:06:46141 "../rtc_base/experiments:rate_control_settings",
Evan Shrubsole9a999052021-12-12 14:27:00142 "../rtc_base/experiments:rtt_mult_experiment",
Markus Handella3765182020-07-08 11:13:32143 "../rtc_base/synchronization:mutex",
Mirko Bonadei20e4c802020-11-23 10:07:42144 "../rtc_base/system:no_unique_address",
Sebastian Janssonecb68972019-01-18 09:30:54145 "../rtc_base/task_utils:repeating_task",
Danil Chapovalov1aa75812019-03-05 10:11:35146 "../rtc_base/time:timestamp_extrapolator",
147 "../system_wrappers",
Mirko Bonadei17f48782018-09-28 06:51:10148 "../system_wrappers:field_trial",
149 "../system_wrappers:metrics",
Per Kjellanderb03b6c82021-01-03 09:26:03150 "./adaptation:video_adaptation",
Mirko Bonadei2dcf3482020-06-05 12:30:41151 ]
152 absl_deps = [
Steve Antonbd631a02019-03-28 17:51:27153 "//third_party/abseil-cpp/absl/algorithm:container",
Danil Chapovalov64f1f3f2020-01-16 13:41:10154 "//third_party/abseil-cpp/absl/base:core_headers",
Evan Shrubsole9a999052021-12-12 14:27:00155 "//third_party/abseil-cpp/absl/container:inlined_vector",
156 "//third_party/abseil-cpp/absl/functional:bind_front",
Karl Wiberg918f50c2018-07-05 09:40:33157 "//third_party/abseil-cpp/absl/memory",
Mirko Bonadei06d35592020-04-01 11:43:08158 "//third_party/abseil-cpp/absl/strings",
Danil Chapovalovb9b146c2018-06-15 10:28:07159 "//third_party/abseil-cpp/absl/types:optional",
kwiberg@webrtc.orgac2d27d2015-02-26 13:59:22160 ]
Dan Minor9c686132018-01-15 15:20:00161
162 if (!build_with_mozilla) {
163 deps += [ "../media:rtc_media_base" ]
164 }
kjellander@webrtc.org1227ab82014-06-23 19:21:07165}
Peter Boström02083222016-06-14 10:52:54166
Mirko Bonadei86d053c2019-10-17 19:32:04167rtc_library("video_stream_decoder_impl") {
philipel2fee4d62018-03-21 15:52:13168 visibility = [ "*" ]
Anders Carlsson51e23ae2018-05-24 11:31:30169
philipel2fee4d62018-03-21 15:52:13170 sources = [
171 "video_stream_decoder_impl.cc",
172 "video_stream_decoder_impl.h",
173 ]
174
175 deps = [
Jonas Orelande62c2f22022-03-29 09:04:48176 "../api:field_trials_view",
Artem Titovd15a5752021-02-10 13:31:24177 "../api:sequence_checker",
Danil Chapovalov471783f2019-03-11 13:26:02178 "../api/task_queue",
Jonas Orelande02f9ee2022-03-25 11:43:14179 "../api/transport:field_trial_based_config",
Niels Möllerc6ce9c52018-05-11 09:15:30180 "../api/video:encoded_frame",
181 "../api/video:video_frame",
Chen Xing5d24b162019-06-10 10:59:38182 "../api/video:video_rtp_headers",
Niels Möllerc6ce9c52018-05-11 09:15:30183 "../api/video:video_stream_decoder",
philipel2fee4d62018-03-21 15:52:13184 "../api/video_codecs:video_codecs_api",
Artem Titov94b57c02019-03-21 12:35:10185 "../modules/video_coding",
Rasmus Brandtc4d253c2022-05-25 10:03:35186 "../modules/video_coding/timing:timing_module",
Florent Castelli0af55ba2022-04-04 13:06:30187 "../rtc_base:logging",
Florent Castelli31764092022-04-14 11:41:58188 "../rtc_base:mod_ops",
Florent Castelli45a05992022-04-14 10:18:28189 "../rtc_base:platform_thread",
Danil Chapovalov07a4f2b2019-03-05 18:58:28190 "../rtc_base:rtc_task_queue",
Florent Castellidd837e22022-04-04 15:16:15191 "../rtc_base:timeutils",
Jonas Orelande02f9ee2022-03-25 11:43:14192 "../rtc_base/memory:always_valid_pointer",
Markus Handell265931e2020-07-10 10:23:48193 "../rtc_base/synchronization:mutex",
Artem Titov94b57c02019-03-21 12:35:10194 "../system_wrappers",
philipel2fee4d62018-03-21 15:52:13195 ]
Mirko Bonadei2dcf3482020-06-05 12:30:41196 absl_deps = [ "//third_party/abseil-cpp/absl/types:optional" ]
philipel2fee4d62018-03-21 15:52:13197}
198
Mirko Bonadei86d053c2019-10-17 19:32:04199rtc_library("frame_dumping_decoder") {
Erik Språng96965ae2018-10-23 13:42:37200 visibility = [ "*" ]
201
202 sources = [
203 "frame_dumping_decoder.cc",
204 "frame_dumping_decoder.h",
205 ]
206
207 deps = [
208 "../api/video:encoded_frame",
Yves Gerey3e707812018-11-28 15:47:49209 "../api/video:encoded_image",
Erik Språng96965ae2018-10-23 13:42:37210 "../api/video_codecs:video_codecs_api",
Artem Titov94b57c02019-03-21 12:35:10211 "../modules/video_coding",
Erik Språng96965ae2018-10-23 13:42:37212 "../modules/video_coding:video_codec_interface",
Erik Språng96965ae2018-10-23 13:42:37213 "../modules/video_coding:video_coding_utility",
Markus Handell1c2f6372019-08-20 18:21:37214 "../rtc_base/system:file_wrapper",
Erik Språng96965ae2018-10-23 13:42:37215 ]
216}
217
Markus Handellb4e96d42021-11-05 11:00:55218rtc_library("frame_cadence_adapter") {
219 visibility = [ "*" ]
220 sources = [
221 "frame_cadence_adapter.cc",
222 "frame_cadence_adapter.h",
223 ]
224
225 deps = [
Jonas Orelande62c2f22022-03-29 09:04:48226 "../api:field_trials_view",
Markus Handellb4e96d42021-11-05 11:00:55227 "../api:sequence_checker",
Markus Handell28c71802021-11-08 09:11:55228 "../api/task_queue",
Artem Titovc374d112022-06-16 19:27:45229 "../api/task_queue:pending_task_safety_flag",
Markus Handell29dd8d82021-12-15 11:19:15230 "../api/units:time_delta",
Markus Handell9d04a782022-05-12 16:38:57231 "../api/units:timestamp",
Markus Handellb4e96d42021-11-05 11:00:55232 "../api/video:video_frame",
Markus Handell8d87c462021-12-16 10:37:16233 "../rtc_base:checks",
Markus Handellb4e96d42021-11-05 11:00:55234 "../rtc_base:logging",
235 "../rtc_base:macromagic",
Florent Castellif4db3512022-04-14 11:38:05236 "../rtc_base:race_checker",
Florent Castelli6bb1fd32022-04-19 13:58:39237 "../rtc_base:rate_statistics",
Florent Castellidd837e22022-04-04 15:16:15238 "../rtc_base:timeutils",
Markus Handellb4e96d42021-11-05 11:00:55239 "../rtc_base/synchronization:mutex",
Markus Handellee225432021-11-29 11:35:12240 "../rtc_base/system:no_unique_address",
Markus Handellf7f0b212022-05-24 16:39:39241 "../rtc_base/task_utils:repeating_task",
Markus Handell9a478b52021-11-18 15:07:01242 "../system_wrappers",
Markus Handellb4e96d42021-11-05 11:00:55243 "../system_wrappers:field_trial",
244 "../system_wrappers:metrics",
245 ]
Markus Handell2e0f4f02021-12-21 18:14:58246 absl_deps = [
247 "//third_party/abseil-cpp/absl/algorithm:container",
248 "//third_party/abseil-cpp/absl/base:core_headers",
249 ]
Markus Handellb4e96d42021-11-05 11:00:55250}
251
Evan Shrubsole476f18d22022-08-15 15:21:16252rtc_library("video_stream_buffer_controller") {
Evan Shrubsole9d290262021-12-15 13:33:40253 sources = [
Evan Shrubsole476f18d22022-08-15 15:21:16254 "video_stream_buffer_controller.cc",
255 "video_stream_buffer_controller.h",
Evan Shrubsole9d290262021-12-15 13:33:40256 ]
257 deps = [
Evan Shrubsole6cd6d8e2022-02-11 14:30:26258 ":decode_synchronizer",
Evan Shrubsole9a999052021-12-12 14:27:00259 ":frame_decode_timing",
Evan Shrubsole6cd6d8e2022-02-11 14:30:26260 ":task_queue_frame_decode_scheduler",
Evan Shrubsole9a999052021-12-12 14:27:00261 ":video_receive_stream_timeout_tracker",
Jonas Orelande62c2f22022-03-29 09:04:48262 "../api:field_trials_view",
Evan Shrubsole9a999052021-12-12 14:27:00263 "../api:sequence_checker",
Evan Shrubsole6cd6d8e2022-02-11 14:30:26264 "../api/metronome",
Evan Shrubsole9d290262021-12-15 13:33:40265 "../api/task_queue",
Evan Shrubsole13e42a82022-03-07 12:21:51266 "../api/units:data_size",
Evan Shrubsole9d290262021-12-15 13:33:40267 "../api/video:encoded_frame",
philipel8615bf02022-05-05 13:12:13268 "../api/video:frame_buffer",
Evan Shrubsoled4ff12f2022-03-01 09:16:11269 "../api/video:video_rtp_headers",
Evan Shrubsole9d290262021-12-15 13:33:40270 "../modules/video_coding",
Evan Shrubsole9a999052021-12-12 14:27:00271 "../modules/video_coding:frame_helpers",
Evan Shrubsole9d290262021-12-15 13:33:40272 "../modules/video_coding:video_codec_interface",
Rasmus Brandt23772262022-05-23 07:53:15273 "../modules/video_coding/timing:inter_frame_delay",
Rasmus Brandt10944e62022-05-25 08:12:42274 "../modules/video_coding/timing:jitter_estimator",
Rasmus Brandtc4d253c2022-05-25 10:03:35275 "../modules/video_coding/timing:timing_module",
Evan Shrubsole6cd6d8e2022-02-11 14:30:26276 "../rtc_base:checks",
Evan Shrubsole9a999052021-12-12 14:27:00277 "../rtc_base:logging",
278 "../rtc_base:macromagic",
Evan Shrubsole4c269322022-08-02 08:57:04279 "../rtc_base/experiments:rtt_mult_experiment",
Evan Shrubsole9d290262021-12-15 13:33:40280 "../system_wrappers",
Evan Shrubsole9a999052021-12-12 14:27:00281 "../system_wrappers:field_trial",
282 ]
283 absl_deps = [
Oleh Prypin752436f2022-06-23 22:51:28284 "//third_party/abseil-cpp/absl/base:core_headers",
Evan Shrubsole9a999052021-12-12 14:27:00285 "//third_party/abseil-cpp/absl/functional:bind_front",
286 "//third_party/abseil-cpp/absl/types:optional",
287 ]
288}
289
Evan Shrubsole6cd6d8e2022-02-11 14:30:26290rtc_source_set("frame_decode_scheduler") {
291 sources = [ "frame_decode_scheduler.h" ]
292 deps = [
293 ":frame_decode_timing",
294 "../api/units:timestamp",
295 ]
296 absl_deps = [ "//third_party/abseil-cpp/absl/types:optional" ]
297}
298
299rtc_library("task_queue_frame_decode_scheduler") {
Evan Shrubsole9a999052021-12-12 14:27:00300 sources = [
Evan Shrubsole6cd6d8e2022-02-11 14:30:26301 "task_queue_frame_decode_scheduler.cc",
302 "task_queue_frame_decode_scheduler.h",
Evan Shrubsole9a999052021-12-12 14:27:00303 ]
304 deps = [
Evan Shrubsole6cd6d8e2022-02-11 14:30:26305 ":frame_decode_scheduler",
Evan Shrubsole9a999052021-12-12 14:27:00306 ":frame_decode_timing",
307 "../api:sequence_checker",
308 "../api/task_queue",
Artem Titovc374d112022-06-16 19:27:45309 "../api/task_queue:pending_task_safety_flag",
Evan Shrubsole9a999052021-12-12 14:27:00310 "../api/units:timestamp",
Evan Shrubsole6cd6d8e2022-02-11 14:30:26311 "../rtc_base:checks",
Evan Shrubsole9a999052021-12-12 14:27:00312 "../system_wrappers",
Evan Shrubsole9d290262021-12-15 13:33:40313 ]
314 absl_deps = [ "//third_party/abseil-cpp/absl/types:optional" ]
315}
316
Evan Shrubsole9a999052021-12-12 14:27:00317rtc_library("frame_decode_timing") {
318 sources = [
319 "frame_decode_timing.cc",
320 "frame_decode_timing.h",
321 ]
322 deps = [
323 "../api/task_queue",
Artem Titovc374d112022-06-16 19:27:45324 "../api/task_queue:pending_task_safety_flag",
Evan Shrubsolef7a19372022-02-14 13:05:10325 "../api/units:time_delta",
Rasmus Brandtc4d253c2022-05-25 10:03:35326 "../modules/video_coding/timing:timing_module",
Evan Shrubsole9a999052021-12-12 14:27:00327 "../rtc_base:logging",
Evan Shrubsole9a999052021-12-12 14:27:00328 "../system_wrappers",
329 ]
330 absl_deps = [ "//third_party/abseil-cpp/absl/types:optional" ]
331}
332
333rtc_library("video_receive_stream_timeout_tracker") {
334 sources = [
335 "video_receive_stream_timeout_tracker.cc",
336 "video_receive_stream_timeout_tracker.h",
337 ]
338 deps = [
339 "../api/task_queue",
340 "../api/units:time_delta",
Evan Shrubsolea1d3ada2022-06-16 11:52:09341 "../api/units:timestamp",
Evan Shrubsole4d3ba772022-06-22 14:32:36342 "../rtc_base:logging",
Evan Shrubsole9a999052021-12-12 14:27:00343 "../rtc_base/task_utils:repeating_task",
344 "../system_wrappers",
345 ]
346}
347
Evan Shrubsole6cd6d8e2022-02-11 14:30:26348rtc_library("decode_synchronizer") {
349 sources = [
350 "decode_synchronizer.cc",
351 "decode_synchronizer.h",
352 ]
353 deps = [
354 ":frame_decode_scheduler",
355 ":frame_decode_timing",
356 "../api:sequence_checker",
357 "../api/metronome",
358 "../api/task_queue",
359 "../api/units:time_delta",
360 "../api/units:timestamp",
361 "../rtc_base:checks",
362 "../rtc_base:logging",
363 "../rtc_base:macromagic",
364 ]
365 absl_deps = [ "//third_party/abseil-cpp/absl/types:optional" ]
366}
367
Mirko Bonadei86d053c2019-10-17 19:32:04368rtc_library("video_stream_encoder_impl") {
Niels Möller213618e2018-07-24 07:29:58369 visibility = [ "*" ]
370
371 # visibility = [ "../api/video:video_stream_encoder_create" ]
Niels Möller213618e2018-07-24 07:29:58372 sources = [
Åsa Perssonc5a74ff2020-09-20 15:50:00373 "alignment_adjuster.cc",
374 "alignment_adjuster.h",
Erik Språng7ca375c2019-02-06 15:20:17375 "encoder_bitrate_adjuster.cc",
376 "encoder_bitrate_adjuster.h",
377 "encoder_overshoot_detector.cc",
378 "encoder_overshoot_detector.h",
Ilya Nikolaevskiy2ebf5232019-05-13 14:13:36379 "frame_encode_metadata_writer.cc",
380 "frame_encode_metadata_writer.h",
Henrik Boströmce0ea492020-01-13 10:27:18381 "video_source_sink_controller.cc",
382 "video_source_sink_controller.h",
Niels Möller213618e2018-07-24 07:29:58383 "video_stream_encoder.cc",
384 "video_stream_encoder.h",
385 ]
386
Niels Möller213618e2018-07-24 07:29:58387 deps = [
Markus Handellb4e96d42021-11-05 11:00:55388 ":frame_cadence_adapter",
Jonas Orelande62c2f22022-03-29 09:04:48389 "../api:field_trials_view",
Henrik Boströmb08882b2020-01-07 09:11:17390 "../api:rtp_parameters",
Artem Titovd15a5752021-02-10 13:31:24391 "../api:sequence_checker",
Henrik Boströme2e8c172020-06-03 07:24:06392 "../api/adaptation:resource_adaptation_api",
Artem Titovc374d112022-06-16 19:27:45393 "../api/task_queue:pending_task_safety_flag",
Henrik Boström07b17df2020-01-15 10:42:12394 "../api/task_queue:task_queue",
Erik Språng7ca375c2019-02-06 15:20:17395 "../api/units:data_rate",
Niels Möller4dc66c52018-10-05 12:17:58396 "../api/video:encoded_image",
philipel6daa3042022-04-11 08:48:28397 "../api/video:render_resolution",
Evan Shrubsolece0a11d2020-04-16 09:36:55398 "../api/video:video_adaptation",
Erik Språng7ca375c2019-02-06 15:20:17399 "../api/video:video_bitrate_allocation",
Niels Möller213618e2018-07-24 07:29:58400 "../api/video:video_bitrate_allocator",
Jiawei Ouc2ebe212018-11-08 18:02:56401 "../api/video:video_bitrate_allocator_factory",
Evan Shrubsolecc62b162019-09-09 09:26:45402 "../api/video:video_codec_constants",
Niels Möller213618e2018-07-24 07:29:58403 "../api/video:video_frame",
Per Kjellandera9434842020-10-15 15:53:22404 "../api/video:video_layers_allocation",
Chen Xing5d24b162019-06-10 10:59:38405 "../api/video:video_rtp_headers",
Niels Möller213618e2018-07-24 07:29:58406 "../api/video:video_stream_encoder",
407 "../api/video_codecs:video_codecs_api",
Henrik Boström382cc6d2020-01-07 09:15:04408 "../call/adaptation:resource_adaptation",
Artem Titov94b57c02019-03-21 12:35:10409 "../common_video",
Erik Språng6a7baa72019-02-26 17:31:00410 "../modules:module_api_public",
Niels Möller213618e2018-07-24 07:29:58411 "../modules/video_coding",
Erik Språng6a7baa72019-02-26 17:31:00412 "../modules/video_coding:video_codec_interface",
Niels Möller213618e2018-07-24 07:29:58413 "../modules/video_coding:video_coding_utility",
Sergey Silkin8b9b5f92018-12-10 08:28:53414 "../modules/video_coding:webrtc_vp9_helpers",
Zhaoliang Ma528e4892021-11-12 05:05:07415 "../modules/video_coding/svc:scalability_structures",
Danil Chapovalov5219c6f2021-07-27 10:48:50416 "../modules/video_coding/svc:svc_rate_allocator",
Niels Möller213618e2018-07-24 07:29:58417 "../rtc_base:checks",
418 "../rtc_base:criticalsection",
Florent Castellia30aef32022-04-19 15:47:13419 "../rtc_base:event_tracer",
Florent Castelliaa6d05d2022-04-14 11:13:56420 "../rtc_base:location",
Niels Möller213618e2018-07-24 07:29:58421 "../rtc_base:logging",
Florent Castelli4467ad72022-04-04 13:18:46422 "../rtc_base:macromagic",
Florent Castellif4db3512022-04-14 11:38:05423 "../rtc_base:race_checker",
Florent Castelli6bb1fd32022-04-19 13:58:39424 "../rtc_base:rate_statistics",
Florent Castellif86f6f92022-04-05 00:54:12425 "../rtc_base:refcount",
Niels Möller213618e2018-07-24 07:29:58426 "../rtc_base:rtc_event",
427 "../rtc_base:rtc_numerics",
428 "../rtc_base:rtc_task_queue",
Florent Castellie10a9f62022-04-04 15:04:37429 "../rtc_base:safe_conversions",
Florent Castelli57aa81b2022-04-04 15:14:02430 "../rtc_base:stringutils",
Niels Möller213618e2018-07-24 07:29:58431 "../rtc_base:timeutils",
Erik Språng6a7baa72019-02-26 17:31:00432 "../rtc_base/experiments:alr_experiment",
Åsa Perssonf3d828e2019-05-06 10:22:49433 "../rtc_base/experiments:balanced_degradation_settings",
Åsa Persson258e9892021-02-25 09:39:51434 "../rtc_base/experiments:encoder_info_settings",
Niels Möllereea92882019-04-25 06:44:04435 "../rtc_base/experiments:field_trial_parser",
Åsa Perssone644a032019-11-08 14:56:00436 "../rtc_base/experiments:quality_rampup_experiment",
Åsa Persson139f4dc2019-08-02 07:29:58437 "../rtc_base/experiments:quality_scaler_settings",
Niels Möller213618e2018-07-24 07:29:58438 "../rtc_base/experiments:quality_scaling_experiment",
Erik Språng7ca375c2019-02-06 15:20:17439 "../rtc_base/experiments:rate_control_settings",
Markus Handella3765182020-07-08 11:13:32440 "../rtc_base/synchronization:mutex",
Mirko Bonadei20e4c802020-11-23 10:07:42441 "../rtc_base/system:no_unique_address",
Sebastian Janssonecb68972019-01-18 09:30:54442 "../rtc_base/task_utils:repeating_task",
Niels Möllerfe407b72019-09-10 08:48:48443 "../system_wrappers",
Mirko Bonadei17f48782018-09-28 06:51:10444 "../system_wrappers:field_trial",
Markus Handell8935a7e2021-10-19 11:12:36445 "../system_wrappers:metrics",
Henrik Boströmefbec9a2020-03-06 09:41:25446 "adaptation:video_adaptation",
Mirko Bonadei2dcf3482020-06-05 12:30:41447 ]
448 absl_deps = [
Steve Antonbd631a02019-03-28 17:51:27449 "//third_party/abseil-cpp/absl/algorithm:container",
Danil Chapovalov64f1f3f2020-01-16 13:41:10450 "//third_party/abseil-cpp/absl/base:core_headers",
Danil Chapovalov95eeaa72022-07-06 08:14:29451 "//third_party/abseil-cpp/absl/cleanup",
Niels Möller213618e2018-07-24 07:29:58452 "//third_party/abseil-cpp/absl/types:optional",
453 ]
454}
455
Rasmus Brandtfbf66dd2022-05-23 07:53:32456rtc_library("unique_timestamp_counter") {
457 sources = [
458 "unique_timestamp_counter.cc",
459 "unique_timestamp_counter.h",
460 ]
461}
462
Peter Boström02083222016-06-14 10:52:54463if (rtc_include_tests) {
Mirko Bonadei86d053c2019-10-17 19:32:04464 rtc_library("video_mocks") {
Sebastian Jansson652dc912018-04-19 15:09:15465 testonly = true
Danil Chapovalov64f1f3f2020-01-16 13:41:10466 sources = [ "test/mock_video_stream_encoder.h" ]
Sebastian Jansson652dc912018-04-19 15:09:15467 deps = [
Niels Möller213618e2018-07-24 07:29:58468 "../api/video:video_stream_encoder",
Sebastian Jansson652dc912018-04-19 15:09:15469 "../test:test_support",
470 ]
471 }
Andrey Logvine7c79fd2021-02-01 09:56:37472 if (!build_with_chromium) {
473 rtc_library("video_quality_test") {
Kári Tristan Helgasonede7cb22019-03-06 09:34:09474 testonly = true
Andrey Logvine7c79fd2021-02-01 09:56:37475
476 # Only targets in this file and api/ can depend on this.
477 visibility = [
478 ":*",
479 "../api:create_video_quality_test_fixture_api",
480 ]
481 sources = [
482 "video_analyzer.cc",
483 "video_analyzer.h",
484 "video_quality_test.cc",
485 "video_quality_test.h",
486 ]
487 deps = [
488 ":frame_dumping_decoder",
489 "../api:create_frame_generator",
490 "../api:fec_controller_api",
491 "../api:frame_generator_api",
492 "../api:libjingle_peerconnection_api",
493 "../api:rtc_event_log_output_file",
494 "../api:test_dependency_factory",
495 "../api:video_quality_test_fixture_api",
496 "../api/numerics",
497 "../api/rtc_event_log:rtc_event_log_factory",
498 "../api/task_queue",
499 "../api/task_queue:default_task_queue_factory",
500 "../api/video:builtin_video_bitrate_allocator_factory",
501 "../api/video:video_bitrate_allocator_factory",
502 "../api/video:video_frame",
503 "../api/video:video_rtp_headers",
504 "../api/video_codecs:video_codecs_api",
505 "../call:fake_network",
506 "../call:simulated_network",
507 "../common_video",
508 "../media:rtc_audio_video",
509 "../media:rtc_encoder_simulcast_proxy",
510 "../media:rtc_internal_video_codecs",
511 "../media:rtc_media_base",
512 "../modules/audio_device:audio_device_api",
513 "../modules/audio_device:audio_device_module_from_input_and_output",
514 "../modules/audio_device:windows_core_audio_utility",
515 "../modules/audio_mixer:audio_mixer_impl",
516 "../modules/rtp_rtcp",
517 "../modules/rtp_rtcp:rtp_rtcp_format",
518 "../modules/video_coding",
519 "../modules/video_coding:video_coding_utility",
520 "../modules/video_coding:webrtc_h264",
521 "../modules/video_coding:webrtc_multiplex",
522 "../modules/video_coding:webrtc_vp8",
523 "../modules/video_coding:webrtc_vp9",
Florent Castelli4467ad72022-04-04 13:18:46524 "../rtc_base:macromagic",
Florent Castelli45a05992022-04-14 10:18:28525 "../rtc_base:platform_thread",
Andrey Logvine7c79fd2021-02-01 09:56:37526 "../rtc_base:rtc_base_tests_utils",
Florent Castelli33d31fb2022-04-04 14:57:52527 "../rtc_base:rtc_event",
Andrey Logvine7c79fd2021-02-01 09:56:37528 "../rtc_base:rtc_numerics",
Florent Castelli57aa81b2022-04-04 15:14:02529 "../rtc_base:stringutils",
Andrey Logvine7c79fd2021-02-01 09:56:37530 "../rtc_base:task_queue_for_test",
Florent Castellidd837e22022-04-04 15:16:15531 "../rtc_base:timeutils",
Andrey Logvine7c79fd2021-02-01 09:56:37532 "../rtc_base/synchronization:mutex",
533 "../rtc_base/task_utils:repeating_task",
534 "../system_wrappers",
535 "../test:fake_video_codecs",
536 "../test:fileutils",
537 "../test:perf_test",
538 "../test:platform_video_capturer",
539 "../test:rtp_test_utils",
540 "../test:test_common",
541 "../test:test_renderer",
542 "../test:test_support",
543 "../test:test_support_test_artifacts",
544 "../test:video_test_common",
545 "../test:video_test_support",
546 ]
547 absl_deps = [
548 "//third_party/abseil-cpp/absl/algorithm:container",
549 "//third_party/abseil-cpp/absl/flags:flag",
550 "//third_party/abseil-cpp/absl/flags:parse",
551 ]
552
553 if (is_mac || is_ios) {
554 deps += [ "../test:video_test_mac" ]
555 }
Florent Castelli15a3c3f2022-04-27 08:33:27556 if (is_win) {
557 deps += [ "../rtc_base/win:scoped_com_initializer" ]
558 }
Kári Tristan Helgasonede7cb22019-03-06 09:34:09559 }
Andrey Logvine7c79fd2021-02-01 09:56:37560
561 rtc_library("video_full_stack_tests") {
Kári Tristan Helgasonede7cb22019-03-06 09:34:09562 testonly = true
Andrey Logvine7c79fd2021-02-01 09:56:37563
564 sources = [ "full_stack_tests.cc" ]
565 deps = [
566 ":video_quality_test",
567 "../api:simulated_network_api",
568 "../api:test_dependency_factory",
569 "../api:video_quality_test_fixture_api",
570 "../api/video_codecs:video_codecs_api",
Andrey Logvine7c79fd2021-02-01 09:56:37571 "../modules/pacing",
572 "../modules/video_coding:webrtc_vp9",
573 "../rtc_base/experiments:alr_experiment",
574 "../system_wrappers:field_trial",
575 "../test:field_trial",
576 "../test:fileutils",
577 "../test:test_common",
578 "../test:test_support",
579 "//testing/gtest",
580 ]
581 absl_deps = [
582 "//third_party/abseil-cpp/absl/flags:flag",
583 "//third_party/abseil-cpp/absl/flags:parse",
584 "//third_party/abseil-cpp/absl/types:optional",
585 ]
Kári Tristan Helgasonede7cb22019-03-06 09:34:09586 }
Kári Tristan Helgasonede7cb22019-03-06 09:34:09587
Andrey Logvine7c79fd2021-02-01 09:56:37588 rtc_library("video_pc_full_stack_tests") {
589 testonly = true
kjellandera3cac052016-10-24 08:52:39590
Andrey Logvine7c79fd2021-02-01 09:56:37591 sources = [ "pc_full_stack_tests.cc" ]
592 deps = [
593 "../api:create_network_emulation_manager",
594 "../api:create_peer_connection_quality_test_frame_generator",
595 "../api:create_peerconnection_quality_test_fixture",
596 "../api:frame_generator_api",
597 "../api:media_stream_interface",
598 "../api:network_emulation_manager_api",
599 "../api:peer_connection_quality_test_fixture_api",
600 "../api:simulated_network_api",
601 "../api:time_controller",
Johannes Kronc3fcee72021-04-19 07:09:26602 "../api/video_codecs:video_codecs_api",
Andrey Logvine7c79fd2021-02-01 09:56:37603 "../call:simulated_network",
Andrey Logvine7c79fd2021-02-01 09:56:37604 "../modules/video_coding:webrtc_vp9",
605 "../system_wrappers:field_trial",
606 "../test:field_trial",
607 "../test:fileutils",
608 "../test:test_support",
609 "../test/pc/e2e:network_quality_metrics_reporter",
610 ]
611 }
kjellandera3cac052016-10-24 08:52:39612
Andrey Logvine7c79fd2021-02-01 09:56:37613 rtc_library("video_loopback_lib") {
614 testonly = true
615 sources = [
616 "video_loopback.cc",
617 "video_loopback.h",
618 ]
619 deps = [
620 ":video_quality_test",
621 "../api:libjingle_peerconnection_api",
622 "../api:simulated_network_api",
623 "../api:video_quality_test_fixture_api",
624 "../api/transport:bitrate_settings",
625 "../api/video_codecs:video_codecs_api",
626 "../rtc_base:checks",
627 "../rtc_base:logging",
628 "../system_wrappers:field_trial",
629 "../test:field_trial",
630 "../test:run_test",
631 "../test:run_test_interface",
632 "../test:test_common",
633 "../test:test_renderer",
634 "../test:test_support",
635 "//testing/gtest",
636 ]
637 absl_deps = [
638 "//third_party/abseil-cpp/absl/flags:flag",
639 "//third_party/abseil-cpp/absl/flags:parse",
640 "//third_party/abseil-cpp/absl/types:optional",
641 ]
642 }
643
644 if (is_mac) {
645 mac_app_bundle("video_loopback") {
646 testonly = true
647 sources = [ "video_loopback_main.mm" ]
648 info_plist = "../test/mac/Info.plist"
649 deps = [ ":video_loopback_lib" ]
650 }
651 } else {
652 rtc_executable("video_loopback") {
653 testonly = true
654 sources = [ "video_loopback_main.cc" ]
655 deps = [ ":video_loopback_lib" ]
656 }
657 }
658
659 rtc_executable("screenshare_loopback") {
660 testonly = true
661 sources = [ "screenshare_loopback.cc" ]
662
663 deps = [
664 ":video_quality_test",
665 "../api:libjingle_peerconnection_api",
666 "../api:simulated_network_api",
667 "../api:video_quality_test_fixture_api",
668 "../api/transport:bitrate_settings",
669 "../api/video_codecs:video_codecs_api",
670 "../rtc_base:checks",
671 "../rtc_base:logging",
672 "../rtc_base:stringutils",
673 "../system_wrappers:field_trial",
674 "../test:field_trial",
675 "../test:run_test",
676 "../test:run_test_interface",
677 "../test:test_common",
678 "../test:test_renderer",
679 "../test:test_support",
680 "//third_party/abseil-cpp/absl/flags:flag",
681 "//third_party/abseil-cpp/absl/flags:parse",
682 "//third_party/abseil-cpp/absl/types:optional",
683 ]
684 }
685
686 rtc_executable("sv_loopback") {
687 testonly = true
688 sources = [ "sv_loopback.cc" ]
689 deps = [
690 ":video_quality_test",
691 "../api:libjingle_peerconnection_api",
692 "../api:simulated_network_api",
693 "../api:video_quality_test_fixture_api",
694 "../api/transport:bitrate_settings",
695 "../api/video_codecs:video_codecs_api",
696 "../rtc_base:checks",
697 "../rtc_base:logging",
698 "../rtc_base:stringutils",
699 "../system_wrappers:field_trial",
700 "../test:field_trial",
701 "../test:run_test",
702 "../test:run_test_interface",
703 "../test:test_common",
704 "../test:test_renderer",
705 "../test:test_support",
706 "//testing/gtest",
707 "//third_party/abseil-cpp/absl/flags:flag",
708 "//third_party/abseil-cpp/absl/flags:parse",
709 "//third_party/abseil-cpp/absl/types:optional",
710 ]
711 }
Ilya Nikolaevskiy255d1cd2017-12-21 17:02:59712 }
713
Peter Boström02083222016-06-14 10:52:54714 # TODO(pbos): Rename test suite.
Mirko Bonadei86d053c2019-10-17 19:32:04715 rtc_library("video_tests") {
Peter Boström02083222016-06-14 10:52:54716 testonly = true
kjellandere0629c02017-04-25 11:04:50717
hta9aa96882016-12-06 13:36:03718 defines = []
Peter Boström02083222016-06-14 10:52:54719 sources = [
Åsa Perssonc5a74ff2020-09-20 15:50:00720 "alignment_adjuster_unittest.cc",
Benjamin Wright00765292018-12-01 00:18:26721 "buffered_frame_decryptor_unittest.cc",
Tommi822a8742020-05-10 22:42:30722 "call_stats2_unittest.cc",
Åsa Perssoncb7eddb2018-11-05 13:11:44723 "cpu_scaling_tests.cc",
Evan Shrubsole6cd6d8e2022-02-11 14:30:26724 "decode_synchronizer_unittest.cc",
Erik Språng7ca375c2019-02-06 15:20:17725 "encoder_bitrate_adjuster_unittest.cc",
Erik Språng7ca375c2019-02-06 15:20:17726 "encoder_overshoot_detector_unittest.cc",
Elad Alon14d1c9d2019-04-08 12:16:17727 "encoder_rtcp_feedback_unittest.cc",
Sebastian Janssonc5017132018-02-02 15:24:16728 "end_to_end_tests/bandwidth_tests.cc",
729 "end_to_end_tests/call_operation_tests.cc",
730 "end_to_end_tests/codec_tests.cc",
731 "end_to_end_tests/config_tests.cc",
732 "end_to_end_tests/extended_reports_tests.cc",
733 "end_to_end_tests/fec_tests.cc",
Benjamin Wright150a9072018-10-26 22:43:06734 "end_to_end_tests/frame_encryption_tests.cc",
Sebastian Janssonc5017132018-02-02 15:24:16735 "end_to_end_tests/histogram_tests.cc",
Åsa Persson96c9fc42018-05-23 10:47:20736 "end_to_end_tests/multi_codec_receive_tests.cc",
Sebastian Janssonc5017132018-02-02 15:24:16737 "end_to_end_tests/multi_stream_tester.cc",
738 "end_to_end_tests/multi_stream_tester.h",
739 "end_to_end_tests/multi_stream_tests.cc",
740 "end_to_end_tests/network_state_tests.cc",
Åsa Persson4a4273b2021-03-05 15:03:37741 "end_to_end_tests/resolution_bitrate_limits_tests.cc",
Sebastian Janssonc5017132018-02-02 15:24:16742 "end_to_end_tests/retransmission_tests.cc",
743 "end_to_end_tests/rtp_rtcp_tests.cc",
744 "end_to_end_tests/ssrc_tests.cc",
745 "end_to_end_tests/stats_tests.cc",
746 "end_to_end_tests/transport_feedback_tests.cc",
Markus Handellb4e96d42021-11-05 11:00:55747 "frame_cadence_adapter_unittest.cc",
Evan Shrubsole9a999052021-12-12 14:27:00748 "frame_decode_timing_unittest.cc",
Ilya Nikolaevskiy2ebf5232019-05-13 14:13:36749 "frame_encode_metadata_writer_unittest.cc",
Sebastian Janssone92f93f2017-06-22 12:44:04750 "picture_id_tests.cc",
Henrik Boströmce33b6a2019-05-28 15:42:38751 "quality_limitation_reason_tracker_unittest.cc",
Åsa Persson2027b662018-05-02 16:08:06752 "quality_scaling_tests.cc",
palmkvist349092b2016-12-13 10:45:57753 "quality_threshold_unittest.cc",
Tommi74fc5742020-04-27 08:43:06754 "receive_statistics_proxy2_unittest.cc",
Peter Boström02083222016-06-14 10:52:54755 "report_block_stats_unittest.cc",
Tommid3807da2020-05-22 15:36:36756 "rtp_video_stream_receiver2_unittest.cc",
Marina Ciocea78964c12020-03-10 20:31:52757 "rtp_video_stream_receiver_frame_transformer_delegate_unittest.cc",
Peter Boström02083222016-06-14 10:52:54758 "send_delay_stats_unittest.cc",
759 "send_statistics_proxy_unittest.cc",
760 "stats_counter_unittest.cc",
761 "stream_synchronization_unittest.cc",
Evan Shrubsole6cd6d8e2022-02-11 14:30:26762 "task_queue_frame_decode_scheduler_unittest.cc",
Rasmus Brandtfbf66dd2022-05-23 07:53:32763 "unique_timestamp_counter_unittest.cc",
Tommiae4d0972020-05-18 06:45:38764 "video_receive_stream2_unittest.cc",
Evan Shrubsole9a999052021-12-12 14:27:00765 "video_receive_stream_timeout_tracker_unittest.cc",
Sebastian Jansson652dc912018-04-19 15:09:15766 "video_send_stream_impl_unittest.cc",
Peter Boström02083222016-06-14 10:52:54767 "video_send_stream_tests.cc",
Henrik Boströmce0ea492020-01-13 10:27:18768 "video_source_sink_controller_unittest.cc",
Evan Shrubsole476f18d22022-08-15 15:21:16769 "video_stream_buffer_controller_unittest.cc",
philipel539f9b32020-01-09 15:12:25770 "video_stream_decoder_impl_unittest.cc",
mflodmancc3d4422017-08-03 15:27:51771 "video_stream_encoder_unittest.cc",
Peter Boström02083222016-06-14 10:52:54772 ]
773 deps = [
Evan Shrubsole6cd6d8e2022-02-11 14:30:26774 ":decode_synchronizer",
Markus Handellb4e96d42021-11-05 11:00:55775 ":frame_cadence_adapter",
Evan Shrubsole9a999052021-12-12 14:27:00776 ":frame_decode_scheduler",
777 ":frame_decode_timing",
Evan Shrubsole6cd6d8e2022-02-11 14:30:26778 ":task_queue_frame_decode_scheduler",
Rasmus Brandtfbf66dd2022-05-23 07:53:32779 ":unique_timestamp_counter",
Peter Boström02083222016-06-14 10:52:54780 ":video",
Sebastian Jansson652dc912018-04-19 15:09:15781 ":video_mocks",
Evan Shrubsole9a999052021-12-12 14:27:00782 ":video_receive_stream_timeout_tracker",
Evan Shrubsole476f18d22022-08-15 15:21:16783 ":video_stream_buffer_controller",
philipel539f9b32020-01-09 15:12:25784 ":video_stream_decoder_impl",
Niels Möller213618e2018-07-24 07:29:58785 ":video_stream_encoder_impl",
Artem Titov33f9d2b2019-12-05 14:59:00786 "../api:create_frame_generator",
Benjamin Wright150a9072018-10-26 22:43:06787 "../api:fake_frame_decryptor",
788 "../api:fake_frame_encryptor",
Markus Handell8e4197b2022-05-30 13:45:28789 "../api:field_trials_view",
Artem Titov33f9d2b2019-12-05 14:59:00790 "../api:frame_generator_api",
Yves Gerey3e707812018-11-28 15:47:49791 "../api:libjingle_peerconnection_api",
Elad Alon45befc52019-07-02 09:20:09792 "../api:mock_fec_controller_override",
Benjamin Wright00765292018-12-01 00:18:26793 "../api:mock_frame_decryptor",
Henrik Boström56db9ff2021-03-24 08:06:45794 "../api:mock_video_codec_factory",
Danil Chapovalov9cd4d492021-08-03 12:59:00795 "../api:mock_video_decoder",
philipel9b058032020-02-10 10:30:00796 "../api:mock_video_encoder",
Niels Mölleref1052a2019-03-20 07:40:23797 "../api:rtp_headers",
Niels Möller6dcd4dc2019-08-26 08:45:28798 "../api:rtp_parameters",
Mirko Bonadeid9708072019-01-25 19:26:48799 "../api:scoped_refptr",
Artem Titovd15a5752021-02-10 13:31:24800 "../api:sequence_checker",
Artem Titov46c4e602018-08-17 12:26:54801 "../api:simulated_network_api",
Evan Shrubsole44be5792022-04-26 14:24:41802 "../api:time_controller",
Marina Ciocea78964c12020-03-10 20:31:52803 "../api:transport_api",
Henrik Boströme2e8c172020-06-03 07:24:06804 "../api/adaptation:resource_adaptation_api",
Mirko Bonadeieaaaf412019-09-13 12:42:15805 "../api/crypto:options",
Evan Shrubsole6cd6d8e2022-02-11 14:30:26806 "../api/metronome/test:fake_metronome",
Danil Chapovalov83bbe912019-08-07 10:24:53807 "../api/rtc_event_log",
Danil Chapovalov44db4362019-09-30 02:16:28808 "../api/task_queue",
Danil Chapovalov22ed3662019-03-19 18:39:49809 "../api/task_queue:default_task_queue_factory",
Danil Chapovalov99b71df2018-10-26 13:57:48810 "../api/test/video:function_video_factory",
Erik Språng7ca375c2019-02-06 15:20:17811 "../api/units:data_rate",
Evan Shrubsole9a999052021-12-12 14:27:00812 "../api/units:frequency",
Evan Shrubsole9d290262021-12-15 13:33:40813 "../api/units:time_delta",
Henrik Boström23aff9b2019-05-20 13:15:38814 "../api/units:timestamp",
Jiawei Ouc2ebe212018-11-08 18:02:56815 "../api/video:builtin_video_bitrate_allocator_factory",
Niels Möller4dc66c52018-10-05 12:17:58816 "../api/video:encoded_image",
Evan Shrubsole44be5792022-04-26 14:24:41817 "../api/video:recordable_encoded_frame",
Evan Shrubsolece0a11d2020-04-16 09:36:55818 "../api/video:video_adaptation",
Erik Språngf93eda12019-01-16 16:10:57819 "../api/video:video_bitrate_allocation",
Niels Möllerc6ce9c52018-05-11 09:15:30820 "../api/video:video_frame",
Johannes Krond51ec582019-04-15 11:32:41821 "../api/video:video_frame_type",
Chen Xing5d24b162019-06-10 10:59:38822 "../api/video:video_rtp_headers",
Evan Shrubsole44be5792022-04-26 14:24:41823 "../api/video/test:video_frame_matchers",
mbonadei9087d492017-04-25 07:35:35824 "../api/video_codecs:video_codecs_api",
Elad Aloncde8ab22019-03-20 10:56:20825 "../api/video_codecs:vp8_temporal_layers_factory",
mbonadei9087d492017-04-25 07:35:35826 "../call:call_interfaces",
Artem Titovdd2eebe2018-08-20 11:27:45827 "../call:fake_network",
Sebastian Jansson652dc912018-04-19 15:09:15828 "../call:mock_bitrate_allocator",
eladalone2173d92017-07-28 17:05:45829 "../call:mock_rtp_interfaces",
Yves Gerey3e707812018-11-28 15:47:49830 "../call:rtp_interfaces",
nisse0f15f922017-06-21 08:05:22831 "../call:rtp_receiver",
sprangdb2a9fc2017-08-09 13:42:32832 "../call:rtp_sender",
Artem Titovdd2eebe2018-08-20 11:27:45833 "../call:simulated_network",
Yves Gerey3e707812018-11-28 15:47:49834 "../call:simulated_packet_receiver",
aleloi440b6d92017-08-22 12:43:23835 "../call:video_stream_api",
Henrik Boströmce0ea492020-01-13 10:27:18836 "../call/adaptation:resource_adaptation",
Evan Shrubsoleaa6fbc12020-02-25 15:26:01837 "../call/adaptation:resource_adaptation_test_utilities",
mbonadei9087d492017-04-25 07:35:35838 "../common_video",
Johannes Kronf1ab9b92018-12-14 09:14:07839 "../common_video/test:utilities",
Mirko Bonadei75baa492018-01-11 16:07:30840 "../media:rtc_audio_video",
Anders Carlssona114c882018-01-04 14:10:22841 "../media:rtc_internal_video_codecs",
brandtr5e171752017-05-23 10:32:16842 "../media:rtc_media",
magjedceecea42016-11-28 15:20:21843 "../media:rtc_media_base",
mbonadei9087d492017-04-25 07:35:35844 "../media:rtc_media_tests_utils",
Jonathan Yu9a5da492018-10-19 07:51:18845 "../media:rtc_simulcast_encoder_adapter",
Danil Chapovalov7c067772019-10-07 10:56:24846 "../modules:module_api_public",
mbonadei9087d492017-04-25 07:35:35847 "../modules/pacing",
848 "../modules/rtp_rtcp",
kjellandere0629c02017-04-25 11:04:50849 "../modules/rtp_rtcp:mock_rtp_rtcp",
Mirko Bonadeib5728d92017-12-06 06:51:33850 "../modules/rtp_rtcp:rtp_rtcp_format",
mbonadei9087d492017-04-25 07:35:35851 "../modules/video_coding",
Sergey Silkin86684962018-03-28 17:32:37852 "../modules/video_coding:codec_globals_headers",
Markus Handell269ac812019-12-03 13:31:45853 "../modules/video_coding:encoded_frame",
philipel10dc1a62021-09-15 08:45:43854 "../modules/video_coding:packet_buffer",
Patrik Höglund99175c62018-01-08 10:05:10855 "../modules/video_coding:video_codec_interface",
mbonadei9087d492017-04-25 07:35:35856 "../modules/video_coding:video_coding_utility",
857 "../modules/video_coding:webrtc_h264",
Emircan Uysaleref76e5a2018-02-12 21:36:41858 "../modules/video_coding:webrtc_multiplex",
Sergio Garcia Murillo43800f92018-06-21 14:16:38859 "../modules/video_coding:webrtc_vp8",
mbonadei9087d492017-04-25 07:35:35860 "../modules/video_coding:webrtc_vp9",
Erik Språng7444b192021-06-02 12:02:13861 "../modules/video_coding:webrtc_vp9_helpers",
philipel09a28482022-05-25 07:47:06862 "../modules/video_coding/codecs/av1:libaom_av1_encoder",
Niels Möller79d566b2022-04-29 09:03:13863 "../modules/video_coding/svc:scalability_mode_util",
Asa Perssoncde992d2022-05-16 20:37:34864 "../modules/video_coding/svc:scalability_structures",
865 "../modules/video_coding/svc:scalable_video_controller",
Rasmus Brandtc4d253c2022-05-25 10:03:35866 "../modules/video_coding/timing:timing_module",
Elad Alon157540a2019-02-08 22:37:52867 "../rtc_base",
Florent Castelliceb7b362022-04-19 15:35:04868 "../rtc_base:byte_buffer",
Patrik Höglunda8005cf2017-12-13 15:05:42869 "../rtc_base:checks",
Henrik Boström2671dac2020-05-19 14:29:09870 "../rtc_base:gunit_helpers",
Florent Castelli0af55ba2022-04-04 13:06:30871 "../rtc_base:logging",
Florent Castelli4467ad72022-04-04 13:18:46872 "../rtc_base:macromagic",
Florent Castelli45a05992022-04-14 10:18:28873 "../rtc_base:platform_thread",
Patrik Höglunda8005cf2017-12-13 15:05:42874 "../rtc_base:rate_limiter",
Florent Castelli6bb1fd32022-04-19 13:58:39875 "../rtc_base:rate_statistics",
Florent Castellif86f6f92022-04-05 00:54:12876 "../rtc_base:refcount",
ehmaldonadof6a861a2017-07-19 17:40:47877 "../rtc_base:rtc_base_tests_utils",
Florent Castelli33d31fb2022-04-04 14:57:52878 "../rtc_base:rtc_event",
Bjorn Tereliusa194e582017-10-25 11:07:09879 "../rtc_base:rtc_numerics",
Tommi38c5d932018-03-27 21:11:09880 "../rtc_base:rtc_task_queue",
Florent Castellie10a9f62022-04-04 15:04:37881 "../rtc_base:safe_conversions",
Florent Castelli57aa81b2022-04-04 15:14:02882 "../rtc_base:stringutils",
Danil Chapovalovd26a9162019-03-19 17:08:37883 "../rtc_base:task_queue_for_test",
Mirko Bonadeie5f4c6b2021-01-15 09:41:01884 "../rtc_base:threading",
Florent Castellidd837e22022-04-04 15:16:15885 "../rtc_base:timeutils",
Evan Shrubsole9a999052021-12-12 14:27:00886 "../rtc_base/containers:flat_map",
Sebastian Janssoncabe3832018-01-12 09:54:18887 "../rtc_base/experiments:alr_experiment",
Åsa Persson258e9892021-02-25 09:39:51888 "../rtc_base/experiments:encoder_info_settings",
Markus Handell9bbff072020-07-07 12:23:18889 "../rtc_base/synchronization:mutex",
mbonadei9087d492017-04-25 07:35:35890 "../system_wrappers",
Mirko Bonadei17f48782018-09-28 06:51:10891 "../system_wrappers:field_trial",
892 "../system_wrappers:metrics",
mbonadei9087d492017-04-25 07:35:35893 "../test:direct_transport",
Danil Chapovalovce928172019-04-24 16:17:42894 "../test:encoder_settings",
Evan Shrubsolea0ee64c2022-04-26 08:09:04895 "../test:fake_encoded_frame",
Ilya Nikolaevskiyb0588e62018-08-27 12:12:27896 "../test:fake_video_codecs",
mbonadei9087d492017-04-25 07:35:35897 "../test:field_trial",
Patrik Höglund7696bef2018-03-15 14:05:39898 "../test:fileutils",
Artem Titov33f9d2b2019-12-05 14:59:00899 "../test:frame_utils",
Marina Ciocea1148fd52020-04-29 20:39:13900 "../test:mock_frame_transformer",
Tim Na9526c552020-02-20 19:53:13901 "../test:mock_transport",
Danil Chapovalovce928172019-04-24 16:17:42902 "../test:null_transport",
Edward Lemure66572b2018-01-05 14:34:09903 "../test:perf_test",
mbonadei9087d492017-04-25 07:35:35904 "../test:rtp_test_utils",
Niels Möller65b2d8a2022-05-19 14:06:23905 "../test:run_loop",
Jonas Orelandc7f691a2022-03-09 14:12:07906 "../test:scoped_key_value_config",
mbonadei9087d492017-04-25 07:35:35907 "../test:test_common",
908 "../test:test_support",
909 "../test:video_test_common",
Markus Handell486cc552019-12-03 13:37:28910 "../test/time_controller",
Henrik Boströmefbec9a2020-03-06 09:41:25911 "adaptation:video_adaptation",
Mirko Bonadei2dcf3482020-06-05 12:30:41912 ]
913 absl_deps = [
Steve Antonbd631a02019-03-28 17:51:27914 "//third_party/abseil-cpp/absl/algorithm:container",
Danil Chapovalov95eeaa72022-07-06 08:14:29915 "//third_party/abseil-cpp/absl/functional:any_invocable",
Evan Shrubsole6cd6d8e2022-02-11 14:30:26916 "//third_party/abseil-cpp/absl/functional:bind_front",
Karl Wiberg918f50c2018-07-05 09:40:33917 "//third_party/abseil-cpp/absl/memory",
Niels Möllerfd0f6b92022-06-09 13:05:47918 "//third_party/abseil-cpp/absl/strings",
Danil Chapovalovb9b146c2018-06-15 10:28:07919 "//third_party/abseil-cpp/absl/types:optional",
Evan Shrubsole9a999052021-12-12 14:27:00920 "//third_party/abseil-cpp/absl/types:variant",
Peter Boström02083222016-06-14 10:52:54921 ]
Dan Minor9c686132018-01-15 15:20:00922 if (!build_with_mozilla) {
923 deps += [ "../media:rtc_media_base" ]
924 }
Peter Boström02083222016-06-14 10:52:54925 }
926}