mirror of
https://github.com/mpv-player/mpv
synced 2024-11-11 00:15:33 +01:00
4d38521e2c
-ifo <ifo file> Indicate the file that will be used to load palette and frame size for MPEG subtitles. * mencoder.c: Fix cropping when decoding MPEG2. * spudec.c: If scaling is needed only do it once. Change WITH_NO_ANTIALIASING to ANTIALIASING_ALGORITHM. * vobsub.c: Support reading info regarding size and palette from IDX file instead of IFO file. Support streams containing audio or video. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5389 b3059339-0415-0410-9bf9-f77b7e298cf2
11 lines
518 B
C
11 lines
518 B
C
#ifndef MPLAYER_VOBSUB_H
|
|
#define MPLAYER_VOBSUB_H
|
|
|
|
extern void *vobsub_open(const char *subname, const int force);
|
|
extern void vobsub_process(void *vob, float pts);
|
|
extern void vobsub_reset(void *vob);
|
|
extern void vobsub_draw(void *vob, int dxs, int dys, void (*draw_alpha)(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride));
|
|
extern int vobsub_parse_ifo(const char *const name, unsigned int *palette, unsigned int *width, unsigned int *height, int force);
|
|
|
|
#endif /* MPLAYER_VOBSUB_H */
|