Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/blender/quicktime/apple/quicktime_export.c4
-rw-r--r--source/blender/quicktime/apple/quicktime_import.c1
2 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/quicktime/apple/quicktime_export.c b/source/blender/quicktime/apple/quicktime_export.c
index 2623a598d5f..362f17ee945 100644
--- a/source/blender/quicktime/apple/quicktime_export.c
+++ b/source/blender/quicktime/apple/quicktime_export.c
@@ -621,7 +621,9 @@ void end_qt(void) {
//printf("Finished QuickTime movie.\n");
}
- ExitMoviesOnThread();
+#ifdef __APPLE__
+ ExitMoviesOnThread();
+#endif
if(qtexport) {
MEM_freeN(qtexport);
diff --git a/source/blender/quicktime/apple/quicktime_import.c b/source/blender/quicktime/apple/quicktime_import.c
index 699b2c4f6e3..917a75772ce 100644
--- a/source/blender/quicktime/apple/quicktime_import.c
+++ b/source/blender/quicktime/apple/quicktime_import.c
@@ -48,6 +48,7 @@
#include <QTML.h>
#include <TextUtils.h>
#include <QuickTimeComponents.h>
+#include <QTLoadLibraryUtils.h>
#endif /* _WIN32 */