2001-11-28 15:55:56 +01:00
|
|
|
#include "config.h"
|
2001-11-28 13:44:39 +01:00
|
|
|
#ifdef USE_DVDREAD
|
2001-04-21 17:38:01 +02:00
|
|
|
#ifndef _MPLAYER_SPUDEC_H
|
|
|
|
#define _MPLAYER_SPUDEC_H
|
|
|
|
|
2001-11-27 21:16:45 +01:00
|
|
|
#include "stream.h"
|
2001-11-20 19:36:50 +01: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 21:16:45 +01:00
|
|
|
void *spudec_new(dvd_priv_t *dvd_info);
|
2001-11-20 19:36:50 +01:00
|
|
|
void spudec_free(void *this);
|
2001-04-21 17:38:01 +02:00
|
|
|
|
|
|
|
#endif
|
2001-11-28 13:44:39 +01:00
|
|
|
#endif
|
2001-11-28 15:55:56 +01:00
|
|
|
|