Reduce Real DLL/so loading verbosity, OKed by Roberto.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17722 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2006-03-03 22:38:46 +00:00
parent d87111a794
commit 434c3d0218
2 changed files with 4 additions and 4 deletions

View File

@ -121,7 +121,7 @@ static int load_syms_linux(char *path)
{
void *handle;
mp_msg(MSGT_DECVIDEO, MSGL_INFO, "opening shared obj '%s'\n", path);
mp_msg(MSGT_DECVIDEO, MSGL_V, "opening shared obj '%s'\n", path);
handle = dlopen(path, RTLD_LAZY);
if (!handle)
{
@ -168,7 +168,7 @@ static int load_syms_windows(char *path)
{
void *handle;
mp_msg(MSGT_DECVIDEO, MSGL_INFO, "opening win32 dll '%s'\n", path);
mp_msg(MSGT_DECVIDEO, MSGL_V, "opening win32 dll '%s'\n", path);
#ifdef WIN32_LOADER
Setup_LDT_Keeper();
#endif

View File

@ -103,7 +103,7 @@ static int control(sh_video_t *sh,int cmd,void* arg,...){
static int load_syms_linux(char *path) {
void *handle;
mp_msg(MSGT_DECVIDEO,MSGL_INFO, "opening shared obj '%s'\n", path);
mp_msg(MSGT_DECVIDEO,MSGL_V, "opening shared obj '%s'\n", path);
handle = dlopen (path, RTLD_LAZY);
if (!handle) {
mp_msg(MSGT_DECVIDEO,MSGL_WARN,"Error: %s\n",dlerror());
@ -160,7 +160,7 @@ int WINAPI FreeLibrary(void *handle);
static int load_syms_windows(char *path) {
void *handle;
mp_msg(MSGT_DECVIDEO,MSGL_INFO, "opening win32 dll '%s'\n", path);
mp_msg(MSGT_DECVIDEO,MSGL_V, "opening win32 dll '%s'\n", path);
#ifdef WIN32_LOADER
Setup_LDT_Keeper();
#endif