// 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_FRAME_COLLECTOR_H_ #define CAST_STREAMING_IMPL_FRAME_COLLECTOR_H_ #include <vector> #include "cast/streaming/impl/frame_crypto.h" #include "cast/streaming/public/frame_id.h" #include "cast/streaming/impl/rtcp_common.h" #include "cast/streaming/impl/rtp_packet_parser.h" #include "platform/base/span.h" namespace openscreen::cast { // Used by a Receiver to collect the parts of a frame, track what is // missing/complete, and assemble a complete frame. class FrameCollector { … }; } // namespace openscreen::cast #endif // CAST_STREAMING_IMPL_FRAME_COLLECTOR_H_