Mercurial > mplayer.hg
changeset 17721:7b336a5585e4
Reduce Real DLL/so loading verbosity, OKed by Roberto.
author | diego |
---|---|
date | Fri, 03 Mar 2006 22:38:46 +0000 |
parents | 63755b0aca46 |
children | 6aa7f7e427a0 |
files | libmpcodecs/ad_realaud.c libmpcodecs/vd_realvid.c |
diffstat | 2 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpcodecs/ad_realaud.c Fri Mar 03 22:33:30 2006 +0000 +++ b/libmpcodecs/ad_realaud.c Fri Mar 03 22:38:46 2006 +0000 @@ -121,7 +121,7 @@ { 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 @@ { 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
--- a/libmpcodecs/vd_realvid.c Fri Mar 03 22:33:30 2006 +0000 +++ b/libmpcodecs/vd_realvid.c Fri Mar 03 22:38:46 2006 +0000 @@ -103,7 +103,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) { mp_msg(MSGT_DECVIDEO,MSGL_WARN,"Error: %s\n",dlerror()); @@ -160,7 +160,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