annotate spudec.h @ 3180:d53f70e3c794

spudec_new has a dvd_priv_t as an argument, which is defined in libmpdemux/stream.h only if USE_DVDREAD is defined. (Arpi)
author pl
date Wed, 28 Nov 2001 12:44:39 +0000
parents 69ad1e3db38c
children ce9acee4e129
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3180
d53f70e3c794 spudec_new has a dvd_priv_t as an argument, which is defined in
pl
parents: 3166
diff changeset
1 #ifdef USE_DVDREAD
560
28ae99036574 Separated dvdsub code to be able to work with it easier
lgb
parents:
diff changeset
2 #ifndef _MPLAYER_SPUDEC_H
28ae99036574 Separated dvdsub code to be able to work with it easier
lgb
parents:
diff changeset
3 #define _MPLAYER_SPUDEC_H
28ae99036574 Separated dvdsub code to be able to work with it easier
lgb
parents:
diff changeset
4
3166
69ad1e3db38c Palette support for SPU decoder.
atmos4
parents: 3034
diff changeset
5 #include "config.h"
69ad1e3db38c Palette support for SPU decoder.
atmos4
parents: 3034
diff changeset
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
69ad1e3db38c Palette support for SPU decoder.
atmos4
parents: 3034
diff changeset
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
28ae99036574 Separated dvdsub code to be able to work with it easier
lgb
parents:
diff changeset
12
28ae99036574 Separated dvdsub code to be able to work with it easier
lgb
parents:
diff changeset
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