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

// Copyright 2023 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_STATISTICS_DEFINES_H_
#define CAST_STREAMING_IMPL_STATISTICS_DEFINES_H_

#include <stddef.h>
#include <stdint.h>

#include "cast/streaming/public/constants.h"
#include "cast/streaming/public/frame_id.h"
#include "cast/streaming/rtp_time.h"
#include "platform/api/time.h"

namespace openscreen::cast {

enum class StatisticsEventType : int {};

enum class StatisticsEventMediaType : int {};

StatisticsEventMediaType ToMediaType(StreamType type);

struct StatisticsEvent {};

struct FrameEvent : public StatisticsEvent {};

struct PacketEvent : public StatisticsEvent {};

}  // namespace openscreen::cast

#endif  // CAST_STREAMING_IMPL_STATISTICS_DEFINES_H_