[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [50074] trunk/blender/source/blender/ windowmanager/intern/wm_playanim.c: Fix #32370: compiler error in wm_playanim.c due to conflicting Carbon ID type

Brecht Van Lommel brechtvanlommel at pandora.be
Tue Aug 21 12:24:30 CEST 2012


Revision: 50074
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=50074
Author:   blendix
Date:     2012-08-21 10:24:30 +0000 (Tue, 21 Aug 2012)
Log Message:
-----------
Fix #32370: compiler error in wm_playanim.c due to conflicting Carbon ID type
from Quicktime headers. However the Quicktime init/exit is no longer needed
here, it happens in IMB_init/IMB_exit now, so removed that code.

Modified Paths:
--------------
    trunk/blender/source/blender/windowmanager/intern/wm_playanim.c

Modified: trunk/blender/source/blender/windowmanager/intern/wm_playanim.c
===================================================================
--- trunk/blender/source/blender/windowmanager/intern/wm_playanim.c	2012-08-21 09:45:30 UTC (rev 50073)
+++ trunk/blender/source/blender/windowmanager/intern/wm_playanim.c	2012-08-21 10:24:30 UTC (rev 50074)
@@ -49,11 +49,12 @@
 
 #include "PIL_time.h"
 
+#include "BLI_fileops.h"
 #include "BLI_listbase.h"
-#include "BLI_string.h"
 #include "BLI_path_util.h"
-#include "BLI_fileops.h"
 #include "BLI_rect.h"
+#include "BLI_string.h"
+#include "BLI_utildefines.h"
 
 #include "IMB_imbuf_types.h"
 #include "IMB_imbuf.h"
@@ -65,22 +66,12 @@
 #include "BIF_gl.h"
 #include "BIF_glutil.h"
 
-#ifdef WITH_QUICKTIME
-#  ifdef _WIN32
-#    include <QTML.h>
-#    include <Movies.h>
-#  elif defined(__APPLE__)
-#    include <QuickTime/Movies.h>
-#  endif /* __APPLE__ */
-#endif /* WITH_QUICKTIME */
-
 #include "DNA_scene_types.h"
-#include "BLI_utildefines.h"
 #include "ED_datafiles.h" /* for fonts */
-#include "wm_event_types.h"
 #include "GHOST_C-api.h"
 #include "BLF_api.h"
 
+#include "wm_event_types.h"
 
 typedef struct PlayState {
 
@@ -827,26 +818,6 @@
 		}
 	}
 
-#ifdef WITH_QUICKTIME
-#if defined(_WIN32) || defined(__APPLE__) && !defined(GHOST_COCOA)
-	/* Initialize QuickTime */
-#ifndef noErr
-#define noErr 0
-#endif
-
-#ifdef _WIN32
-	if (InitializeQTML(0) != noErr)
-		G.have_quicktime = FALSE;
-	else
-		G.have_quicktime = TRUE;
-#endif /* _WIN32 */
-	if (EnterMovies() != noErr)
-		G.have_quicktime = FALSE;
-	else
-#endif /* _WIN32 || __APPLE__  && !defined(GHOST_COCOA)*/
-	G.have_quicktime = TRUE;
-#endif /* WITH_QUICKTIME */
-
 	if (argc > 1) {
 		BLI_strncpy(filepath, argv[1], sizeof(filepath));
 	}
@@ -1098,16 +1069,6 @@
 
 		ps.picture = ps.picture->next;
 	}
-#ifdef WITH_QUICKTIME
-#if defined(_WIN32) || defined(__APPLE__) && !defined(GHOST_COCOA)
-	if (G.have_quicktime) {
-		ExitMovies();
-#ifdef _WIN32
-		TerminateQTML();
-#endif /* _WIN32 */
-	}
-#endif /* _WIN32 || __APPLE__ && !defined(GHOST_COCOA) */
-#endif /* WITH_QUICKTIME */
 
 	/* cleanup */
 #ifndef USE_IMB_CACHE




More information about the Bf-blender-cvs mailing list