chromium/third_party/openscreen/src/cast/streaming/impl/compound_rtcp_parser.h

// 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_COMPOUND_RTCP_PARSER_H_
#define CAST_STREAMING_IMPL_COMPOUND_RTCP_PARSER_H_

#include <chrono>
#include <optional>
#include <vector>

#include "cast/streaming/public/frame_id.h"
#include "cast/streaming/impl/rtcp_common.h"
#include "cast/streaming/impl/rtp_defines.h"
#include "platform/base/span.h"

namespace openscreen::cast {

class RtcpSession;

// Parses compound RTCP packets from a Receiver, invoking client callbacks when
// information of interest to a Sender (in the current process) is encountered.
class CompoundRtcpParser {};

}  // namespace openscreen::cast

#endif  // CAST_STREAMING_IMPL_COMPOUND_RTCP_PARSER_H_