cleanup: Silence compilation warnings on MinGW-w64
[mplayer.git] / sub / dec_sub.h
blobd6fbef25f0461382b6289cab2f4911e8683db113
1 struct sh_sub;
2 struct osd_state;
4 static inline bool is_text_sub(int type)
6 return type == 't' || type == 'm' || type == 'a';
9 void sub_decode(struct sh_sub *sh, struct osd_state *osd, void *data,
10 int data_len, double pts, double duration);
11 void sub_init(struct sh_sub *sh, struct osd_state *osd);
12 void sub_reset(struct sh_sub *sh, struct osd_state *osd);
13 void sub_switchoff(struct sh_sub *sh, struct osd_state *osd);
14 void sub_uninit(struct sh_sub *sh);