summaryrefslogtreecommitdiffstats
path: root/loader
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-06-02 12:26:27 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-06-02 12:26:27 +0000
commit4f88dffa130591daa88a30a30e02406b8566a49a (patch)
tree796f2bb71999ce03c6897e08f858c26f14cf137b /loader
parent09ea65448e40133bdd6d86e15bcea163dd40d6b2 (diff)
downloadmpv-4f88dffa130591daa88a30a30e02406b8566a49a.tar.bz2
mpv-4f88dffa130591daa88a30a30e02406b8566a49a.tar.xz
Get rid of superfluous NOAVIFILE_HEADERS #define, it was always enabled and
cluttered the code. Blessed by Reimar. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23447 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader')
-rw-r--r--loader/Makefile2
-rw-r--r--loader/dmo/DMO_AudioDecoder.c5
-rw-r--r--loader/dmo/DMO_VideoDecoder.c10
-rw-r--r--loader/dshow/DS_AudioDecoder.c5
-rw-r--r--loader/dshow/DS_VideoDecoder.c11
-rw-r--r--loader/dshow/mediatype.c7
6 files changed, 1 insertions, 39 deletions
diff --git a/loader/Makefile b/loader/Makefile
index e3380a1d23..ce31e087d6 100644
--- a/loader/Makefile
+++ b/loader/Makefile
@@ -2,7 +2,7 @@ include ../config.mak
LIBNAME_COMMON = libloader.a
-CFLAGS= -D__WINE__ -DNOAVIFILE_HEADERS
+CFLAGS= -D__WINE__
#CFLAGS+=-Ddbg_printf=__vprintf -DTRACE=__vprintf -DDETAILED_OUT
SRCS_COMMON = driver.c afl.c vfl.c
diff --git a/loader/dmo/DMO_AudioDecoder.c b/loader/dmo/DMO_AudioDecoder.c
index 661883beab..83a90659ba 100644
--- a/loader/dmo/DMO_AudioDecoder.c
+++ b/loader/dmo/DMO_AudioDecoder.c
@@ -5,15 +5,10 @@
*********************************************************/
#include "config.h"
-#ifndef NOAVIFILE_HEADERS
-#include "audiodecoder.h"
-#include "except.h"
-#else
#include "dshow/libwin32.h"
#ifdef WIN32_LOADER
#include "ldt_keeper.h"
#endif
-#endif
#include "DMO_Filter.h"
#include "DMO_AudioDecoder.h"
diff --git a/loader/dmo/DMO_VideoDecoder.c b/loader/dmo/DMO_VideoDecoder.c
index 27f11e89af..6771bc126d 100644
--- a/loader/dmo/DMO_VideoDecoder.c
+++ b/loader/dmo/DMO_VideoDecoder.c
@@ -12,11 +12,7 @@
#include "../ldt_keeper.h"
#endif
-#ifndef NOAVIFILE_HEADERS
-#include "videodecoder.h"
-#else
#include "dshow/libwin32.h"
-#endif
#include "DMO_Filter.h"
#include "DMO_VideoDecoder.h"
@@ -39,12 +35,6 @@ struct _DMO_VideoDecoder
#include "../wine/winerror.h"
-#ifndef NOAVIFILE_HEADERS
-#define VFW_E_NOT_RUNNING 0x80040226
-#include "fourcc.h"
-#include "except.h"
-#endif
-
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
diff --git a/loader/dshow/DS_AudioDecoder.c b/loader/dshow/DS_AudioDecoder.c
index 23cd65bdfc..be2ddce23e 100644
--- a/loader/dshow/DS_AudioDecoder.c
+++ b/loader/dshow/DS_AudioDecoder.c
@@ -6,12 +6,7 @@
*********************************************************/
#include "config.h"
-#ifndef NOAVIFILE_HEADERS
-#include "audiodecoder.h"
-#include "except.h"
-#else
#include "libwin32.h"
-#endif
#include "DS_Filter.h"
diff --git a/loader/dshow/DS_VideoDecoder.c b/loader/dshow/DS_VideoDecoder.c
index 4f5a8b7a79..99c6770a99 100644
--- a/loader/dshow/DS_VideoDecoder.c
+++ b/loader/dshow/DS_VideoDecoder.c
@@ -8,12 +8,7 @@
#include "guids.h"
#include "interfaces.h"
#include "registry.h"
-
-#ifndef NOAVIFILE_HEADERS
-#include "videodecoder.h"
-#else
#include "libwin32.h"
-#endif
#include "DS_Filter.h"
struct _DS_VideoDecoder
@@ -40,12 +35,6 @@ static SampleProcUserData sampleProcData;
#include "../ldt_keeper.h"
#endif
-#ifndef NOAVIFILE_HEADERS
-#define VFW_E_NOT_RUNNING 0x80040226
-#include "fourcc.h"
-#include "except.h"
-#endif
-
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
diff --git a/loader/dshow/mediatype.c b/loader/dshow/mediatype.c
index 9288f3808f..9b8f2f10de 100644
--- a/loader/dshow/mediatype.c
+++ b/loader/dshow/mediatype.c
@@ -24,14 +24,7 @@
#include "mp_msg.h"
#include "wine/winerror.h"
#include "com.h"
-
-
-#ifndef NOAVIFILE_HEADERS
-#include "audiodecoder.h"
-#include "except.h"
-#else
#include "libwin32.h"
-#endif
void DisplayMediaType(const char * label,const AM_MEDIA_TYPE* pmt){
WAVEFORMATEX* pWF;