View Single Post
Old 29th May 2013, 09:09   #19  |  Link
Gavino
Avisynth language lover
 
Join Date: Dec 2007
Location: Spain
Posts: 3,431
Quote:
Originally Posted by DoctorM View Post
Fixed my bobber issue. You need to get the bobbing out of the way before SmartDecimate made things awkward.
Code:
...
yada=yadif(mode=1)
SmartDecimate(30,60,bob=yada)
Not sure what you mean here.
Internally, that code is exactly the same as manono's
SmartDecimate(30,60,bob=yadif(mode=1))

Your earlier problem almost certainly has something to do with incompatibilities between the built-in LoadCPlugin() and the older avisynth_c.dll (which declares its own LoadCPlugin() function).
I suspect Yadif needs the built-in version while SmartDecimate needs the older one, so the order of loading the dll's becomes important. Hence manono's solution of manually loading the plugins in the appropriate order.
__________________
GScript and GRunT - complex Avisynth scripting made easier
Gavino is offline   Reply With Quote