Maraza
4th January 2013, 20:16
Hi,
I'm getting the avisynth error:
Script error: there is no function named "Planar2Interleaved"
and when trying to load SSE2Tools.dll and RemoveDirtSSE2.dll:
unable to load "C:\Program Files\AviSynth 2.5\plugins\SSE2Tools.dll", error=0x7e
and the same for RemoveDirtSSE2.dll as well.
the script contains:
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\SSE2Tools.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\RemoveDirtSSE2.dll")
s=AviSource("test.avi")
d=mdenoise (s,400,220,255)
return d
function mdenoise (clip s, int thSAD, int thSADC, int lim)
{
super = MSuper(s, planar=true)
bv1 = MAnalyse(super, blksize=8, isb = true, delta = 1, overlap=4)
fv1 = MAnalyse(super, blksize=8, isb = false, delta = 1, overlap=4)
bv2 = MAnalyse(super, blksize=8, isb = true, delta = 2, overlap=4)
fv2 = MAnalyse(super, blksize=8, isb = false, delta = 2, overlap=4)
bv3 = MAnalyse(super, blksize=8, isb = true, delta = 3, overlap=4)
fv3 = MAnalyse(super, blksize=8, isb = false, delta = 3, overlap=4)
temp=MDegrain3(s,super,bv1,fv1,bv2,fv2,bv3,fv3,thSAD=thSAD,thSADC=thSADC,limit=lim,planar=true)
return (Planar2Interleaved(temp))
}
I've used MDegrain3 with mvtools some time and decided to move all avisynth plugins to new pc with freshly installed WinXp.
And for some reason the Planar2Interleaved function located in the SSE2Tools.dll (30720 bytes) can't be opened... :(
I'm started to use avisynth 2.6 version.
I'm getting the avisynth error:
Script error: there is no function named "Planar2Interleaved"
and when trying to load SSE2Tools.dll and RemoveDirtSSE2.dll:
unable to load "C:\Program Files\AviSynth 2.5\plugins\SSE2Tools.dll", error=0x7e
and the same for RemoveDirtSSE2.dll as well.
the script contains:
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\SSE2Tools.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\RemoveDirtSSE2.dll")
s=AviSource("test.avi")
d=mdenoise (s,400,220,255)
return d
function mdenoise (clip s, int thSAD, int thSADC, int lim)
{
super = MSuper(s, planar=true)
bv1 = MAnalyse(super, blksize=8, isb = true, delta = 1, overlap=4)
fv1 = MAnalyse(super, blksize=8, isb = false, delta = 1, overlap=4)
bv2 = MAnalyse(super, blksize=8, isb = true, delta = 2, overlap=4)
fv2 = MAnalyse(super, blksize=8, isb = false, delta = 2, overlap=4)
bv3 = MAnalyse(super, blksize=8, isb = true, delta = 3, overlap=4)
fv3 = MAnalyse(super, blksize=8, isb = false, delta = 3, overlap=4)
temp=MDegrain3(s,super,bv1,fv1,bv2,fv2,bv3,fv3,thSAD=thSAD,thSADC=thSADC,limit=lim,planar=true)
return (Planar2Interleaved(temp))
}
I've used MDegrain3 with mvtools some time and decided to move all avisynth plugins to new pc with freshly installed WinXp.
And for some reason the Planar2Interleaved function located in the SSE2Tools.dll (30720 bytes) can't be opened... :(
I'm started to use avisynth 2.6 version.