summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkmkaplan <kmkaplan@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-02-28 19:21:45 +0000
committerkmkaplan <kmkaplan@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-02-28 19:21:45 +0000
commit727d41286f5609f1ce01b16b185eb915214de54b (patch)
tree2b3047338ddd4fd4edd5f269dc6d9759adc1232d
parenta769d7069374eee7063fdff3bf23e38c5e36adf3 (diff)
downloadmpv-727d41286f5609f1ce01b16b185eb915214de54b.tar.bz2
mpv-727d41286f5609f1ce01b16b185eb915214de54b.tar.xz
supdec.h needs libvo/video_out.h. vobsub.c does not.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9512 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--spudec.h2
-rw-r--r--vobsub.c1
2 files changed, 2 insertions, 1 deletions
diff --git a/spudec.h b/spudec.h
index d6f7b755b4..99fa7ecdf1 100644
--- a/spudec.h
+++ b/spudec.h
@@ -1,6 +1,8 @@
#ifndef _MPLAYER_SPUDEC_H
#define _MPLAYER_SPUDEC_H
+#include "libvo/video_out.h"
+
void spudec_heartbeat(void *this, unsigned int pts100);
void spudec_assemble(void *this, unsigned char *packet, unsigned int len, unsigned 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));
diff --git a/vobsub.c b/vobsub.c
index 5c4628d2d7..4fbee89de9 100644
--- a/vobsub.c
+++ b/vobsub.c
@@ -18,7 +18,6 @@
#include "version.h"
#include "vobsub.h"
-#include "libvo/video_out.h"
#include "spudec.h"
#include "mp_msg.h"
#ifdef USE_UNRARLIB