forked from bartvdbraak/blender
ca8aa8c901
This adds redcode (the file format of RED one, R3D) support to blender. Seems to work fine with the footage I found on the web, but keep in mind, that because of the unoptimized nature of libopenjpeg, frame decoding isn't that fast. It is also a rather challenging task, to make 4k-float-footage realtime :)
13 lines
376 B
Python
13 lines
376 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = env.Glob('intern/*.cpp')
|
|
|
|
incs = 'intern ../container ../moto/include ../memutil'
|
|
|
|
if (env['OURPLATFORM'] == 'win32-mingw'):
|
|
env.BlenderLib ('blender_BSP', sources, Split(incs), [], libtype=['common','intern'], priority=[26,26] )
|
|
else:
|
|
env.BlenderLib ('blender_BSP', sources, Split(incs), [], libtype='core', priority=26 )
|
|
|