summaryrefslogtreecommitdiffstats
path: root/loader/dmo
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-01-04 20:36:27 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-01-04 20:36:27 +0000
commitdec1227f1cf98ffb6fc2c8b9fdaac535eda6e496 (patch)
tree93f3b508a42cb6f461effa0ddf29f591b4a43f5b /loader/dmo
parenta4ce4a23b7a74229e12930c68d182a698976305a (diff)
downloadmpv-dec1227f1cf98ffb6fc2c8b9fdaac535eda6e496.tar.bz2
mpv-dec1227f1cf98ffb6fc2c8b9fdaac535eda6e496.tar.xz
Add required header #includes to satisfy 'make checkheaders'.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30213 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader/dmo')
-rw-r--r--loader/dmo/DMO_AudioDecoder.h3
-rw-r--r--loader/dmo/DMO_VideoDecoder.h3
2 files changed, 6 insertions, 0 deletions
diff --git a/loader/dmo/DMO_AudioDecoder.h b/loader/dmo/DMO_AudioDecoder.h
index b4b3dc66e9..d7d0035c84 100644
--- a/loader/dmo/DMO_AudioDecoder.h
+++ b/loader/dmo/DMO_AudioDecoder.h
@@ -1,6 +1,9 @@
#ifndef MPLAYER_DMO_AUDIODECODER_H
#define MPLAYER_DMO_AUDIODECODER_H
+#include "loader/com.h"
+#include "loader/wine/mmreg.h"
+
typedef struct DMO_AudioDecoder DMO_AudioDecoder;
//DMO_AudioDecoder * DMO_AudioDecoder_Create(const CodecInfo * info, const WAVEFORMATEX* wf);
diff --git a/loader/dmo/DMO_VideoDecoder.h b/loader/dmo/DMO_VideoDecoder.h
index 9e6269be22..77af6ded09 100644
--- a/loader/dmo/DMO_VideoDecoder.h
+++ b/loader/dmo/DMO_VideoDecoder.h
@@ -1,6 +1,9 @@
#ifndef MPLAYER_DMO_VIDEODECODER_H
#define MPLAYER_DMO_VIDEODECODER_H
+#include "loader/com.h"
+#include "loader/wine/vfw.h"
+
typedef struct DMO_VideoDecoder DMO_VideoDecoder;
int DMO_VideoDecoder_GetCapabilities(DMO_VideoDecoder *this);