summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--spudec.c1
-rw-r--r--spudec.h3
2 files changed, 3 insertions, 1 deletions
diff --git a/spudec.c b/spudec.c
index a247a6828c..9e83e65260 100644
--- a/spudec.c
+++ b/spudec.c
@@ -10,6 +10,7 @@
For information on SPU format see <URL:http://sam.zoy.org/doc/dvd/subtitles/>
*/
+#include "config.h"
#ifdef USE_DVDREAD
diff --git a/spudec.h b/spudec.h
index 66edfa13fe..397c883b87 100644
--- a/spudec.h
+++ b/spudec.h
@@ -1,8 +1,8 @@
+#include "config.h"
#ifdef USE_DVDREAD
#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);
@@ -12,3 +12,4 @@ void spudec_free(void *this);
#endif
#endif
+