chromium/third_party/openscreen/src/cast/streaming/impl/session_config.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_SESSION_CONFIG_H_
#define CAST_STREAMING_IMPL_SESSION_CONFIG_H_

#include <array>
#include <chrono>
#include <cstdint>

#include "cast/streaming/public/constants.h"
#include "cast/streaming/ssrc.h"

namespace openscreen::cast {

// Common streaming configuration, established from the OFFER/ANSWER exchange,
// that the Sender and Receiver are both assuming.
struct SessionConfig final {};

}  // namespace openscreen::cast

#endif  // CAST_STREAMING_IMPL_SESSION_CONFIG_H_