// 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 #include #include namespace srb2::media::webm { using track = uint64_t; using timestamp = uint64_t; using duration = std::chrono::duration; }; // namespace srb2::media::webm #endif // __SRB2_MEDIA_WEBM_HPP__