repo.or.cz
/
ilaris-y4m-tools.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix integer overflow in ft_rendered_size_line
[ilaris-y4m-tools.git]
/
marker.hpp
blob
3c0e778be7aa946f4777b943fa30b82c61094f2e
1
#ifndef _marker_hpp_included_
2
#define _marker_hpp_included_
3
4
#include <string>
5
#include <cstdint>
6
7
class
timemarker
8
{
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
;
17
};
18
19
#endif