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-05-17 23:47:27 +00:00
|
|
|
extern int vobsub_parse_ifo(void* this, const char *const name, unsigned int *palette, unsigned int *width, unsigned int *height, int force);
|
|
|
|
extern int vobsub_get_packet(void *vobhandle, float pts,void** data, int* timestamp);
|
|
|
|
extern void vobsub_close(void *this);
|
2002-01-10 17:20:27 +00:00
|
|
|
|
2002-01-27 17:21:20 +00:00
|
|
|
#endif /* MPLAYER_VOBSUB_H */
|