View Single Post
Old 7th December 2005, 23:39   #168  |  Link
tsp
Registered User
 
tsp's Avatar
 
Join Date: Aug 2004
Location: Denmark
Posts: 807
Quote:
Originally Posted by puffpio
woot got it to work..

tsp: the avisynth.dll in your MT_041.zip is NOT the multithreaded version... :P
it just the version before I implemented SetMTMode
also try this version
Code:
LoadPlugin("C:\Program Files\dgindex\DGDecode.dll")

SetMTMode(2)

video = mpeg2source("fm2.d2v")
video = video.DeDot()
video = video.AssumeTFF()
interp = video.separatefields().selecteven().EEDI2(field = 1)
video = video.tdeint(edeint=interp)
SetMTmode(6)
video = video.MT("FFT3DFilter(sigma=3, plane=4, bt=4, sharpen=0.7)", avisynthTS=true)
SetMTMode(2)
video = video.crop(4, 0, -4, -4)
video = video.LanczosResize(512, 384)

return video
because MT does it's own multithreading (it creates it's own thread) so it wouldn't take advantage of SetMTMode(2).
__________________
Get my avisynth filters @ http://www.avisynth.org/tsp/
tsp is offline   Reply With Quote