summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--dec_audio.c4
-rw-r--r--dec_video.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/dec_audio.c b/dec_audio.c
index c16b07c252..68d3328fac 100644
--- a/dec_audio.c
+++ b/dec_audio.c
@@ -62,8 +62,8 @@ int fakemono=0;
#endif
#ifdef USE_DIRECTSHOW
-#include "loader/DirectShow/DS_AudioDec.h"
-static void* ds_adec=NULL;
+#include "loader/dshow/DS_AudioDecoder.h"
+static DS_AudioDecoder* ds_adec=NULL;
#endif
#ifdef HAVE_OGGVORBIS
diff --git a/dec_video.c b/dec_video.c
index ac2957787c..c5c910d6fc 100644
--- a/dec_video.c
+++ b/dec_video.c
@@ -55,8 +55,8 @@ extern picture_t *picture; // exported from libmpeg2/decode.c
int divx_quality=0;
#ifdef USE_DIRECTSHOW
-#include "loader/DirectShow/DS_VideoDec.h"
-static void* ds_vdec=NULL;
+#include "loader/dshow/DS_VideoDecoder.h"
+static DS_VideoDecoder* ds_vdec=NULL;
#endif
#ifdef USE_LIBAVCODEC