From 588e054e6d8213178959250ddcdcd99095ea5963 Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Tue, 17 Apr 2018 09:33:02 -0300 Subject: [PATCH] debug: Make PADS debug background blue Red on red was... suboptimal! https://bugzilla.gnome.org/show_bug.cgi?id=795330 --- gst/gstinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gstinfo.c b/gst/gstinfo.c index 2f6a630780..2dcf04d5bc 100644 --- a/gst/gstinfo.c +++ b/gst/gstinfo.c @@ -406,7 +406,7 @@ _priv_gst_debug_init (void) GST_CAT_ELEMENT_PADS = _gst_debug_category_new ("GST_ELEMENT_PADS", GST_DEBUG_BOLD | GST_DEBUG_FG_WHITE | GST_DEBUG_BG_RED, NULL); GST_CAT_PADS = _gst_debug_category_new ("GST_PADS", - GST_DEBUG_BOLD | GST_DEBUG_FG_RED | GST_DEBUG_BG_RED, NULL); + GST_DEBUG_BOLD | GST_DEBUG_FG_RED | GST_DEBUG_BG_BLUE, NULL); GST_CAT_PERFORMANCE = _gst_debug_category_new ("GST_PERFORMANCE", GST_DEBUG_BOLD | GST_DEBUG_FG_WHITE | GST_DEBUG_BG_RED, NULL); GST_CAT_PIPELINE = _gst_debug_category_new ("GST_PIPELINE",