# HG changeset patch # User diego # Date 1205580688 0 # Node ID e402c7730fcf119ada36cf5088475a7759e061ef # Parent ff1cf41e0dc086f0254d4e471c5251594c996be0 Introduce HAVE_QUICKTIME definition and use it where appropriate. diff -r ff1cf41e0dc0 -r e402c7730fcf configure --- a/configure Sat Mar 15 10:04:19 2008 +0000 +++ b/configure Sat Mar 15 11:31:28 2008 +0000 @@ -3583,6 +3583,7 @@ _def_quartz='#define HAVE_QUARTZ 1' _vosrc="$_vosrc vo_quartz.c" _vomodules="quartz $_vomodules" + _def_quicktime='#define HAVE_QUICKTIME 1' else _macosx=no _coreaudio=no @@ -3591,6 +3592,7 @@ _noaomodules="macosx $_noaomodules" _def_quartz='#undef HAVE_QUARTZ' _novomodules="quartz $_novomodules" + _def_quicktime='#undef HAVE_QUICKTIME' fi cat > $TMPC < @@ -8178,6 +8180,7 @@ $_def_coreaudio $_def_corevideo $_def_quartz +$_def_quicktime /* Build our Win32-loader */ $_def_win32_loader diff -r ff1cf41e0dc0 -r e402c7730fcf libmpcodecs/ad_qtaudio.c --- a/libmpcodecs/ad_qtaudio.c Sat Mar 15 10:04:19 2008 +0000 +++ b/libmpcodecs/ad_qtaudio.c Sat Mar 15 11:31:28 2008 +0000 @@ -5,7 +5,7 @@ #include "config.h" -#ifdef MACOSX +#ifdef HAVE_QUICKTIME #include #endif @@ -30,7 +30,7 @@ LIBAD_EXTERN(qtaudio) -#if !defined(MACOSX) +#ifndef HAVE_QUICKTIME typedef struct OpaqueSoundConverter* SoundConverter; typedef unsigned long OSType; typedef unsigned long UnsignedFixed; @@ -164,7 +164,7 @@ mp_msg(MSGT_DECAUDIO,MSGL_DBG2,"loader_init DONE???\n"); return 0; } -#endif /* #if !defined(MACOSX) */ +#endif /* #ifndef HAVE_QUICKTIME */ static SoundConverter myConverter = NULL; static SoundComponentData InputFormatInfo,OutputFormatInfo; @@ -180,7 +180,7 @@ unsigned long WantedBufferSize=0; //the size you want your buffers to be -#ifdef MACOSX +#ifdef HAVE_QUICKTIME EnterMovies(); #else if(loader_init()) return 0; // failed to load DLL @@ -280,7 +280,7 @@ // FreeLibrary( qtime_qts ); // qtime_qts = NULL; // printf("qt dll loader uninit done\n"); -#ifdef MACOSX +#ifdef HAVE_QUICKTIME ExitMovies(); #endif } diff -r ff1cf41e0dc0 -r e402c7730fcf libmpcodecs/vd_qtvideo.c --- a/libmpcodecs/vd_qtvideo.c Sat Mar 15 10:04:19 2008 +0000 +++ b/libmpcodecs/vd_qtvideo.c Sat Mar 15 11:31:28 2008 +0000 @@ -4,7 +4,7 @@ #include "config.h" -#ifdef MACOSX +#ifdef HAVE_QUICKTIME #include #define dump_ImageDescription(x) #endif @@ -30,7 +30,7 @@ #include "bswap.h" -#ifndef MACOSX +#ifndef HAVE_QUICKTIME #include "loader/qtx/qtxsdk/components.h" HMODULE WINAPI LoadLibraryA(LPCSTR); @@ -53,7 +53,7 @@ static HINSTANCE qtime_qts; // handle to the preloaded quicktime.qts static HMODULE handler; -#if !defined(MACOSX) +#ifndef HAVE_QUICKTIME static Component (*FindNextComponent)(Component prev,ComponentDescription* desc); static OSErr (*GetComponentInfo)(Component prev,ComponentDescription* desc,Handle h1,Handle h2,Handle h3); static long (*CountComponents)(ComponentDescription* desc); @@ -88,7 +88,7 @@ void *baseAddr, long rowBytes); static OSErr (*NewHandleClear)(Size byteCount); -#endif /* #if !defined(MACOSX) */ +#endif /* #ifndef HAVE_QUICKTIME */ // to set/get/query special features/parameters static int control(sh_video_t *sh,int cmd,void* arg,...){ @@ -107,7 +107,7 @@ ImageSubCodecDecompressCapabilities icap; // for ImageCodecInitialize() codec_initialized = 0; -#ifdef MACOSX +#ifdef HAVE_QUICKTIME EnterMovies(); #else @@ -154,7 +154,7 @@ mp_msg(MSGT_DECVIDEO,MSGL_DBG2,"InitializeQTML returned %li\n",result); // result=EnterMovies(); // printf("EnterMovies->%d\n",result); -#endif /* MACOSX */ +#endif /* HAVE_QUICKTIME */ #if 0 memset(&desc,0,sizeof(desc)); @@ -293,7 +293,7 @@ // uninit driver static void uninit(sh_video_t *sh){ -#ifdef MACOSX +#ifdef HAVE_QUICKTIME ExitMovies(); #endif }