mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-16 15:20:42 +01:00

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: Ib11fe46f35ab0efba35c6a9a2482b4f7c016226c Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/295821 Commit-Queue: Rasmus Brandt <brandtr@webrtc.org> Reviewed-by: Philip Eliasson <philipel@webrtc.org> Cr-Commit-Position: refs/heads/main@{#39451}
29 lines
925 B
Text
29 lines
925 B
Text
# 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")
|
|
|
|
rtc_library("deprecated_packet") {
|
|
visibility = [
|
|
"../:video_coding_legacy",
|
|
"../:video_coding_unittests",
|
|
]
|
|
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" ]
|
|
}
|