mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-03-09 20:56:43 +00:00
26 lines
712 B
C++
26 lines
712 B
C++
// RING RACERS
|
|
//-----------------------------------------------------------------------------
|
|
// Copyright (C) 2023 by James Robert Roman
|
|
//
|
|
// 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__
|