#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 { … };
}
#endif