diff libmpcodecs/ad_qtaudio.c @ 18771:a1807995e2ab

Move #ifdefs around complete files into the build system.
author diego
date Wed, 21 Jun 2006 14:49:09 +0000
parents 6ff3379a0862
children ed01090d1192
line wrap: on
line diff
--- a/libmpcodecs/ad_qtaudio.c	Wed Jun 21 13:50:06 2006 +0000
+++ b/libmpcodecs/ad_qtaudio.c	Wed Jun 21 14:49:09 2006 +0000
@@ -6,7 +6,6 @@
 #include "config.h"
 #include "mp_msg.h"
 
-#if defined(USE_QTX_CODECS) || defined(MACOSX)
 #include "wine/windef.h"
 
 #include "ad_internal.h"
@@ -30,7 +29,7 @@
 
 LIBAD_EXTERN(qtaudio)
 
-#if defined(USE_QTX_CODECS) && !defined(MACOSX)
+#if !defined(MACOSX)
 typedef struct OpaqueSoundConverter*    SoundConverter;
 typedef unsigned long                   OSType;
 typedef unsigned long                   UnsignedFixed;
@@ -164,7 +163,7 @@
     mp_msg(MSGT_DECAUDIO,MSGL_DBG2,"loader_init DONE???\n");
 	return 0;
 }
-#endif /* USE_QTX_CODECS */
+#endif /* #if !defined(MACOSX) */
 
 static SoundConverter			   myConverter = NULL;
 static SoundComponentData		   InputFormatInfo,OutputFormatInfo;
@@ -334,5 +333,3 @@
     // various optional functions you MAY implement:
   return CONTROL_UNKNOWN;
 }
-
-#endif