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:
authorPeter Schlaile <peter@schlaile.de>2006-02-05 22:12:25 +0300
committerPeter Schlaile <peter@schlaile.de>2006-02-05 22:12:25 +0300
commit1ce9e196f7c4b76da9a5cf3c789fe6ff2cada2e2 (patch)
tree9faa8ce7ac2cc377b28dd609d84b1120782cd731 /source/blender/blenkernel/SConscript
parent4f59db9ca17630a0289a953574303b77fccb46ff (diff)
Adds support for frameserver rendering to blender. This is done by
integrating a mini-webserver (around 300 lines of code) into blender. Using the VFAPI-plugin in contrib/windows it enables blender to directly feed its output into TMPGEnc, a commercial high quality MPEG-Encoder. Since it is a mini-webserver, you can probably easily use it for other interfacing purposes.
Diffstat (limited to 'source/blender/blenkernel/SConscript')
-rw-r--r--source/blender/blenkernel/SConscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenkernel/SConscript b/source/blender/blenkernel/SConscript
index aaee2409d89..a5128a33c3e 100644
--- a/source/blender/blenkernel/SConscript
+++ b/source/blender/blenkernel/SConscript
@@ -20,6 +20,9 @@ if env['WITH_BF_INTERNATIONAL'] == 1:
if env['WITH_BF_OPENEXR'] == 1:
defs += ' WITH_OPENEXR'
+if env['WITH_BF_FFMPEG'] == 1:
+ defs += ' WITH_FFMPEG'
+
if env['WITH_BF_QUICKTIME'] == 1:
defs += ' WITH_QUICKTIME'
incs += ' ' + env['BF_QUICKTIME_INC']