[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [18676] trunk/blender/source/gameengine/ BlenderRoutines/BL_KetsjiEmbedStart.cpp: let the game engine compile, if WITH_FFPEG is not defined (so we don't have video textures in that case )

Erwin Coumans blender at erwincoumans.com
Mon Jan 26 07:31:24 CET 2009


Revision: 18676
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=18676
Author:   erwin
Date:     2009-01-26 07:31:06 +0100 (Mon, 26 Jan 2009)

Log Message:
-----------
let the game engine compile, if WITH_FFPEG is not defined (so we don't have video textures in that case)

Modified Paths:
--------------
    trunk/blender/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp

Modified: trunk/blender/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp
===================================================================
--- trunk/blender/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp	2009-01-26 04:13:38 UTC (rev 18675)
+++ trunk/blender/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp	2009-01-26 06:31:06 UTC (rev 18676)
@@ -368,7 +368,9 @@
 			initGameKeys();
 			initPythonConstraintBinding();
 			initMathutils();
+#ifdef WITH_FFMPEG
 			initVideoTexture();
+#endif
 
 			if (sceneconverter)
 			{
@@ -660,7 +662,9 @@
 			initGameKeys();
 			initPythonConstraintBinding();
 			initMathutils();
-            initVideoTexture();
+#ifdef WITH_FFMPEG
+			initVideoTexture();
+#endif
 
 			if (sceneconverter)
 			{





More information about the Bf-blender-cvs mailing list