Thread: nnedi3cl
View Single Post
Old 22nd September 2017, 17:22   #5  |  Link
poisondeathray
Registered User
 
Join Date: Sep 2007
Posts: 5,346
I'm getting some issues with build program failure

Win8.1 x64 . Vapoursynth R39test4

Code:
Failed to evaluate the script:
Python exception: NNEDI3CL: Build Program Failure
:1:3129: error: incompatible pointer types passing '__local float *' to parameter of type 'const __local float (*)[95]'
:1:161: note: passing argument to parameter 'input' here
:1:4825: error: incompatible pointer types passing '__local float *' to parameter of type 'const __local float (*)[95]'
:1:161: note: passing argument to parameter 'input' here

error: front end compiler failed build.
On simple script. UT Video 4:2:0. 720x480. Commenting out NNEDI3CL line works ok
Code:
import vapoursynth as vs
core = vs.get_core()

clip = core.avisource.AVISource(r'PATH\test.avi', pixel_type="yv12")
#clip = core.nnedi3cl.NNEDI3CL(clip, field=1, dh=True, dw=True)
clip.set_output()

Last edited by poisondeathray; 22nd September 2017 at 17:34.
poisondeathray is offline