summaryrefslogtreecommitdiffstats
path: root/spudec.h
diff options
context:
space:
mode:
authoratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-27 20:16:45 +0000
committeratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-27 20:16:45 +0000
commit9a7a6b49eb4cbd0480b66d43ec8be2b6ea1dc959 (patch)
treead5dc48e15158ef2fceeb6d0cb29f2f747834ce5 /spudec.h
parentef06bfd49d422d30886faa5e8cb86f8aba3e771e (diff)
downloadmpv-9a7a6b49eb4cbd0480b66d43ec8be2b6ea1dc959.tar.bz2
mpv-9a7a6b49eb4cbd0480b66d43ec8be2b6ea1dc959.tar.xz
Palette support for SPU decoder.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3167 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'spudec.h')
-rw-r--r--spudec.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/spudec.h b/spudec.h
index 416ecc9479..68a7d4f621 100644
--- a/spudec.h
+++ b/spudec.h
@@ -1,10 +1,12 @@
#ifndef _MPLAYER_SPUDEC_H
#define _MPLAYER_SPUDEC_H
+#include "config.h"
+#include "stream.h"
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));
-void *spudec_new();
+void *spudec_new(dvd_priv_t *dvd_info);
void spudec_free(void *this);
#endif