WIP loading bmesh in trunk, some conversion functions for this purpose.

This commit is contained in:
2011-12-28 13:50:33 +00:00
parent ca94cb1237
commit 5b88e16306
6 changed files with 185 additions and 7 deletions

View File

@@ -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) {