summaryrefslogtreecommitdiffstats
path: root/loader
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-04-28 14:50:24 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-04-28 14:50:24 +0000
commit0792780cb7dbea0d33185c29b0ee664e41665f34 (patch)
tree9cb50f0a48baf07657bc30901e38803892ceec9e /loader
parentdf2124e18fbf85659a9b4e4f83edaef92553856c (diff)
downloadmpv-0792780cb7dbea0d33185c29b0ee664e41665f34.tar.bz2
mpv-0792780cb7dbea0d33185c29b0ee664e41665f34.tar.xz
Use consistent #include paths without "../".
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26576 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader')
-rw-r--r--loader/dmo/DMO_AudioDecoder.c2
-rw-r--r--loader/dmo/DMO_VideoDecoder.c4
-rw-r--r--loader/dshow/DS_AudioDecoder.c2
-rw-r--r--loader/dshow/DS_VideoDecoder.c4
4 files changed, 6 insertions, 6 deletions
diff --git a/loader/dmo/DMO_AudioDecoder.c b/loader/dmo/DMO_AudioDecoder.c
index 398cd86f51..0b83d48f4c 100644
--- a/loader/dmo/DMO_AudioDecoder.c
+++ b/loader/dmo/DMO_AudioDecoder.c
@@ -28,7 +28,7 @@ struct DMO_AudioDecoder
#include <stdio.h>
#include <stdlib.h>
-#include "../../mp_msg.h"
+#include "mp_msg.h"
typedef long STDCALL (*GETCLASS) (GUID*, GUID*, void**);
extern void print_wave_header(WAVEFORMATEX *h, int verbose_level);
diff --git a/loader/dmo/DMO_VideoDecoder.c b/loader/dmo/DMO_VideoDecoder.c
index c018506d75..9f3e9d7eb8 100644
--- a/loader/dmo/DMO_VideoDecoder.c
+++ b/loader/dmo/DMO_VideoDecoder.c
@@ -9,7 +9,7 @@
#include "dshow/interfaces.h"
#include "registry.h"
#ifdef WIN32_LOADER
-#include "../ldt_keeper.h"
+#include "ldt_keeper.h"
#endif
#include "dshow/libwin32.h"
@@ -33,7 +33,7 @@ struct DMO_VideoDecoder
//#include "DMO_VideoDecoder.h"
-#include "../wine/winerror.h"
+#include "wine/winerror.h"
#include <unistd.h>
#include <fcntl.h>
diff --git a/loader/dshow/DS_AudioDecoder.c b/loader/dshow/DS_AudioDecoder.c
index 73e7abcecb..2ac48cd25e 100644
--- a/loader/dshow/DS_AudioDecoder.c
+++ b/loader/dshow/DS_AudioDecoder.c
@@ -21,7 +21,7 @@ struct DS_AudioDecoder
#include "DS_AudioDecoder.h"
#ifdef WIN32_LOADER
-#include "../ldt_keeper.h"
+#include "ldt_keeper.h"
#endif
#include <string.h>
diff --git a/loader/dshow/DS_VideoDecoder.c b/loader/dshow/DS_VideoDecoder.c
index 415e7a3fb5..a10436e325 100644
--- a/loader/dshow/DS_VideoDecoder.c
+++ b/loader/dshow/DS_VideoDecoder.c
@@ -30,9 +30,9 @@ static SampleProcUserData sampleProcData;
#include "DS_VideoDecoder.h"
-#include "../wine/winerror.h"
+#include "wine/winerror.h"
#ifdef WIN32_LOADER
-#include "../ldt_keeper.h"
+#include "ldt_keeper.h"
#endif
#include <unistd.h>