[MPlayer-cvslog] r25446 - trunk/loader/module.c

diego subversion at mplayerhq.hu
Tue Dec 18 10:13:19 CET 2007


Author: diego
Date: Tue Dec 18 10:13:19 2007
New Revision: 25446

Log:
Stop MPlayer from complaining about bogus AviSynth DLL load failures.
This was causing major confusion and resulting usability problems.
patch by Jan Knutar, jknutar nic fi


Modified:
   trunk/loader/module.c

Modified: trunk/loader/module.c
==============================================================================
--- trunk/loader/module.c	(original)
+++ trunk/loader/module.c	Tue Dec 18 10:13:19 2007
@@ -426,7 +426,7 @@ HMODULE WINAPI LoadLibraryExA(LPCSTR lib
 		}
 	}
 
-	if (!wm)
+	if (!wm && !strstr(checked, "avisynth.dll"))
 	    printf("Win32 LoadLibrary failed to load: %s\n", checked);
 
 #define RVA(x) ((char *)wm->module+(unsigned int)(x))



More information about the MPlayer-cvslog mailing list