This move further clarifies that the file and its class are deprecated. It also cleans up the modules/video_coding root folder a bit. No functional changes are intended. Bug: webrtc:14876 Change-Id: Ieafdb2640b12c254edfac04e98f86f9170c5a71a Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/295870 Reviewed-by: Philip Eliasson <philipel@webrtc.org> Reviewed-by: Tomas Gunnarsson <tommi@webrtc.org> Commit-Queue: Rasmus Brandt <brandtr@webrtc.org> Cr-Commit-Position: refs/heads/main@{#39483}
63 lines
1.7 KiB
Plaintext
63 lines
1.7 KiB
Plaintext
# Copyright (c) 2023 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")
|
|
|
|
visibility = [
|
|
":*",
|
|
"../:video_coding_legacy",
|
|
"../:video_coding_unittests",
|
|
]
|
|
|
|
rtc_library("deprecated_jitter_buffer_common") {
|
|
sources = [ "jitter_buffer_common.h" ]
|
|
}
|
|
|
|
rtc_library("deprecated_packet") {
|
|
sources = [
|
|
"packet.cc",
|
|
"packet.h",
|
|
]
|
|
deps = [
|
|
"../../../api:rtp_headers",
|
|
"../../../api:rtp_packet_info",
|
|
"../../../api/units:timestamp",
|
|
"../../../api/video:video_frame_type",
|
|
"../../../modules/rtp_rtcp:rtp_rtcp_format",
|
|
"../../../modules/rtp_rtcp:rtp_video_header",
|
|
]
|
|
absl_deps = [ "//third_party/abseil-cpp/absl/types:optional" ]
|
|
}
|
|
|
|
rtc_library("deprecated_session_info") {
|
|
deps = [
|
|
":deprecated_jitter_buffer_common",
|
|
":deprecated_packet",
|
|
"../../../modules:module_api",
|
|
"../../../modules:module_api_public",
|
|
"../../../modules/video_coding:codec_globals_headers",
|
|
"../../../rtc_base:logging",
|
|
]
|
|
sources = [
|
|
"session_info.cc",
|
|
"session_info.h",
|
|
]
|
|
absl_deps = [ "//third_party/abseil-cpp/absl/types:variant" ]
|
|
}
|
|
|
|
rtc_library("deprecated_unittests") {
|
|
testonly = true
|
|
sources = [ "session_info_unittest.cc" ]
|
|
visibility += [ "../../../modules/*" ]
|
|
deps = [
|
|
":deprecated_packet",
|
|
":deprecated_session_info",
|
|
"../../../test:test_support",
|
|
]
|
|
}
|