# HG changeset patch # User alex # Date 1030463201 0 # Node ID 5c87f14ad947f7809a4a429a11c1384b1ab6c29e # Parent 6746866a94c6ce008a50b0960ce9bc0a03882be5 SetDLLAccessPath isn't used. Patch by Andres Hess diff -r 6746866a94c6 -r 5c87f14ad947 libmpcodecs/ad_real.c --- a/libmpcodecs/ad_real.c Tue Aug 27 09:57:12 2002 +0000 +++ b/libmpcodecs/ad_real.c Tue Aug 27 15:46:41 2002 +0000 @@ -42,7 +42,7 @@ static unsigned long (*raInitDecoder)(unsigned long,unsigned long); static unsigned long (*raOpenCodec2)(unsigned long); static unsigned long (*raSetFlavor)(unsigned long,unsigned long); -static void (*raSetDLLAccessPath)(unsigned long); +//static void (*raSetDLLAccessPath)(unsigned long); static void (*raSetPwd)(char*,char*); typedef struct { @@ -78,12 +78,12 @@ raOpenCodec2 = dlsym(handle, "RAOpenCodec2"); raInitDecoder = dlsym(handle, "RAInitDecoder"); raSetFlavor = dlsym(handle, "RASetFlavor"); - raSetDLLAccessPath = dlsym(handle, "SetDLLAccessPath"); +// raSetDLLAccessPath = dlsym(handle, "SetDLLAccessPath"); raSetPwd = dlsym(handle, "RASetPwd"); // optional, used by SIPR if(!raCloseCodec || !raDecode || !raFlush || !raFreeDecoder || !raGetFlavorProperty || !raOpenCodec2 || !raSetFlavor || - !raSetDLLAccessPath || !raInitDecoder){ + /*!raSetDLLAccessPath ||*/ !raInitDecoder){ mp_msg(MSGT_DECAUDIO,MSGL_WARN,"Cannot resolve symbols - incompatible dll\n"); return 0; }