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:
authorCampbell Barton <ideasman42@gmail.com>2011-12-28 17:50:33 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-12-28 17:50:33 +0400
commit5b88e16306711408825d9291bfeb7023bd7fd69c (patch)
tree75e0d8aa861280745308d9667125bf949f571567 /source/blender/python
parentca94cb123745f207ec837b091ab271ad3a5aacbe (diff)
WIP loading bmesh in trunk, some conversion functions for this purpose.
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/intern/bpy_app_ffmpeg.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_app_ffmpeg.c b/source/blender/python/intern/bpy_app_ffmpeg.c
index 9c4428919ec..778334c9600 100644
--- a/source/blender/python/intern/bpy_app_ffmpeg.c
+++ b/source/blender/python/intern/bpy_app_ffmpeg.c
@@ -69,7 +69,11 @@ static PyStructSequence_Desc app_ffmpeg_info_desc = {
static PyObject *make_ffmpeg_info(void)
{
PyObject *ffmpeg_info;
- int pos = 0, curversion;
+ int pos = 0;
+
+#ifdef WITH_FFMPEG
+ int curversion;
+#endif
ffmpeg_info = PyStructSequence_New(&BlenderAppFFmpegType);
if (ffmpeg_info == NULL) {