View Single Post
Old 24th November 2017, 22:09   #3059  |  Link
manolito
Registered User
 
manolito's Avatar
 
Join Date: Sep 2003
Location: Berlin, Germany
Posts: 3,079
Oops, after a few days I did find a bug in the latest Alpha which crashes AviSynth for interlaced sources...

Quote:
- Improved handling of "non-mod4" interlaced sources within the AviSynth script generation routine

For "non-mod4" interlaced sources A2D adds the follwing line to the AVS script:
Quote:
Video = Video.Crop(0,0,-Width % 4,-Height % 4).ConvertToYV12(interlaced=true)
Width and Height are not defined for the implicit "Last" variable at this point, so AVS crashes. The line should instead be:
Quote:
Video = Video.Crop(0,0,-Video.Width % 4,-Video.Height % 4).ConvertToYV12(interlaced=true)

Cheers
manolito

Last edited by manolito; 14th December 2017 at 15:49.
manolito is offline   Reply With Quote