summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libmpcodecs/ad_realaud.c4
-rw-r--r--libmpcodecs/vd_realvid.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/libmpcodecs/ad_realaud.c b/libmpcodecs/ad_realaud.c
index 2d4361f9ea..2517f2c349 100644
--- a/libmpcodecs/ad_realaud.c
+++ b/libmpcodecs/ad_realaud.c
@@ -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
diff --git a/libmpcodecs/vd_realvid.c b/libmpcodecs/vd_realvid.c
index f0f917ea1e..4a0702bb85 100644
--- a/libmpcodecs/vd_realvid.c
+++ b/libmpcodecs/vd_realvid.c
@@ -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