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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
/*
* xine_frontend.h:
*
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
* $Id: xine_frontend.h,v 1.4 2006-08-16 21:46:34 phintuka Exp $
*
*/
#ifndef _XINE_FRONTEND_H
#define _XINE_FRONTEND_H
#ifdef __cplusplus
extern "C" {
#endif
#define FE_VERSION_STR "0.9.9"
#define FE_VERSION 0x99 /*(((0)<<16) | ((9)<<8) | ((9)))*/
typedef void (*fe_keypress_f)(const char *keymap, const char *name);
typedef struct frontend_config_s frontend_config_t;
typedef struct frontend_s frontend_t;
#if 0
struct frontend_config_s {
/* Display */
int width;
int height;
int fullscreen;
int modeswitch;
char *modeline;
int aspect;
char *video_port;
int scale_video;
int field_order;
fe_keypress_f keypresshandler;
/* Xine engine */
char *audio_driver;
char *audio_port;
char *video_driver;
int pes_buffers;
int priority;
};
#endif
struct frontend_s {
/* Display */
int (*fe_display_open)(frontend_t*, int winwidth, int winheight,
int fullscreen, int modeswitch, const char *modeline,
int aspect, fe_keypress_f keypresshandler,
const char *video_port,
int scale_video, int field_order);
int (*fe_display_config)(frontend_t *, int width, int height,
int fullscreen,
int modeswitch, const char *modeline,
int aspect, int scale_video, int field_order);
void (*fe_display_close)(frontend_t*);
/* Xine engine */
int (*xine_init)(frontend_t*,
const char *audio_driver,
const char *audio_port,
const char *video_driver,
int pes_buffers, int priority,
const char *static_post);
int (*xine_open)(frontend_t*, const char *mrl);
int (*xine_play)(frontend_t*);
int (*xine_stop)(frontend_t*);
void (*xine_close)(frontend_t*);
void (*xine_exit)(frontend_t*);
/* Execution control */
int (*fe_run)(frontend_t*);
void (*fe_interrupt)(frontend_t*);
void (*fe_free)(frontend_t*);
/* Data transfer */
int (*xine_is_finished)(frontend_t*, int slave_stream);
int (*xine_osd_command)(frontend_t*, struct osd_command_s *cmd);
int (*xine_control)(frontend_t*, const char *cmd);
int (*xine_queue_pes_packet)(frontend_t*, const char *data, int len);
char *(*grab)(frontend_t*, int *size, int jpeg, int quality,
int width, int height);
#if 0
frontend_config_t config;
#endif
};
typedef frontend_t *(*fe_creator_f)(void);
#ifdef __cplusplus
} /* extern "C" { */
#endif
#endif /* _XINE_FRONTEND_H */
|