RingRacers/src/media/webm.hpp
2023-02-24 19:21:00 -08:00

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__