mirror of
https://github.com/mpv-player/mpv
synced 2024-12-12 09:56:30 +00:00
7562937d95
Removed the integreted spudec in vobsub. Various cleanup/bugfix in vobsub (no more auto palette when a true one is here) HW spu rendering moved in spudec because we first need to reassable the packet before sending them to the hw. Spudec is now created only if nedded. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6111 b3059339-0415-0410-9bf9-f77b7e298cf2
11 lines
484 B
C
11 lines
484 B
C
#ifndef MPLAYER_VOBSUB_H
|
|
#define MPLAYER_VOBSUB_H
|
|
|
|
extern void *vobsub_open(const char *subname, const char *const ifo, const int force, void** spu);
|
|
extern void vobsub_reset(void *vob);
|
|
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);
|
|
|
|
#endif /* MPLAYER_VOBSUB_H */
|