/* * 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_AUDIO_CODING_NETEQ_PACKET_ARRIVAL_HISTORY_H_ #define MODULES_AUDIO_CODING_NETEQ_PACKET_ARRIVAL_HISTORY_H_ #include <cstddef> #include <cstdint> #include <deque> #include <map> #include "api/neteq/tick_timer.h" #include "rtc_base/numerics/sequence_number_unwrapper.h" namespace webrtc { // Stores timing information about previously received packets. // The history has a fixed window size beyond which old data is automatically // pruned. class PacketArrivalHistory { … }; } // namespace webrtc #endif // MODULES_AUDIO_CODING_NETEQ_PACKET_ARRIVAL_HISTORY_H_