diff --git a/subprojects/gstreamer/gst/gstinfo.c b/subprojects/gstreamer/gst/gstinfo.c index 248d49d5bf..0ed428ded1 100644 --- a/subprojects/gstreamer/gst/gstinfo.c +++ b/subprojects/gstreamer/gst/gstinfo.c @@ -2126,6 +2126,8 @@ parse_debug_level (gchar * str, GstDebugLevel * level) } else { return FALSE; } + } else if (strcmp (str, "NONE") == 0) { + *level = GST_LEVEL_NONE; } else if (strcmp (str, "ERROR") == 0) { *level = GST_LEVEL_ERROR; } else if (strncmp (str, "WARN", 4) == 0) {