chromium/third_party/openscreen/src/cast/streaming/public/encoded_frame.h

// Copyright 2014 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_PUBLIC_ENCODED_FRAME_H_
#define CAST_STREAMING_PUBLIC_ENCODED_FRAME_H_

#include <stdint.h>

#include <chrono>
#include <vector>

#include "cast/streaming/public/frame_id.h"
#include "cast/streaming/rtp_time.h"
#include "platform/api/time.h"
#include "platform/base/macros.h"
#include "platform/base/span.h"

namespace openscreen::cast {

// A combination of metadata and data for one encoded frame.  This can contain
// audio data or video data or other.
struct EncodedFrame {};

}  // namespace openscreen::cast

#endif  // CAST_STREAMING_PUBLIC_ENCODED_FRAME_H_