/* * Copyright (c) 2021 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_RTP_RTCP_SOURCE_PACKET_SEQUENCER_H_ #define MODULES_RTP_RTCP_SOURCE_PACKET_SEQUENCER_H_ #include "modules/rtp_rtcp/include/rtp_rtcp_defines.h" #include "modules/rtp_rtcp/source/rtp_packet_to_send.h" #include "system_wrappers/include/clock.h" namespace webrtc { // Helper class used to assign RTP sequence numbers and populate some fields for // padding packets based on the last sequenced packets. // This class is not thread safe, the caller must provide that. class PacketSequencer { … }; } // namespace webrtc #endif // MODULES_RTP_RTCP_SOURCE_PACKET_SEQUENCER_H_