Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nicolas Dufresne
gstreamer
Commits
5dba53a6
Commit
5dba53a6
authored
Nov 29, 2018
by
Zeeshan Ali
Browse files
gst-inspect: Fix colors for "URI handling" section
They seemed incompatible with other colors.
parent
d3fa67c0
Changes
1
Show whitespace changes
Inline
Side-by-side
tools/gst-inspect.c
View file @
5dba53a6
...
...
@@ -847,16 +847,14 @@ print_uri_handler_info (GstElement * element)
uri_protocols
=
gst_uri_handler_get_protocols
(
GST_URI_HANDLER
(
element
));
n_print
(
"
\n
"
);
n_print
(
"%sURI handling capabilities:%s
\n
"
,
PROP_NAME
_COLOR
,
RESET_COLOR
);
n_print
(
"%sURI handling capabilities:%s
\n
"
,
HEADING
_COLOR
,
RESET_COLOR
);
push_indent
();
n_print
(
"%sElement can act as %s.%s
\n
"
,
PROP_VALUE_COLOR
,
uri_type
,
RESET_COLOR
);
n_print
(
"%sElement can act as %s.%s
\n
"
,
DESC_COLOR
,
uri_type
,
RESET_COLOR
);
if
(
uri_protocols
&&
*
uri_protocols
)
{
n_print
(
"%sSupported URI protocols%s:
\n
"
,
PROP_ATTR_NAME_COLOR
,
RESET_COLOR
);
n_print
(
"%sSupported URI protocols%s:
\n
"
,
DESC_COLOR
,
RESET_COLOR
);
push_indent
();
for
(;
*
uri_protocols
!=
NULL
;
uri_protocols
++
)
n_print
(
"%s%s%s
\n
"
,
PROP_ATTR_VALUE_COLOR
,
*
uri_protocols
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment