chromium/third_party/openscreen/src/cast/streaming/impl/rtcp_session.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_RTCP_SESSION_H_
#define CAST_STREAMING_IMPL_RTCP_SESSION_H_

#include "cast/streaming/impl/ntp_time.h"
#include "cast/streaming/ssrc.h"

namespace openscreen::cast {

// Session-level configuration and shared components for the RTCP messaging
// associated with a single Cast RTP stream. Multiple packet serialization and
// parsing components share a single RtcpSession instance for data consistency.
class RtcpSession {};

}  // namespace openscreen::cast

#endif  // CAST_STREAMING_IMPL_RTCP_SESSION_H_