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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
|
/*
* Copyright (C) 2000-2001 the xine project
*
* This file is part of xine, a unix video player.
*
* xine is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* xine is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
* $Id: xine_internal.h,v 1.42 2001/08/28 22:52:57 f1rmb Exp $
*
*/
#ifndef HAVE_XINE_INTERNAL_H
#define HAVE_XINE_INTERNAL_H
#ifdef __cplusplus
extern "C" {
#endif
#include <inttypes.h>
#include "input/input_plugin.h"
#include "demuxers/demux.h"
#include "video_out.h"
#include "audio_out.h"
#include "metronom.h"
#include "spu_decoder.h"
#include "events.h"
#include "libspudec/spu_decoder_api.h"
#define INPUT_PLUGIN_MAX 50
#define DEMUXER_PLUGIN_MAX 50
#define DECODER_PLUGIN_MAX 256
#define DECODER_PLUGIN_IFACE_VERSION 2
#define AUDIO_OUT_PLUGIN_MAX 50
#define VIDEO_OUT_PLUGIN_MAX 50
#define XINE_MAX_EVENT_LISTENERS 50
/*
* generic xine video decoder plugin interface
*
* for a dynamic plugin make sure you provide this function call:
* video_decoder_t *init_video_decoder_plugin (int iface_version,
* config_values_t *cfg);
*/
typedef struct video_decoder_s video_decoder_t;
struct video_decoder_s {
int interface_version;
int (*can_handle) (video_decoder_t *this, int buf_type);
void (*init) (video_decoder_t *this, vo_instance_t *video_out);
void (*decode_data) (video_decoder_t *this, buf_element_t *buf);
void (*close) (video_decoder_t *this);
char* (*get_identifier) (void);
int priority;
metronom_t *metronom;
};
/*
* generic xine audio decoder plugin interface
*
* for a dynamic plugin make sure you provide this function call:
* audio_decoder_t *init_audio_decoder_plugin (int iface_version,
* config_values_t *cfg);
*/
typedef struct audio_decoder_s audio_decoder_t;
struct audio_decoder_s {
int interface_version;
int (*can_handle) (audio_decoder_t *this, int buf_type);
void (*init) (audio_decoder_t *this, ao_instance_t *audio_out);
void (*decode_data) (audio_decoder_t *this, buf_element_t *buf);
void (*close) (audio_decoder_t *this);
char* (*get_identifier) (void);
int priority;
};
/*
* gui callback functions
*
*/
/* called when xine has finished a stream (_not_ if xine was stopped/paused) */
typedef void (*gui_stream_end_cb_t)(int nStatus);
/*
* player status constants:
*/
#define XINE_STOP 0
#define XINE_PLAY 1
#define XINE_QUIT 2
#define XINE_PAUSE 3
typedef struct xine_s xine_t;
typedef void (*event_listener_t) (xine_t *, event_t *, void *);
struct xine_s {
/* private : */
metronom_t *metronom;
config_values_t *config;
input_plugin_t *input_plugins[INPUT_PLUGIN_MAX];
int num_input_plugins;
input_plugin_t *cur_input_plugin;
demux_plugin_t *demuxer_plugins[DEMUXER_PLUGIN_MAX];
int num_demuxer_plugins;
demux_plugin_t *cur_demuxer_plugin;
int demux_strategy;
int status;
int speed;
off_t cur_input_pos;
char cur_mrl[1024];
spu_functions_t *spu_out;
pthread_t spu_thread;
spu_decoder_t *spu_decoder_plugins[DECODER_PLUGIN_MAX];
int num_spu_decoder_plugins;
spu_decoder_t *cur_spu_decoder_plugin;
uint32_t spu_track_map[50];
int spu_track_map_entries;
int spu_finished;
int audio_channel;
int spu_channel;
vo_instance_t *video_out;
fifo_buffer_t *video_fifo;
pthread_t video_thread;
video_decoder_t *video_decoder_plugins[DECODER_PLUGIN_MAX];
video_decoder_t *cur_video_decoder_plugin;
int video_finished;
int paused;
ao_instance_t *audio_out;
fifo_buffer_t *audio_fifo;
pthread_t audio_thread;
audio_decoder_t *audio_decoder_plugins[DECODER_PLUGIN_MAX];
int num_audio_decoder_plugins;
audio_decoder_t *cur_audio_decoder_plugin;
uint32_t audio_track_map[50];
int audio_track_map_entries;
int audio_finished;
int audio_mute;
gui_stream_end_cb_t stream_end_cb;
gui_get_next_mrl_cb_t get_next_mrl_cb;
gui_branched_cb_t branched_cb;
/* Lock for xine player functions */
pthread_mutex_t xine_lock;
/* Array of event handlers. */
event_listener_t event_listeners[XINE_MAX_EVENT_LISTENERS];
uint16_t num_event_listeners;
};
/*
* read config file and init a config object
* (if it exists)
*/
config_values_t *config_file_init (char *filename);
/*
* init xine - call once at startup
*
*/
xine_t *xine_init (vo_driver_t *vo,
ao_driver_t *ao,
config_values_t *config,
gui_stream_end_cb_t stream_end_cb,
gui_get_next_mrl_cb_t get_next_mrl_cb,
gui_branched_cb_t branched_cb);
/*
* open a stream and play it
*
* name : mrl to open
* pos : start position 0..65535
*
*/
void xine_play (xine_t *this, char *MRL, int pos);
/*
* seek the stream to pos, and play it
*
* name : mrl to open
* pos : start position 0..65535
*
*/
void xine_seek (xine_t *this, char *MRL, int pos);
/*
* toggle pause mode
*/
void xine_pause (xine_t *this);
/*
* set/get playback speed
*
* constants see below
*/
void xine_set_speed (xine_t *this, int speed);
int xine_get_speed (xine_t *this);
#define SPEED_PAUSE 0
#define SPEED_SLOW_4 1
#define SPEED_SLOW_2 2
#define SPEED_NORMAL 4
#define SPEED_FAST_2 8
#define SPEED_FAST_4 16
/*
* manually adjust a/v sync
*/
void xine_set_av_offset (xine_t *this, int offset_pts);
int xine_get_av_offset (xine_t *this);
/*
* stop playing
*/
void xine_stop (xine_t *this);
/*
* tell current input plugin to eject media.
*/
int xine_eject(xine_t *this);
/*
* return current status (XINE_PLAY/XINE_STOP...)
*/
int xine_get_status (xine_t *this);
/*
* get current position in stream
* returns position (range : 0 - 65535)
*/
int xine_get_current_position (xine_t *this);
/*
* return the current audio channel
*/
int xine_get_audio_channel (xine_t *this);
/*
* set desired audio channel
*/
void xine_select_audio_channel (xine_t *this, int channel);
/*
* return the current SPU channel
*/
int xine_get_spu_channel (xine_t *this);
/*
* set desired SPU channel
*/
void xine_select_spu_channel (xine_t *this, int channel);
/*
* exit xine
*/
void xine_exit (xine_t *this);
/*
* browsing support
*/
/*
* some input plugins are browseable
* returns a list of ids of these plugins
*/
char **xine_get_browsable_input_plugin_ids (xine_t *this) ;
/*
* browse function
* asks input plugin named <plugin_id> to return
* a list of available MRLs in domain/directory <start_mrl>
*
* start_mrl may be NULL indicating the toplevel domain/dir
* returns start_mrl if start_mrl is a valid MRL, not a directory
* returns NULL if start_mrl is an invalid MRL, not even a directory
*/
mrl_t **xine_get_browse_mrls (xine_t *this, char *plugin_id,
char *start_mrl, int *num_mrls);
/*
* autoplay support
*/
/*
* some input plugins can generate autoplay lists
* returns a list of ids of these plugins
*/
char **xine_get_autoplay_input_plugin_ids (xine_t *this) ;
/*
* get autoplay MRL list for input plugin named <plugin_id>
*/
char **xine_get_autoplay_mrls (xine_t *this, char *plugin_id, int *num_mrls);
/*
* internal use only
*/
void xine_notify_stream_finished (xine_t *this);
/*
* video decoder stuff
*/
/*
* init video decoders, allocate video fifo,
* start video decoder thread
*/
void video_decoder_init (xine_t *this);
/*
* quit video thread
*/
void video_decoder_shutdown (xine_t *this);
/*
* spu decoder stuff
*/
/*
* init audio decoders, allocate audio fifo,
* start audio decoder thread
*/
void audio_decoder_init (xine_t *this);
/*
* quit audio thread
*/
void audio_decoder_shutdown (xine_t *this);
/*
* Load input/demux/audio_out/video_out plugins
*/
/* plugin naming scheme */
#define XINE_INPUT_PLUGIN_PREFIXNAME "xineplug_inp_"
#define XINE_INPUT_PLUGIN_PREFIXNAME_LENGTH 13
#define XINE_DEMUXER_PLUGIN_PREFIXNAME "xineplug_dmx_"
#define XINE_DEMUXER_PLUGIN_PREFIXNAME_LENGTH 13
#define XINE_VIDEO_OUT_PLUGIN_PREFIXNAME "xineplug_vo_out_"
#define XINE_VIDEO_OUT_PLUGIN_PREFIXNAME_LENGTH 16
#define XINE_AUDIO_OUT_PLUGIN_PREFIXNAME "xineplug_ao_out_"
#define XINE_AUDIO_OUT_PLUGIN_PREFIXNAME_LENGTH 16
#define XINE_DECODER_PLUGIN_PREFIXNAME "xineplug_decode_"
#define XINE_DECODER_PLUGIN_PREFIXNAME_LENGTH 16
/*
* load all available demuxer plugins
*/
void load_demux_plugins (xine_t *this,
config_values_t *config, int iface_version);
/*
* load all available input plugins
*/
void load_input_plugins (xine_t *this,
config_values_t *config, int iface_version);
/*
* load all available decoder plugins
*/
void load_decoder_plugins (xine_t *this,
config_values_t *config, int iface_version);
/*
* output driver load support functions
*/
/* video */
#define VISUAL_TYPE_X11 1
#define VISUAL_TYPE_AA 2
#define VISUAL_TYPE_FB 3
#define VISUAL_TYPE_GTK 4
/*
* list_video_output_plugins
*
* returns a list of available video output plugins for
* the specified visual type - the list is sorted by plugin
* priority
*/
char **xine_list_video_output_plugins (int visual_type);
/*
* load_video_output_plugin
*
* load a specific video output plugin
*/
vo_driver_t *xine_load_video_output_plugin(config_values_t *config,
char *id, int visual_type, void *visual);
/*
* audio output plugin dynamic loading stuff
*/
/*
* list_audio_output_plugins
*
* returns a list of available audio output plugins
* the list returned is sorted by plugin priority
*/
char **xine_list_audio_output_plugins ();
/*
* load_audio_output_plugin
*
* load a specific audio output plugin
*/
ao_driver_t *xine_load_audio_output_plugin(config_values_t *config, char *id);
/**
* @defgroup eventgroup Sending events
* Event dispatcher mechanism
* @{
*/
/**
* \fn xine_register_event_listener(xine_t *this, event_listener_t listener)
* \brief registers an event listener callback.
* \return 0 if the listener was registerd, non-zero if it could not.
*/
int xine_register_event_listener(xine_t *this, event_listener_t listener);
/**
* \fn xine_remove_event_listener(event_listener_t listener)
* \brief Attempts to remove a registered event listener.
* \return 0 if the listener was removes, non-zero if it wasn't (e.g. not found).
*/
int xine_remove_event_listener(xine_t *this, event_listener_t listener);
/**
* \fn xine_send_event(event_t *event)
* \brief sends an event to all listeners.
*/
void xine_send_event(xine_t *this, event_t *event, void *data);
/** @} end of eventgroup */
#ifdef __cplusplus
}
#endif
#endif
|