summaryrefslogtreecommitdiffstats
path: root/sub/sd.h
blob: b286d3691b1e78415f9ae60df9103039e37cabd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef MPLAYER_SD_H
#define MPLAYER_SD_H

struct osd_state;
struct sub_render_params;
struct sh_sub;
struct sub_bitmaps;

struct sd_functions {
    int  (*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 (*get_bitmaps)(struct sh_sub *sh, struct osd_state *osd,
                        struct sub_render_params *params,
                        struct sub_bitmaps *res);
    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