Quote:
Originally posted by daveoggy
I don't understand what the colons are saying and there was no prior mention of their meaning.
|
The only colons I see are just standard syntax of a C switch statement, i.e., a colon after the case clause.
Quote:
I can't even get the filter to work! Apparently the syntax is SimpleSample(clip,[size]), so shouldn't this work:
Loadplugin("c:\av\avisynth\myplugins\SimpleSampleDbg.dll")
TheClip = AVISource("c:\someclip.avi")
SimpleSample(TheClip, 10)
I know I'm an idiot and probably on borrowed time in a forum such as this, but here's hoping.
|
That sample takes no parameters and does nothing (actually just copies its input to its output), so it is working fine.
Look at later versions of the sample at
www.avisynth.org/SimpleSample, where more functionality is added. This one (the first) is just a skeleton without any real processing.