2014-06-23 19:21:07 +00:00
|
|
|
# Copyright (c) 2014 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("../../build/webrtc.gni")
|
|
|
|
|
|
2016-09-23 00:38:52 -07:00
|
|
|
rtc_static_library("video_coding") {
|
2014-06-23 19:21:07 +00:00
|
|
|
sources = [
|
2015-11-18 22:00:21 +01:00
|
|
|
"codec_database.cc",
|
|
|
|
|
"codec_database.h",
|
|
|
|
|
"codec_timer.cc",
|
|
|
|
|
"codec_timer.h",
|
|
|
|
|
"decoding_state.cc",
|
|
|
|
|
"decoding_state.h",
|
|
|
|
|
"encoded_frame.cc",
|
|
|
|
|
"encoded_frame.h",
|
|
|
|
|
"fec_tables_xor.h",
|
|
|
|
|
"frame_buffer.cc",
|
|
|
|
|
"frame_buffer.h",
|
2016-05-19 12:19:35 +02:00
|
|
|
"frame_buffer2.cc",
|
|
|
|
|
"frame_buffer2.h",
|
2016-04-01 02:01:54 -07:00
|
|
|
"frame_object.cc",
|
|
|
|
|
"frame_object.h",
|
2015-11-18 22:00:21 +01:00
|
|
|
"generic_decoder.cc",
|
|
|
|
|
"generic_decoder.h",
|
|
|
|
|
"generic_encoder.cc",
|
|
|
|
|
"generic_encoder.h",
|
2016-12-08 03:57:17 -08:00
|
|
|
"h264_sprop_parameter_sets.cc",
|
|
|
|
|
"h264_sprop_parameter_sets.h",
|
2016-11-03 04:03:01 -07:00
|
|
|
"h264_sps_pps_tracker.cc",
|
|
|
|
|
"h264_sps_pps_tracker.h",
|
2016-03-12 03:30:23 -08:00
|
|
|
"histogram.cc",
|
|
|
|
|
"histogram.h",
|
2016-11-16 16:41:30 +01:00
|
|
|
"include/video_codec_initializer.h",
|
2015-11-18 22:00:21 +01:00
|
|
|
"include/video_coding.h",
|
|
|
|
|
"include/video_coding_defines.h",
|
|
|
|
|
"inter_frame_delay.cc",
|
|
|
|
|
"inter_frame_delay.h",
|
|
|
|
|
"internal_defines.h",
|
|
|
|
|
"jitter_buffer.cc",
|
|
|
|
|
"jitter_buffer.h",
|
|
|
|
|
"jitter_buffer_common.h",
|
|
|
|
|
"jitter_estimator.cc",
|
|
|
|
|
"jitter_estimator.h",
|
|
|
|
|
"media_opt_util.cc",
|
|
|
|
|
"media_opt_util.h",
|
|
|
|
|
"media_optimization.cc",
|
|
|
|
|
"media_optimization.h",
|
|
|
|
|
"nack_fec_tables.h",
|
2016-03-12 03:30:23 -08:00
|
|
|
"nack_module.cc",
|
|
|
|
|
"nack_module.h",
|
2015-11-18 22:00:21 +01:00
|
|
|
"packet.cc",
|
|
|
|
|
"packet.h",
|
2016-04-01 02:01:54 -07:00
|
|
|
"packet_buffer.cc",
|
|
|
|
|
"packet_buffer.h",
|
2016-06-02 15:45:42 +02:00
|
|
|
"protection_bitrate_calculator.cc",
|
|
|
|
|
"protection_bitrate_calculator.h",
|
2015-11-18 22:00:21 +01:00
|
|
|
"receiver.cc",
|
|
|
|
|
"receiver.h",
|
2016-05-13 06:01:03 -07:00
|
|
|
"rtp_frame_reference_finder.cc",
|
|
|
|
|
"rtp_frame_reference_finder.h",
|
2015-11-18 22:00:21 +01:00
|
|
|
"rtt_filter.cc",
|
|
|
|
|
"rtt_filter.h",
|
|
|
|
|
"session_info.cc",
|
|
|
|
|
"session_info.h",
|
|
|
|
|
"timestamp_map.cc",
|
|
|
|
|
"timestamp_map.h",
|
|
|
|
|
"timing.cc",
|
|
|
|
|
"timing.h",
|
2016-11-16 16:41:30 +01:00
|
|
|
"video_codec_initializer.cc",
|
2015-11-18 22:00:21 +01:00
|
|
|
"video_coding_impl.cc",
|
|
|
|
|
"video_coding_impl.h",
|
|
|
|
|
"video_receiver.cc",
|
|
|
|
|
"video_sender.cc",
|
2014-06-23 19:21:07 +00:00
|
|
|
]
|
|
|
|
|
|
2016-06-02 02:09:52 -07:00
|
|
|
# TODO(jschuh): Bug 1348: fix this warning.
|
|
|
|
|
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
|
2015-01-08 21:22:01 +00:00
|
|
|
|
2016-10-16 23:56:12 -07:00
|
|
|
if (!build_with_chromium && is_clang) {
|
|
|
|
|
# Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
|
2016-09-02 04:10:34 -07:00
|
|
|
suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
|
2014-08-25 14:15:35 +00:00
|
|
|
}
|
|
|
|
|
|
2014-06-23 19:21:07 +00:00
|
|
|
deps = [
|
|
|
|
|
":video_coding_utility",
|
2015-06-29 14:34:58 -07:00
|
|
|
":webrtc_h264",
|
2014-06-23 19:21:07 +00:00
|
|
|
":webrtc_i420",
|
|
|
|
|
":webrtc_vp8",
|
2014-11-01 06:10:48 +00:00
|
|
|
":webrtc_vp9",
|
2015-02-26 13:59:22 +00:00
|
|
|
"../..:webrtc_common",
|
2016-11-24 11:01:09 -08:00
|
|
|
"../../base:rtc_analytics",
|
2016-12-08 09:56:16 -08:00
|
|
|
"../../base:rtc_base",
|
|
|
|
|
"../../base:rtc_base_approved",
|
|
|
|
|
"../../base:rtc_task_queue",
|
2014-06-23 19:21:07 +00:00
|
|
|
"../../common_video",
|
|
|
|
|
"../../system_wrappers",
|
2016-12-08 09:56:16 -08:00
|
|
|
"../rtp_rtcp:rtp_rtcp",
|
|
|
|
|
"../utility:utility",
|
2014-06-23 19:21:07 +00:00
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-23 00:38:52 -07:00
|
|
|
rtc_static_library("video_coding_utility") {
|
2016-12-08 09:56:16 -08:00
|
|
|
# TODO(ehmaldonado): Remove (bugs.webrtc.org/6828)
|
|
|
|
|
# Errors on cyclic dependency with :video_coding if enabled.
|
|
|
|
|
check_includes = false
|
|
|
|
|
|
2014-07-07 11:46:43 +00:00
|
|
|
sources = [
|
2016-11-16 16:41:30 +01:00
|
|
|
"utility/default_video_bitrate_allocator.cc",
|
|
|
|
|
"utility/default_video_bitrate_allocator.h",
|
2014-07-07 11:46:43 +00:00
|
|
|
"utility/frame_dropper.cc",
|
2015-11-18 23:04:10 +01:00
|
|
|
"utility/frame_dropper.h",
|
2016-04-15 01:24:14 -07:00
|
|
|
"utility/ivf_file_writer.cc",
|
|
|
|
|
"utility/ivf_file_writer.h",
|
2016-09-14 02:14:58 -07:00
|
|
|
"utility/moving_average.cc",
|
2015-11-18 23:04:10 +01:00
|
|
|
"utility/moving_average.h",
|
2015-10-20 23:55:26 -07:00
|
|
|
"utility/qp_parser.cc",
|
2015-11-18 23:04:10 +01:00
|
|
|
"utility/qp_parser.h",
|
2014-09-30 18:05:02 +00:00
|
|
|
"utility/quality_scaler.cc",
|
2015-11-18 23:04:10 +01:00
|
|
|
"utility/quality_scaler.h",
|
2016-09-12 16:04:43 +02:00
|
|
|
"utility/simulcast_rate_allocator.cc",
|
|
|
|
|
"utility/simulcast_rate_allocator.h",
|
2015-05-21 11:12:02 -07:00
|
|
|
"utility/vp8_header_parser.cc",
|
2015-11-18 23:04:10 +01:00
|
|
|
"utility/vp8_header_parser.h",
|
2014-07-07 11:46:43 +00:00
|
|
|
]
|
|
|
|
|
|
2016-10-16 23:56:12 -07:00
|
|
|
if (!build_with_chromium && is_clang) {
|
|
|
|
|
# Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
|
2016-09-02 04:10:34 -07:00
|
|
|
suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
|
2014-08-25 14:15:35 +00:00
|
|
|
}
|
|
|
|
|
|
2015-05-25 12:55:39 +02:00
|
|
|
deps = [
|
2016-12-08 09:56:16 -08:00
|
|
|
"../..:webrtc_common",
|
2016-11-24 11:01:09 -08:00
|
|
|
"../../base:rtc_analytics",
|
2016-12-08 09:56:16 -08:00
|
|
|
"../../base:rtc_base_approved",
|
2016-07-14 23:35:55 -07:00
|
|
|
"../../common_video",
|
2015-05-25 12:55:39 +02:00
|
|
|
"../../system_wrappers",
|
|
|
|
|
]
|
2014-06-23 19:21:07 +00:00
|
|
|
}
|
|
|
|
|
|
2016-09-23 00:38:52 -07:00
|
|
|
rtc_static_library("webrtc_h264") {
|
2016-12-08 09:56:16 -08:00
|
|
|
# TODO(ehmaldonado): Remove (bugs.webrtc.org/6828)
|
|
|
|
|
# Errors on cyclic dependency if enabled:
|
|
|
|
|
# //webrtc/call:call ->
|
|
|
|
|
# //webrtc/video:video ->
|
|
|
|
|
# //webrtc/modules/video_coding:video_coding ->
|
|
|
|
|
# //webrtc/modules/video_coding:webrtc_h264 ->
|
|
|
|
|
# //webrtc/media:rtc_media ->
|
|
|
|
|
# //webrtc/call:call
|
|
|
|
|
check_includes = false
|
|
|
|
|
|
2015-06-29 14:34:58 -07:00
|
|
|
sources = [
|
|
|
|
|
"codecs/h264/h264.cc",
|
|
|
|
|
"codecs/h264/include/h264.h",
|
|
|
|
|
]
|
|
|
|
|
|
2016-10-16 23:56:12 -07:00
|
|
|
if (!build_with_chromium && is_clang) {
|
|
|
|
|
# Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
|
2016-09-02 04:10:34 -07:00
|
|
|
suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
|
2015-06-29 14:34:58 -07:00
|
|
|
}
|
|
|
|
|
|
2016-01-27 01:36:03 -08:00
|
|
|
defines = []
|
2015-06-29 14:34:58 -07:00
|
|
|
deps = [
|
2016-12-08 09:56:16 -08:00
|
|
|
":video_coding_utility",
|
|
|
|
|
"../../base:rtc_base_approved",
|
2015-06-29 14:34:58 -07:00
|
|
|
"../../system_wrappers",
|
|
|
|
|
]
|
2016-01-11 10:19:02 -08:00
|
|
|
|
2016-01-21 03:34:40 -08:00
|
|
|
if (rtc_use_h264) {
|
2016-02-03 05:09:37 -08:00
|
|
|
defines += [ "WEBRTC_USE_H264" ]
|
2016-02-02 02:26:05 -08:00
|
|
|
if (rtc_initialize_ffmpeg) {
|
|
|
|
|
defines += [ "WEBRTC_INITIALIZE_FFMPEG" ]
|
|
|
|
|
}
|
2016-01-27 01:36:03 -08:00
|
|
|
sources += [
|
|
|
|
|
"codecs/h264/h264_decoder_impl.cc",
|
|
|
|
|
"codecs/h264/h264_decoder_impl.h",
|
|
|
|
|
"codecs/h264/h264_encoder_impl.cc",
|
|
|
|
|
"codecs/h264/h264_encoder_impl.h",
|
|
|
|
|
]
|
2016-01-11 10:19:02 -08:00
|
|
|
deps += [
|
2016-02-07 23:04:26 -08:00
|
|
|
"../../common_video",
|
2016-12-06 05:36:03 -08:00
|
|
|
"../../media:rtc_media_base",
|
2016-01-11 10:19:02 -08:00
|
|
|
"//third_party/ffmpeg:ffmpeg",
|
|
|
|
|
"//third_party/openh264:encoder",
|
|
|
|
|
]
|
|
|
|
|
}
|
2015-06-29 14:34:58 -07:00
|
|
|
}
|
|
|
|
|
|
2016-09-23 00:38:52 -07:00
|
|
|
rtc_static_library("webrtc_i420") {
|
2014-07-07 11:46:43 +00:00
|
|
|
sources = [
|
2015-10-22 12:23:11 +02:00
|
|
|
"codecs/i420/i420.cc",
|
|
|
|
|
"codecs/i420/include/i420.h",
|
2014-07-07 11:46:43 +00:00
|
|
|
]
|
|
|
|
|
|
2016-10-16 23:56:12 -07:00
|
|
|
if (!build_with_chromium && is_clang) {
|
|
|
|
|
# Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
|
2016-09-02 04:10:34 -07:00
|
|
|
suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
|
2014-08-25 14:15:35 +00:00
|
|
|
}
|
|
|
|
|
|
2015-05-25 12:55:39 +02:00
|
|
|
deps = [
|
2016-12-08 09:56:16 -08:00
|
|
|
"../..:webrtc_common",
|
|
|
|
|
"../../base:rtc_base_approved",
|
|
|
|
|
"../../common_video:common_video",
|
2015-05-25 12:55:39 +02:00
|
|
|
"../../system_wrappers",
|
|
|
|
|
]
|
2014-06-23 19:21:07 +00:00
|
|
|
}
|
|
|
|
|
|
2016-09-23 00:38:52 -07:00
|
|
|
rtc_static_library("webrtc_vp8") {
|
2014-07-07 11:46:43 +00:00
|
|
|
sources = [
|
2014-09-30 18:05:02 +00:00
|
|
|
"codecs/vp8/default_temporal_layers.cc",
|
|
|
|
|
"codecs/vp8/default_temporal_layers.h",
|
2014-12-09 10:36:40 +00:00
|
|
|
"codecs/vp8/include/vp8.h",
|
|
|
|
|
"codecs/vp8/include/vp8_common_types.h",
|
2014-09-30 18:05:02 +00:00
|
|
|
"codecs/vp8/realtime_temporal_layers.cc",
|
|
|
|
|
"codecs/vp8/reference_picture_selection.cc",
|
|
|
|
|
"codecs/vp8/reference_picture_selection.h",
|
2014-12-09 10:36:40 +00:00
|
|
|
"codecs/vp8/screenshare_layers.cc",
|
|
|
|
|
"codecs/vp8/screenshare_layers.h",
|
|
|
|
|
"codecs/vp8/simulcast_encoder_adapter.cc",
|
|
|
|
|
"codecs/vp8/simulcast_encoder_adapter.h",
|
2014-07-07 11:46:43 +00:00
|
|
|
"codecs/vp8/temporal_layers.h",
|
2014-09-30 18:05:02 +00:00
|
|
|
"codecs/vp8/vp8_impl.cc",
|
|
|
|
|
"codecs/vp8/vp8_impl.h",
|
2014-07-07 11:46:43 +00:00
|
|
|
]
|
2014-08-25 14:15:35 +00:00
|
|
|
|
2016-06-02 02:09:52 -07:00
|
|
|
# TODO(jschuh): Bug 1348: fix this warning.
|
|
|
|
|
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
|
|
|
|
|
|
2016-10-16 23:56:12 -07:00
|
|
|
if (!build_with_chromium && is_clang) {
|
|
|
|
|
# Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
|
2016-09-02 04:10:34 -07:00
|
|
|
suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
|
2014-08-25 14:15:35 +00:00
|
|
|
}
|
|
|
|
|
|
2014-07-07 11:46:43 +00:00
|
|
|
deps = [
|
|
|
|
|
":video_coding_utility",
|
2015-02-26 13:59:22 +00:00
|
|
|
"../..:webrtc_common",
|
2016-12-08 09:56:16 -08:00
|
|
|
"../../base:rtc_base_approved",
|
2014-07-07 11:46:43 +00:00
|
|
|
"../../common_video",
|
|
|
|
|
"../../system_wrappers",
|
|
|
|
|
]
|
2014-09-30 18:05:02 +00:00
|
|
|
if (rtc_build_libvpx) {
|
2015-05-25 12:55:39 +02:00
|
|
|
deps += [ rtc_libvpx_dir ]
|
2014-09-30 18:05:02 +00:00
|
|
|
}
|
2014-06-23 19:21:07 +00:00
|
|
|
}
|
2014-11-01 06:10:48 +00:00
|
|
|
|
2016-09-23 00:38:52 -07:00
|
|
|
rtc_static_library("webrtc_vp9") {
|
2016-10-05 06:52:22 -07:00
|
|
|
if (rtc_libvpx_build_vp9) {
|
|
|
|
|
sources = [
|
|
|
|
|
"codecs/vp9/include/vp9.h",
|
|
|
|
|
"codecs/vp9/screenshare_layers.cc",
|
|
|
|
|
"codecs/vp9/screenshare_layers.h",
|
|
|
|
|
"codecs/vp9/vp9_frame_buffer_pool.cc",
|
|
|
|
|
"codecs/vp9/vp9_frame_buffer_pool.h",
|
|
|
|
|
"codecs/vp9/vp9_impl.cc",
|
|
|
|
|
"codecs/vp9/vp9_impl.h",
|
|
|
|
|
]
|
|
|
|
|
} else {
|
|
|
|
|
sources = [
|
|
|
|
|
"codecs/vp9/vp9_noop.cc",
|
|
|
|
|
]
|
|
|
|
|
}
|
2014-11-01 06:10:48 +00:00
|
|
|
|
2016-10-16 23:56:12 -07:00
|
|
|
if (!build_with_chromium && is_clang) {
|
|
|
|
|
# Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
|
2016-09-02 04:10:34 -07:00
|
|
|
suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
|
2014-11-01 06:10:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
|
":video_coding_utility",
|
2016-12-08 09:56:16 -08:00
|
|
|
"../../base:rtc_base_approved",
|
2014-11-01 06:10:48 +00:00
|
|
|
"../../common_video",
|
|
|
|
|
"../../system_wrappers",
|
|
|
|
|
]
|
|
|
|
|
if (rtc_build_libvpx) {
|
2015-05-25 12:55:39 +02:00
|
|
|
deps += [ rtc_libvpx_dir ]
|
2014-11-01 06:10:48 +00:00
|
|
|
}
|
|
|
|
|
}
|
2016-06-13 00:19:48 -07:00
|
|
|
|
|
|
|
|
if (rtc_include_tests) {
|
2016-09-02 04:10:34 -07:00
|
|
|
rtc_source_set("video_codecs_test_framework") {
|
2016-06-13 00:19:48 -07:00
|
|
|
testonly = true
|
|
|
|
|
sources = [
|
|
|
|
|
"codecs/test/mock/mock_packet_manipulator.h",
|
|
|
|
|
"codecs/test/packet_manipulator.cc",
|
|
|
|
|
"codecs/test/packet_manipulator.h",
|
|
|
|
|
"codecs/test/predictive_packet_manipulator.cc",
|
|
|
|
|
"codecs/test/predictive_packet_manipulator.h",
|
|
|
|
|
"codecs/test/stats.cc",
|
|
|
|
|
"codecs/test/stats.h",
|
|
|
|
|
"codecs/test/videoprocessor.cc",
|
|
|
|
|
"codecs/test/videoprocessor.h",
|
|
|
|
|
]
|
|
|
|
|
|
2016-10-16 23:56:12 -07:00
|
|
|
if (!build_with_chromium && is_clang) {
|
|
|
|
|
# Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
|
2016-09-02 04:10:34 -07:00
|
|
|
suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
|
2016-06-13 00:19:48 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
deps = [
|
2016-12-08 09:56:16 -08:00
|
|
|
":video_coding",
|
|
|
|
|
":video_coding_utility",
|
|
|
|
|
"../..:webrtc_common",
|
|
|
|
|
"../../base:rtc_base_approved",
|
|
|
|
|
"../../common_video:common_video",
|
|
|
|
|
"../../system_wrappers:system_wrappers",
|
2016-06-13 00:19:48 -07:00
|
|
|
"../../test:test_support",
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|