1 #ifndef MPLAYER_SPUDEC_H
2 #define MPLAYER_SPUDEC_H
4 #include "libvo/video_out.h"
6 void spudec_heartbeat(void *this, unsigned int pts100
);
7 void spudec_assemble(void *this, unsigned char *packet
, unsigned int len
, int pts100
);
8 void spudec_draw(void *this, void (*draw_alpha
)(int x0
,int y0
, int w
,int h
, unsigned char* src
, unsigned char *srca
, int stride
));
9 void spudec_draw_scaled(void *this, unsigned int dxs
, unsigned int dys
, void (*draw_alpha
)(int x0
,int y0
, int w
,int h
, unsigned char* src
, unsigned char *srca
, int stride
));
10 void spudec_update_palette(void *this, unsigned int *palette
);
11 void *spudec_new_scaled(unsigned int *palette
, unsigned int frame_width
, unsigned int frame_height
, uint8_t *extradata
, int extradata_len
);
12 void *spudec_new(unsigned int *palette
);
13 void spudec_free(void *this);
14 void spudec_reset(void *this); // called after seek
15 int spudec_visible(void *this); // check if spu is visible
16 void spudec_set_font_factor(void * this, double factor
); // sets the equivalent to ffactor
17 void spudec_set_hw_spu(void *this, const vo_functions_t
*hw_spu
);
18 int spudec_changed(void *this);
19 void spudec_calc_bbox(void *me
, unsigned int dxs
, unsigned int dys
, unsigned int* bbox
);
20 void spudec_set_forced_subs_only(void * const this, const unsigned int flag
);
22 #endif /* MPLAYER_SPUDEC_H */