summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-08-27 15:46:41 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-08-27 15:46:41 +0000
commit79bfcc9f1a4c7803de3d85ef93fbdd26c88e3342 (patch)
tree8f0102e50956046a514fb2f397c551e67adc6b3d
parent8c39272f0afb035340c9c196317bd1fbe377f4de (diff)
downloadmpv-79bfcc9f1a4c7803de3d85ef93fbdd26c88e3342.tar.bz2
mpv-79bfcc9f1a4c7803de3d85ef93fbdd26c88e3342.tar.xz
SetDLLAccessPath isn't used. Patch by Andres Hess <jaska@gmx.net>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7098 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--libmpcodecs/ad_real.c6
1 files changed, 3 insertions, 3 deletions
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;
}