]> git.sesse.net Git - vlc/commitdiff
logger/android: use "verbose" var
authorThomas Guillem <thomas@gllm.fr>
Tue, 10 Feb 2015 13:25:36 +0000 (14:25 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Tue, 10 Feb 2015 14:15:55 +0000 (15:15 +0100)
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
modules/logger/android.c

index f8369ffc636a103d43ad9dc7ff5a834347b2bbbd..a89eb866f2524f501e0480fdfa2846cb7f45d610 100644 (file)
 
 static const int ptr_width = 2 * /* hex digits */ sizeof (uintptr_t);
 
-static void AndroidPrintMsg(void *d, int type, const vlc_log_t *p_item,
+static void AndroidPrintMsg(void *opaque, int type, const vlc_log_t *p_item,
                             const char *format, va_list ap)
 {
     int prio;
     char *format2;
+    int verbose = (intptr_t)opaque;
+
+    if (verbose < type)
+        return;
 
     int canc = vlc_savecancel();
 
@@ -69,8 +73,12 @@ static void AndroidPrintMsg(void *d, int type, const vlc_log_t *p_item,
 
 static vlc_log_cb Open(vlc_object_t *obj, void **sysp)
 {
-    VLC_UNUSED(obj);
-    VLC_UNUSED(sysp);
+    int verbosity = var_InheritInteger(obj, "verbose");
+
+    if (verbosity < 0)
+        return NULL;
+
+    *sysp = (void *)(uintptr_t)verbosity;
 
     return AndroidPrintMsg;
 }