# HG changeset patch # User diego # Date 1058652316 0 # Node ID 2e46e51269c13f0e526a0e9456159dcee54c02c4 # Parent 8d7ca7c06ca6d8b46ff6275ee3c78dd2a0f68799 Win32 codec paths in vd_realvid.c Patch by Glyn Kennington . diff -r 8d7ca7c06ca6 -r 2e46e51269c1 libmpcodecs/ad_realaud.c --- a/libmpcodecs/ad_realaud.c Sat Jul 19 21:41:53 2003 +0000 +++ b/libmpcodecs/ad_realaud.c Sat Jul 19 22:05:16 2003 +0000 @@ -223,7 +223,7 @@ if (strstr(sh->codec->dll,".dll") || !load_syms_linux(path)) #endif #ifdef USE_WIN32DLL - if (!load_sysm_windows(path)) + if (!load_sysm_windows(sh->codec->dll)) #endif { mp_msg(MSGT_DECVIDEO, MSGL_ERR, MSGTR_MissingDLLcodec, sh->codec->dll); diff -r 8d7ca7c06ca6 -r 2e46e51269c1 libmpcodecs/vd_realvid.c --- a/libmpcodecs/vd_realvid.c Sat Jul 19 21:41:53 2003 +0000 +++ b/libmpcodecs/vd_realvid.c Sat Jul 19 22:05:16 2003 +0000 @@ -211,7 +211,7 @@ if(strstr(sh->codec->dll,".dll") || !load_syms_linux(path)) #endif #ifdef USE_WIN32DLL - if (!load_syms_windows(path)) + if (!load_syms_windows(sh->codec->dll)) #endif { mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_MissingDLLcodec,sh->codec->dll);