blob: 21188f2818ef5282e5dc93c4dee7469d79cb3cbc (
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
44
45
46
47
48
49
|
/*
* xvdr_metronom.h:
*
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
* $Id: xvdr_metronom.h,v 1.1 2009-05-22 21:02:30 phintuka Exp $
*
*/
#ifndef XVDR_METRONOM_H
#define XVDR_METRONOM_H
typedef struct xvdr_metronom_s xvdr_metronom_t;
struct xvdr_metronom_s {
/* xine-lib metronom interface */
metronom_t metronom;
/* management interface */
void (*set_cb) (xvdr_metronom_t *,
void (*cb) (void *, uint, uint),
void *);
void (*reset_frames)(xvdr_metronom_t *);
void (*dispose) (xvdr_metronom_t *);
/* accumulated frame data */
volatile uint video_frames;
volatile uint audio_frames;
/* private data */
#ifdef XVDR_METRONOM_COMPILE
/* original metronom */
metronom_t *orig_metronom;
xine_stream_t *stream;
/* callback */
void *handle;
void (*frame_decoded)(void *handle, uint video_count, uint audio_count);
#endif
};
xvdr_metronom_t *xvdr_metronom_init(xine_stream_t *);
#endif /* XVDR_METRONOM_H */
|