/* * 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. */ #ifndef MODULES_PACING_PRIORITIZED_PACKET_QUEUE_H_ #define MODULES_PACING_PRIORITIZED_PACKET_QUEUE_H_ #include <stddef.h> #include <array> #include <deque> #include <list> #include <memory> #include <unordered_map> #include "absl/container/inlined_vector.h" #include "api/units/data_size.h" #include "api/units/time_delta.h" #include "api/units/timestamp.h" #include "modules/rtp_rtcp/source/rtp_packet_to_send.h" namespace webrtc { // Describes how long time a packet may stay in the queue before being dropped. struct PacketQueueTTL { … }; class PrioritizedPacketQueue { … }; } // namespace webrtc #endif // MODULES_PACING_PRIORITIZED_PACKET_QUEUE_H_