blob: bbd191713bc23abf9429596b7bf90d1cdff724b8 (
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
|
/*
* adjustable_scr.h:
*
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
* $Id: adjustable_scr.h,v 1.3 2012-03-22 12:03:37 phintuka Exp $
*
*/
#ifndef XINELIBOUTPUT_ADJUSTABLE_SCR_H_
#define XINELIBOUTPUT_ADJUSTABLE_SCR_H_
/******************************* SCR *************************************
*
* unix System Clock Reference + fine tuning
*
* fine tuning is used to change playback speed in live mode
* to keep in sync with mpeg source
*************************************************************************/
typedef struct adjustable_scr_s adjustable_scr_t;
struct adjustable_scr_s {
scr_plugin_t scr;
void (*set_speed_tuning)(adjustable_scr_t *this, double factor);
void (*set_speed_base) (adjustable_scr_t *this, int hz);
void (*jump) (adjustable_scr_t *this, int pts);
void (*set_buffering) (adjustable_scr_t *this, int on);
void (*got_pcr) (adjustable_scr_t *this, int64_t pcr);
void (*dispose) (adjustable_scr_t *this);
};
adjustable_scr_t *adjustable_scr_start (xine_t *xine);
#endif /* XINELIBOUTPUT_ADJUSTABLE_SCR_H_ */
|