Thread: Avisynth+
View Single Post
Old 2nd March 2018, 01:58   #3981  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
BugRep.

Was playing with S_Exlogo() v1.1, Script:- https://forum.doom9.org/showthread.p...light=S_Exlogo

and was getting some kind of crash, isolated to this producing error in new avs+ (ok in avs standard).

Code:
BlankClip(Width=4,height=100,Pixel_type="YUY2",color=$808080)
Blur(1.0,0.0)   # Oh no, the humanity, Error
# EDIT ADDED Alternatives
Blur(1.0)   # Error
Blur(0.5)   # Error
Dont know how long it has been a prob.

EDIT: Seems to be Access Violation in VDFM.
EDIT: YV12, no prob.

EDIT: This S_Exlogo() line produced error (when pat_v string is evaluated).
Code:
    pat_v= ( \
        Select(ok_v, \
            ("NoneDummy" ) , \
            ( (HBlur==0.0) ? "Crop(PX-4,PY,4,PH).BilinearResize(PW*4,PH).Crop(PW*3,0,PW,PH)" \
                           : "Crop(PX-4,PY,4,PH).Blur(HBlur,0.0).BilinearResize(PW*4,PH).Crop(PW*3,0,PW,PH)" ) , \
            ( (HBlur==0.0) ? "Crop(PX2, PY,4,PH).BilinearResize(PW*4,PH).Crop(0,0,PW,PH)" \
                           : "Crop(PX2, PY,4,PH).Blur(HBlur,0.0).BilinearResize(PW*4,PH).Crop(0,0,PW,PH)" ) , \
            ( (HBlur==0.0) ? "StackHorizontal(Crop(PX-2,PY,2,PH),Crop(PX2,PY,2,PH)).BilinearResize(PW*3,PH).Crop(PW,0,PW,PH)" \
                           : "StackHorizontal(Crop(PX-2,PY,2,PH),Crop(PX2,PY,2,PH)).Blur(HBlur,0.0)" + \
                             ".BilinearResize(PW*3,PH).Crop(PW,0,PW,PH)" ) \
        ) \
    )
__________________
I sometimes post sober.
StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace

"Some infinities are bigger than other infinities", but how many of them are infinitely bigger ???

Last edited by StainlessS; 2nd March 2018 at 02:30.
StainlessS is offline