2001-04-21 15:38:01 +00:00
|
|
|
#ifndef _MPLAYER_SPUDEC_H
|
|
|
|
#define _MPLAYER_SPUDEC_H
|
|
|
|
|
2003-02-28 19:21:45 +00:00
|
|
|
#include "libvo/video_out.h"
|
|
|
|
|
2002-01-10 17:17:05 +00:00
|
|
|
void spudec_heartbeat(void *this, unsigned int pts100);
|
|
|
|
void spudec_assemble(void *this, unsigned char *packet, unsigned int len, unsigned int pts100);
|
2001-11-20 18:36:50 +00:00
|
|
|
void spudec_draw(void *this, void (*draw_alpha)(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride));
|
2002-01-10 17:17:05 +00:00
|
|
|
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));
|
2002-04-03 18:14:21 +00:00
|
|
|
void spudec_update_palette(void *this, unsigned int *palette);
|
2002-01-10 17:17:05 +00:00
|
|
|
void *spudec_new_scaled(unsigned int *palette, unsigned int frame_width, unsigned int frame_height);
|
2002-05-17 23:47:27 +00:00
|
|
|
void *spudec_new_scaled_vobsub(unsigned int *palette, unsigned int *cuspal, unsigned int custom, unsigned int frame_width, unsigned int frame_height);
|
2002-01-10 17:17:05 +00:00
|
|
|
void *spudec_new(unsigned int *palette);
|
2001-11-20 18:36:50 +00:00
|
|
|
void spudec_free(void *this);
|
2001-12-25 20:32:02 +00:00
|
|
|
void spudec_reset(void *this); // called after seek
|
2002-04-15 19:17:12 +00:00
|
|
|
int spudec_visible(void *this); // check if spu is visible
|
2002-05-17 23:47:27 +00:00
|
|
|
void spudec_set_font_factor(void * this, double factor); // sets the equivalent to ffactor
|
|
|
|
void spudec_set_hw_spu(void *this, vo_functions_t *hw_spu);
|
2002-07-24 16:47:29 +00:00
|
|
|
int spudec_changed(void *this);
|
2002-08-14 21:28:18 +00:00
|
|
|
void spudec_calc_bbox(void *me, unsigned int dxs, unsigned int dys, unsigned int* bbox);
|
|
|
|
void spudec_draw_scaled(void *me, 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));
|
2003-09-21 14:21:43 +00:00
|
|
|
void spudec_set_forced_subs_only(void * const this, const unsigned int flag);
|
2001-04-21 15:38:01 +00:00
|
|
|
#endif
|
2001-11-28 14:55:56 +00:00
|
|
|
|