blob: cad2c7651e903212ff7fec69f742173909f1ce33 [file]
# Copyright (c) 2022 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("decode_time_percentile_filter") {
sources = [
"decode_time_percentile_filter.cc",
"decode_time_percentile_filter.h",
]
deps = [ "../../../rtc_base:rtc_numerics" ]
}
rtc_library("timing_module") {
sources = [
"timing.cc",
"timing.h",
]
deps = [
":decode_time_percentile_filter",
"../../../api:field_trials_view",
"../../../api:sequence_checker",
"../../../api/units:time_delta",
"../../../api/units:timestamp",
"../../../api/video:video_frame",
"../../../api/video:video_rtp_headers",
"../../../api/video/timing:video_jitter_timing_interface",
"../../../rtc_base:checks",
"../../../rtc_base:logging",
"../../../rtc_base:macromagic",
"../../../rtc_base/synchronization:mutex",
"../../../rtc_base/system:no_unique_address",
"../../../system_wrappers",
"../../../video/timing:default_video_jitter_timing",
]
}
rtc_library("timing_unittests") {
testonly = true
sources = [
"decode_time_percentile_filter_unittest.cc",
"timing_unittest.cc",
]
deps = [
":decode_time_percentile_filter",
":timing_module",
"../../../api:field_trials",
"../../../api/environment",
"../../../api/units:data_size",
"../../../api/units:frequency",
"../../../api/units:time_delta",
"../../../api/units:timestamp",
"../../../api/video/timing:video_jitter_timing_interface",
"../../../rtc_base:histogram_percentile_counter",
"../../../system_wrappers",
"../../../system_wrappers:metrics",
"../../../test:create_test_environment",
"../../../test:create_test_field_trials",
"../../../test:test_support",
]
}