4080
|
1 #ifndef MPLAYER_VOBSUB_H
|
|
2 #define MPLAYER_VOBSUB_H
|
|
3
|
6110
|
4 extern void *vobsub_open(const char *subname, const char *const ifo, const int force, void** spu);
|
4080
|
5 extern void vobsub_reset(void *vob);
|
6110
|
6 extern int vobsub_parse_ifo(void* this, const char *const name, unsigned int *palette, unsigned int *width, unsigned int *height, int force);
|
|
7 extern int vobsub_get_packet(void *vobhandle, float pts,void** data, int* timestamp);
|
|
8 extern void vobsub_close(void *this);
|
4080
|
9
|
4384
|
10 #endif /* MPLAYER_VOBSUB_H */
|