From 79bfcc9f1a4c7803de3d85ef93fbdd26c88e3342 Mon Sep 17 00:00:00 2001 From: alex Date: Tue, 27 Aug 2002 15:46:41 +0000 Subject: SetDLLAccessPath isn't used. Patch by Andres Hess git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7098 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpcodecs/ad_real.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libmpcodecs') diff --git a/libmpcodecs/ad_real.c b/libmpcodecs/ad_real.c index cc70501f1d..03b4b2aecc 100644 --- a/libmpcodecs/ad_real.c +++ b/libmpcodecs/ad_real.c @@ -42,7 +42,7 @@ static unsigned long (*raGetFlavorProperty)(unsigned long,unsigned long,unsigned 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 @@ static int preinit(sh_audio_t *sh){ 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; } -- cgit v1.2.3