From b43f88fef6044aa77264a6f743fe681061de0974 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 11 Jan 2018 11:36:53 +0000 Subject: [PATCH] info: reset default threshold to LEVEL_DEFAULT not 0 in set_threshold_from_string(). --- gst/gstinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gstinfo.c b/gst/gstinfo.c index c13a057400..1010a1acb0 100644 --- a/gst/gstinfo.c +++ b/gst/gstinfo.c @@ -1990,7 +1990,7 @@ gst_debug_set_threshold_from_string (const gchar * list, gboolean reset) g_assert (list); if (reset) - gst_debug_set_default_threshold (0); + gst_debug_set_default_threshold (GST_LEVEL_DEFAULT); split = g_strsplit (list, ",", 0);