RingRacers/src/media/webm.hpp
2025-02-13 15:32:26 -06:00

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__