// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CAST_STREAMING_IMPL_RTP_PACKETIZER_H_ #define CAST_STREAMING_IMPL_RTP_PACKETIZER_H_ #include <stdint.h> #include "cast/streaming/impl/frame_crypto.h" #include "cast/streaming/impl/rtp_defines.h" #include "cast/streaming/ssrc.h" #include "platform/base/span.h" namespace openscreen::cast { // Transforms a logical sequence of EncryptedFrames into RTP packets for // transmission. A single instance of RtpPacketizer should be used for all the // frames in a Cast RTP stream having the same SSRC. class RtpPacketizer { … }; } // namespace openscreen::cast #endif // CAST_STREAMING_IMPL_RTP_PACKETIZER_H_