2002-01-10 17:20:27 +00:00
|
|
|
#ifndef MPLAYER_VOBSUB_H
|
|
|
|
#define MPLAYER_VOBSUB_H
|
|
|
|
|
2002-05-17 23:47:27 +00:00
|
|
|
extern void *vobsub_open(const char *subname, const char *const ifo, const int force, void** spu);
|
2002-01-10 17:20:27 +00:00
|
|
|
extern void vobsub_reset(void *vob);
|
2002-07-08 21:44:51 +00:00
|
|
|
extern int vobsub_parse_ifo(void* this, const char *const name, unsigned int *palette, unsigned int *width, unsigned int *height, int force, int sid, char *langid);
|
2002-05-17 23:47:27 +00:00
|
|
|
extern int vobsub_get_packet(void *vobhandle, float pts,void** data, int* timestamp);
|
2002-07-28 16:28:30 +00:00
|
|
|
extern int vobsub_get_next_packet(void *vobhandle, void** data, int* timestamp);
|
2002-05-17 23:47:27 +00:00
|
|
|
extern void vobsub_close(void *this);
|
2002-01-10 17:20:27 +00:00
|
|
|
|
2002-07-08 21:44:51 +00:00
|
|
|
extern void *vobsub_out_open(const char *basename, const unsigned int *palette, unsigned int orig_width, unsigned int orig_height, const char *id, unsigned int index);
|
|
|
|
extern void vobsub_out_output(void *me, const unsigned char *packet, int len, double pts);
|
|
|
|
extern void vobsub_out_close(void *me);
|
|
|
|
|
2002-01-27 17:21:20 +00:00
|
|
|
#endif /* MPLAYER_VOBSUB_H */
|
2002-07-08 21:44:51 +00:00
|
|
|
|