2001-11-28 14:55:56 +00:00
|
|
|
#include "config.h"
|
2001-11-28 12:44:39 +00:00
|
|
|
#ifdef USE_DVDREAD
|
2001-04-21 15:38:01 +00:00
|
|
|
#ifndef _MPLAYER_SPUDEC_H
|
|
|
|
#define _MPLAYER_SPUDEC_H
|
|
|
|
|
2001-11-27 20:16:45 +00:00
|
|
|
#include "stream.h"
|
2001-11-20 18:36:50 +00:00
|
|
|
void spudec_heartbeat(void *this, int pts100);
|
|
|
|
void spudec_assemble(void *this, unsigned char *packet, int len, int pts100);
|
|
|
|
void spudec_draw(void *this, void (*draw_alpha)(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride));
|
2001-11-27 20:16:45 +00:00
|
|
|
void *spudec_new(dvd_priv_t *dvd_info);
|
2001-11-20 18:36:50 +00:00
|
|
|
void spudec_free(void *this);
|
2001-04-21 15:38:01 +00:00
|
|
|
|
|
|
|
#endif
|
2001-11-28 12:44:39 +00:00
|
|
|
#endif
|
2001-11-28 14:55:56 +00:00
|
|
|
|