Mercurial > mplayer.hg
changeset 25418:0cc73d213160
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
author | diego |
---|---|
date | Tue, 18 Dec 2007 09:13:19 +0000 |
parents | b0cd876a0c32 |
children | 59aba7a96701 |
files | loader/module.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/loader/module.c Tue Dec 18 04:07:48 2007 +0000 +++ b/loader/module.c Tue Dec 18 09:13:19 2007 +0000 @@ -426,7 +426,7 @@ } } - 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))