diff options
author | uau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-11-26 19:35:56 +0000 |
---|---|---|
committer | uau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-11-26 19:35:56 +0000 |
commit | 55b5bb3a5ef32e125b5d78fcc1210bb5d3350370 (patch) | |
tree | 2ee3bcb45aea19af2d3ce72e42ad3adf7946960e | |
parent | cb2cfdd31cca3ee68707f2e1b831dcd0ff9d64a0 (diff) |
Fix previous broken vd_qtvideo.c commit which failed on MACOSX
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21280 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | libmpcodecs/vd_qtvideo.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libmpcodecs/vd_qtvideo.c b/libmpcodecs/vd_qtvideo.c index b240b2067e..b25a755bdf 100644 --- a/libmpcodecs/vd_qtvideo.c +++ b/libmpcodecs/vd_qtvideo.c @@ -7,8 +7,7 @@ #ifdef MACOSX #include <QuickTime/ImageCodec.h> #define dump_ImageDescription(x) -#else -#include "qtx/qtxsdk/components.h" +#endif #include "wine/windef.h" @@ -31,6 +30,9 @@ LIBVD_EXTERN(qtvideo) #include "bswap.h" +#ifndef MACOSX +#include "qtx/qtxsdk/components.h" + HMODULE WINAPI LoadLibraryA(LPCSTR); FARPROC WINAPI GetProcAddress(HMODULE,LPCSTR); int WINAPI FreeLibrary(HMODULE); |