Mercurial > mplayer.hg
annotate spudec.h @ 4142:5e8231233418
S->C
author | nick |
---|---|
date | Sun, 13 Jan 2002 18:26:58 +0000 |
parents | 62f672249df1 |
children | a303ae797429 |
rev | line source |
---|---|
560 | 1 #ifndef _MPLAYER_SPUDEC_H |
2 #define _MPLAYER_SPUDEC_H | |
3 | |
4077
62f672249df1
Add spudec_new_scaled and spudec_draw_scaled for vobsub support.
kmkaplan
parents:
3744
diff
changeset
|
4 void spudec_heartbeat(void *this, unsigned int pts100); |
62f672249df1
Add spudec_new_scaled and spudec_draw_scaled for vobsub support.
kmkaplan
parents:
3744
diff
changeset
|
5 void spudec_assemble(void *this, unsigned char *packet, unsigned int len, unsigned int pts100); |
3034
24d3dca4e813
DVD sub patch by Kim Minh Kaplan <kmkaplan@selfoffice.com>
arpi
parents:
561
diff
changeset
|
6 void spudec_draw(void *this, void (*draw_alpha)(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride)); |
4077
62f672249df1
Add spudec_new_scaled and spudec_draw_scaled for vobsub support.
kmkaplan
parents:
3744
diff
changeset
|
7 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)); |
62f672249df1
Add spudec_new_scaled and spudec_draw_scaled for vobsub support.
kmkaplan
parents:
3744
diff
changeset
|
8 void *spudec_new_scaled(unsigned int *palette, unsigned int frame_width, unsigned int frame_height); |
62f672249df1
Add spudec_new_scaled and spudec_draw_scaled for vobsub support.
kmkaplan
parents:
3744
diff
changeset
|
9 void *spudec_new(unsigned int *palette); |
3034
24d3dca4e813
DVD sub patch by Kim Minh Kaplan <kmkaplan@selfoffice.com>
arpi
parents:
561
diff
changeset
|
10 void spudec_free(void *this); |
3744 | 11 void spudec_reset(void *this); // called after seek |
560 | 12 |
13 #endif | |
3183 | 14 |