|
» AviSynth is a powerful video FrameServer for Win32. AviSynth Links: » You can add pages to this website
immediately. No login required.
|
F�r numerische Typen (int, float):
AviSynth wertete Ausdr�cke von rechts nach links aus, was zu unerwarteten Ergebnissen f�hren konnte: a = 10 - 5 - 5 ergab 10 - (5 - 5) = 10 anstatt von (10 - 5) - 5 = 0 ! b = 100. / 2. / 4. ergab 100. / (2. / 4.) = 200 anstatt von (100. / 2.) / 4. = 12.5 ! Seit AviSynth v2.53 werden die Ausdr�cke nun - wie gewohnt - von links nach rechts ausgewertet. F�r den Typ string:
F�r den Typ clip:
F�r den Typ bool:
b = (a==true) ? 1 : 2 Das ist in Pseudo-Basic: if (a=true) then b=1 else b=2 Seit AviSynth v2.07 ist ein nop() Funktion enthalten f�r F�lle, wo else nicht erw�nscht ist (wie beim bedingten Import oder LoadPlugin). |