View Single Post
Old 29th December 2013, 14:39   #1217  |  Link
LoRd_MuldeR
Software Developer
 
LoRd_MuldeR's Avatar
 
Join Date: Jun 2005
Location: Last House on Slunk Street
Posts: 13,248
Code:
int x = -1073741819;
printf("%d = 0x%08X\n", x, x);

-1073741819 = 0xC0000005
It means that Avisynth, or more likely one of the plug-in's you are using, has crashed - with STATUS_ACCESS_VIOLATION (0xC0000005) error.

In case of a "hard" crash, you won't get any useful error message, as the program just dies. You may be able to locate in which module and function it crashed using a debugger though.

Anyway, this problem obviously is not related to x264 or Simple x264 Launcher. All you can do at this point is stripping down your Avisynth script and find out which plug-in is responsible.

[EDIT] And, most important, get rid of the unstable mess called Avisynth-MT for now and try again with a stable Avisynth [/EDIT]
__________________
Go to https://standforukraine.com/ to find legitimate Ukrainian Charities 🇺🇦✊

Last edited by LoRd_MuldeR; 29th December 2013 at 17:02.
LoRd_MuldeR is offline   Reply With Quote