/** * Copyright (c) 2026 Paul-Louis Ageneau * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ #ifndef RTC_VP8_RTP_PACKETIZER_H #define RTC_VP8_RTP_PACKETIZER_H #if RTC_ENABLE_MEDIA #include "rtppacketizer.hpp" namespace rtc { /// RTP packetization for VP8 class RTC_CPP_EXPORT VP8RtpPacketizer final : public RtpPacketizer { public: inline static const uint32_t ClockRate = VideoClockRate; [[deprecated("Use ClockRate")]] inline static const uint32_t defaultClockRate = ClockRate; /// Constructs VP8 payload packetizer with given RTP configuration. /// @note RTP configuration is used in packetization process which may change some configuration /// properties such as sequence number. /// @param rtpConfig RTP configuration /// @param maxFragmentSize maximum size of one packet payload VP8RtpPacketizer(shared_ptr rtpConfig, size_t maxFragmentSize = DefaultMaxFragmentSize); private: std::vector fragment(binary data) override; const size_t mMaxFragmentSize; }; } // namespace rtc #endif /* RTC_ENABLE_MEDIA */ #endif /* RTC_VP8_RTP_PACKETIZER_H */