mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-04 15:19:57 +00:00
tracer: parse parameters
This commit is contained in:
parent
ce7ce2d866
commit
81b27c7036
1 changed files with 11 additions and 3 deletions
|
@ -208,15 +208,23 @@ _priv_gst_tracer_init (void)
|
|||
GstTracerFactory *factory;
|
||||
GstTracerHook mask;
|
||||
GstTracer *tracer;
|
||||
gchar **t = g_strsplit_set (env, ",", 0);
|
||||
gchar **t = g_strsplit_set (env, ";", 0);
|
||||
gint i = 0, j;
|
||||
gchar *params;
|
||||
|
||||
GST_INFO ("enabling tracers: '%s'", env);
|
||||
|
||||
while (t[i]) {
|
||||
// TODO(ensonic): check t[i] for params
|
||||
params = NULL;
|
||||
// check t[i] for params
|
||||
if ((params = strchr (t[i], '('))) {
|
||||
gchar *end = strchr (¶ms[1], ')');
|
||||
*params = '\0';
|
||||
params++;
|
||||
if (end)
|
||||
*end = '\0';
|
||||
} else {
|
||||
params = NULL;
|
||||
}
|
||||
|
||||
GST_INFO ("checking tracer: '%s'", t[i]);
|
||||
|
||||
|
|
Loading…
Reference in a new issue