[MPlayer-cvslog] CVS: main/libmpcodecs ad_realaud.c, 1.39, 1.40 vd_realvid.c, 1.32, 1.33
Diego Biurrun CVS
syncmail at mplayerhq.hu
Fri Mar 3 23:38:48 CET 2006
CVS change done by Diego Biurrun CVS
Update of /cvsroot/mplayer/main/libmpcodecs
In directory mail:/var2/tmp/cvs-serv3078/libmpcodecs
Modified Files:
ad_realaud.c vd_realvid.c
Log Message:
Reduce Real DLL/so loading verbosity, OKed by Roberto.
Index: ad_realaud.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/ad_realaud.c,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ad_realaud.c 9 Dec 2005 16:25:36 -0000 1.39
+++ ad_realaud.c 3 Mar 2006 22:38:46 -0000 1.40
@@ -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
Index: vd_realvid.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vd_realvid.c,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- vd_realvid.c 18 Nov 2005 14:39:22 -0000 1.32
+++ vd_realvid.c 3 Mar 2006 22:38:46 -0000 1.33
@@ -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
More information about the MPlayer-cvslog
mailing list