mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-19 20:12:01 +00:00
27 lines
762 B
C++
27 lines
762 B
C++
// DR. ROBOTNIK'S RING RACERS
|
|
//-----------------------------------------------------------------------------
|
|
// Copyright (C) 2025 by James Robert Roman
|
|
// Copyright (C) 2025 by Kart Krew
|
|
//
|
|
// This program is free software distributed under the
|
|
// terms of the GNU General Public License, version 2.
|
|
// See the 'LICENSE' file for more details.
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef __SRB2_MEDIA_WEBM_HPP__
|
|
#define __SRB2_MEDIA_WEBM_HPP__
|
|
|
|
#include <chrono>
|
|
#include <cstdint>
|
|
#include <ratio>
|
|
|
|
namespace srb2::media::webm
|
|
{
|
|
|
|
using track = uint64_t;
|
|
using timestamp = uint64_t;
|
|
using duration = std::chrono::duration<timestamp, std::nano>;
|
|
|
|
}; // namespace srb2::media::webm
|
|
|
|
#endif // __SRB2_MEDIA_WEBM_HPP__
|