Mercurial > mplayer.hg
annotate spudec.h @ 3205:1d2b2885bb8c
Minor fixes
author | nick |
---|---|
date | Thu, 29 Nov 2001 18:37:52 +0000 |
parents | ce9acee4e129 |
children | d358f4a74690 |
rev | line source |
---|---|
3183 | 1 #include "config.h" |
3180
d53f70e3c794
spudec_new has a dvd_priv_t as an argument, which is defined in
pl
parents:
3166
diff
changeset
|
2 #ifdef USE_DVDREAD |
560 | 3 #ifndef _MPLAYER_SPUDEC_H |
4 #define _MPLAYER_SPUDEC_H | |
5 | |
3166 | 6 #include "stream.h" |
3034
24d3dca4e813
DVD sub patch by Kim Minh Kaplan <kmkaplan@selfoffice.com>
arpi
parents:
561
diff
changeset
|
7 void spudec_heartbeat(void *this, int pts100); |
24d3dca4e813
DVD sub patch by Kim Minh Kaplan <kmkaplan@selfoffice.com>
arpi
parents:
561
diff
changeset
|
8 void spudec_assemble(void *this, unsigned char *packet, int len, int pts100); |
24d3dca4e813
DVD sub patch by Kim Minh Kaplan <kmkaplan@selfoffice.com>
arpi
parents:
561
diff
changeset
|
9 void spudec_draw(void *this, void (*draw_alpha)(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride)); |
3166 | 10 void *spudec_new(dvd_priv_t *dvd_info); |
3034
24d3dca4e813
DVD sub patch by Kim Minh Kaplan <kmkaplan@selfoffice.com>
arpi
parents:
561
diff
changeset
|
11 void spudec_free(void *this); |
560 | 12 |
13 #endif | |
3180
d53f70e3c794
spudec_new has a dvd_priv_t as an argument, which is defined in
pl
parents:
3166
diff
changeset
|
14 #endif |
3183 | 15 |