Emil Vardar ba0d9713ba Prevent missing corruption header because of floating point errors.
Sometimes the blurred value gets to be a little above 255 because of
floating point errors. This prevents the header from being sent, losing
1 second of information. This can easily be prevented with the changes
in this CL.

Bug: webrtc:358039777
Change-Id: Ibad1c8f41272260e28fe58557c623e52a6af8294
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/376740
Reviewed-by: Björn Terelius <terelius@webrtc.org>
Reviewed-by: Erik Språng <sprang@webrtc.org>
Commit-Queue: Emil Vardar (xWF) <vardar@google.com>
Cr-Commit-Position: refs/heads/main@{#43906}
2025-02-17 10:21:11 -08:00

239 lines
6.2 KiB
Plaintext

# Copyright 2024 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("corruption_classifier") {
sources = [
"corruption_classifier.cc",
"corruption_classifier.h",
]
deps = [
":halton_frame_sampler",
"../../api:array_view",
"../../rtc_base:checks",
"../../rtc_base:logging",
]
}
rtc_library("frame_instrumentation_evaluation") {
sources = [
"frame_instrumentation_evaluation.cc",
"frame_instrumentation_evaluation.h",
]
deps = [
":corruption_classifier",
":halton_frame_sampler",
"../../api:array_view",
"../../api:scoped_refptr",
"../../api/video:video_frame",
"../../common_video:frame_instrumentation_data",
"../../rtc_base:checks",
"../../rtc_base:logging",
]
}
rtc_library("frame_instrumentation_generator") {
sources = [
"frame_instrumentation_generator.cc",
"frame_instrumentation_generator.h",
]
deps = [
":generic_mapping_functions",
":halton_frame_sampler",
"../../api:scoped_refptr",
"../../api/video:corruption_detection_filter_settings",
"../../api/video:encoded_image",
"../../api/video:video_frame",
"../../api/video:video_frame_type",
"../../api/video_codecs:video_codecs_api",
"../../common_video:frame_instrumentation_data",
"../../modules:module_api_public",
"../../modules/video_coding:video_coding_utility",
"../../rtc_base:checks",
"../../rtc_base:logging",
"//third_party/abseil-cpp/absl/algorithm:container",
"//third_party/abseil-cpp/absl/types:variant",
]
}
rtc_library("frame_pair_corruption_score") {
sources = [
"frame_pair_corruption_score.cc",
"frame_pair_corruption_score.h",
]
deps = [
":corruption_classifier",
":generic_mapping_functions",
":halton_frame_sampler",
":utils",
"../../api:scoped_refptr",
"../../api/video:video_frame",
"../../rtc_base:checks",
"//third_party/abseil-cpp/absl/strings:string_view",
]
}
rtc_library("generic_mapping_functions") {
sources = [
"generic_mapping_functions.cc",
"generic_mapping_functions.h",
]
deps = [
"../../api/video:corruption_detection_filter_settings",
"../../api/video:video_frame",
"../../api/video_codecs:video_codecs_api",
"../../rtc_base:checks",
]
}
rtc_library("halton_frame_sampler") {
sources = [
"halton_frame_sampler.cc",
"halton_frame_sampler.h",
]
deps = [
":halton_sequence",
"../../api:scoped_refptr",
"../../api/video:video_frame",
"../../rtc_base:checks",
"../../rtc_base:logging",
"../../rtc_base:safe_minmax",
]
}
rtc_library("halton_sequence") {
sources = [
"halton_sequence.cc",
"halton_sequence.h",
]
deps = [ "../../rtc_base:checks" ]
}
rtc_library("utils") {
sources = [
"utils.cc",
"utils.h",
]
deps = [
"../../api:scoped_refptr",
"../../api/video:video_frame",
"//third_party/abseil-cpp/absl/strings:string_view",
"//third_party/abseil-cpp/absl/strings:strings",
]
}
if (rtc_include_tests) {
rtc_library("corruption_classifier_unittest") {
testonly = true
sources = [ "corruption_classifier_unittest.cc" ]
deps = [
":corruption_classifier",
":halton_frame_sampler",
"../../test:test_support",
]
}
rtc_library("frame_instrumentation_evaluation_unittest") {
testonly = true
sources = [ "frame_instrumentation_evaluation_unittest.cc" ]
deps = [
":frame_instrumentation_evaluation",
"../../api:scoped_refptr",
"../../api/video:video_frame",
"../../common_video:frame_instrumentation_data",
"../../test:test_support",
]
}
rtc_library("frame_instrumentation_generator_unittest") {
testonly = true
sources = [ "frame_instrumentation_generator_unittest.cc" ]
deps = [
":frame_instrumentation_generator",
"../../api:scoped_refptr",
"../../api/video:encoded_image",
"../../api/video:video_frame",
"../../api/video:video_frame_type",
"../../common_video:frame_instrumentation_data",
"../../test:test_support",
"//third_party/abseil-cpp/absl/types:variant",
]
}
rtc_library("frame_pair_corruption_score_unittest") {
testonly = true
sources = [ "frame_pair_corruption_score_unittest.cc" ]
deps = [
":frame_pair_corruption_score",
"../../api:scoped_refptr",
"../../api/video:video_frame",
"../../test:fileutils",
"../../test:test_support",
"../../test:video_test_support",
"//third_party/abseil-cpp/absl/strings:string_view",
]
data = [ "../../resources/ConferenceMotion_1280_720_50.yuv" ]
}
rtc_library("generic_mapping_functions_unittest") {
testonly = true
sources = [ "generic_mapping_functions_unittest.cc" ]
deps = [
":generic_mapping_functions",
"../../api/video:video_frame",
"../../test:test_support",
]
}
rtc_library("halton_frame_sampler_unittest") {
testonly = true
sources = [ "halton_frame_sampler_unittest.cc" ]
deps = [
":halton_frame_sampler",
"../../api:scoped_refptr",
"../../api/video:video_frame",
"../../test:test_support",
]
}
rtc_library("halton_sequence_unittest") {
testonly = true
sources = [ "halton_sequence_unittest.cc" ]
deps = [
":halton_sequence",
"../../test:test_support",
]
}
rtc_library("utils_unittest") {
testonly = true
sources = [ "utils_unittest.cc" ]
deps = [
":utils",
"../../api/video:video_frame",
"../../test:test_support",
]
}
rtc_library("corruption_detection_tests") {
testonly = true
sources = []
deps = [
":corruption_classifier_unittest",
":frame_instrumentation_evaluation_unittest",
":frame_instrumentation_generator_unittest",
":frame_pair_corruption_score_unittest",
":generic_mapping_functions_unittest",
":halton_frame_sampler_unittest",
":halton_sequence_unittest",
":utils_unittest",
]
}
}