View Single Post
Old 28th July 2013, 19:36   #2  |  Link
Myrsloik
Professional Code Monkey
 
Myrsloik's Avatar
 
Join Date: Jun 2003
Location: Kinnarps Chair
Posts: 2,555
Code:
return self.std.Lut2([c1, c2], lut, planes)
should be
Code:
return self.std.Lut2([c1, c2], planes=planes, lut=lut)
Your patch to add function evaluation to lut changed the order of the arguments so use named arguments instead.
__________________
VapourSynth - proving that scripting languages and video processing isn't dead yet
Myrsloik is offline   Reply With Quote