mirror of https://github.com/mpv-player/mpv
17 lines
472 B
C
17 lines
472 B
C
|
#ifndef MPLAYER_SD_H
|
||
|
#define MPLAYER_SD_H
|
||
|
|
||
|
struct osd_state;
|
||
|
struct sh_sub;
|
||
|
|
||
|
struct sd_functions {
|
||
|
void (*init)(struct sh_sub *sh, struct osd_state *osd);
|
||
|
void (*decode)(struct sh_sub *sh, struct osd_state *osd,
|
||
|
void *data, int data_len, double pts, double duration);
|
||
|
void (*reset)(struct sh_sub *sh, struct osd_state *osd);
|
||
|
void (*switch_off)(struct sh_sub *sh, struct osd_state *osd);
|
||
|
void (*uninit)(struct sh_sub *sh);
|
||
|
};
|
||
|
|
||
|
#endif
|