Home
last modified time | relevance | path

Searched refs:colorinfo (Results 1 – 2 of 2) sorted by relevance

/third_party/gstreamer/gstreamer/gst/
Dgstinfo.c1041 gst_debug_construct_term_color (guint colorinfo) in gst_debug_construct_term_color() argument
1047 if (colorinfo & GST_DEBUG_BOLD) { in gst_debug_construct_term_color()
1050 if (colorinfo & GST_DEBUG_UNDERLINE) { in gst_debug_construct_term_color()
1053 if (colorinfo & GST_DEBUG_FG_MASK) { in gst_debug_construct_term_color()
1054 g_string_append_printf (color, ";3%1d", colorinfo & GST_DEBUG_FG_MASK); in gst_debug_construct_term_color()
1056 if (colorinfo & GST_DEBUG_BG_MASK) { in gst_debug_construct_term_color()
1058 (colorinfo & GST_DEBUG_BG_MASK) >> 4); in gst_debug_construct_term_color()
1078 gst_debug_construct_win_color (guint colorinfo) in gst_debug_construct_win_color() argument
1104 if ((colorinfo & (GST_DEBUG_FG_MASK | GST_DEBUG_BG_MASK)) == 0) { in gst_debug_construct_win_color()
1107 if (colorinfo & GST_DEBUG_UNDERLINE) { in gst_debug_construct_win_color()
[all …]
Dgstinfo.h521 gchar * gst_debug_construct_term_color (guint colorinfo);
524 gint gst_debug_construct_win_color (guint colorinfo);
1550 #define gst_debug_construct_term_color(colorinfo) (g_strdup ("00")) argument
1551 #define gst_debug_construct_win_color(colorinfo) (0) argument