blob: fafc7199b45cf756f428f3b0c85e38136ff7eda5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/*
* time_pts.h: Adjustable clock in PTS units
*
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
* $Id: time_pts.h,v 1.4 2008-04-28 20:48:05 phintuka Exp $
*
*/
#ifndef __TIME_PTS_H
#define __TIME_PTS_H
#include <stdint.h> // int64_t
#include <sys/time.h> // struct timeval
class cTimePts
{
private:
int64_t begin; /* Start time (PTS) */
struct timeval tbegin; /* Start time (real time) */
bool m_Paused;
int m_Multiplier;
int m_ScrSpeed;
static int m_Monotonic;
static void Init(void);
public:
cTimePts(void);
int64_t Now(void) const;
void Set(int64_t Pts = 0LL);
void Pause(void);
void Resume(void);
void TrickSpeed(const int Multiplier);
void SetScrSpeed(const int ScrSpeed = 90000);
};
#endif // __TIME_PTS_H
|