mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-30 13:41:48 +00:00
gst-inspect: Fix indention for printing typefinder features
This commit is contained in:
parent
7691a82f3a
commit
2b49726d8e
1 changed files with 2 additions and 2 deletions
|
@ -1234,7 +1234,7 @@ print_plugin_features (GstPlugin * plugin)
|
||||||
if (extensions) {
|
if (extensions) {
|
||||||
guint i = 0;
|
guint i = 0;
|
||||||
|
|
||||||
g_print ("%s: %s: ", gst_plugin_get_name (plugin),
|
g_print (" %s: %s: ", gst_plugin_get_name (plugin),
|
||||||
gst_plugin_feature_get_name (feature));
|
gst_plugin_feature_get_name (feature));
|
||||||
while (extensions[i]) {
|
while (extensions[i]) {
|
||||||
g_print ("%s%s", i > 0 ? ", " : "", extensions[i]);
|
g_print ("%s%s", i > 0 ? ", " : "", extensions[i]);
|
||||||
|
@ -1242,7 +1242,7 @@ print_plugin_features (GstPlugin * plugin)
|
||||||
}
|
}
|
||||||
g_print ("\n");
|
g_print ("\n");
|
||||||
} else
|
} else
|
||||||
g_print ("%s: %s: no extensions\n", gst_plugin_get_name (plugin),
|
g_print (" %s: %s: no extensions\n", gst_plugin_get_name (plugin),
|
||||||
gst_plugin_feature_get_name (feature));
|
gst_plugin_feature_get_name (feature));
|
||||||
|
|
||||||
num_typefinders++;
|
num_typefinders++;
|
||||||
|
|
Loading…
Reference in a new issue