Fix integer overflow in ft_rendered_size_line
[ilaris-y4m-tools.git] / marker.hpp
blob3c0e778be7aa946f4777b943fa30b82c61094f2e
1 #ifndef _marker_hpp_included_
2 #define _marker_hpp_included_
4 #include <string>
5 #include <cstdint>
7 class timemarker
9 public:
10 timemarker();
11 timemarker(const std::string& tspec);
12 uint64_t get_frame(double fps, uint64_t dflt) const;
13 private:
14 int mode;
15 double timepos;
16 uint64_t frame;
19 #endif