mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 14:08:56 +00:00
tools: Fix playbin detection
We might be using playbin3 instead
This commit is contained in:
parent
b77797da4b
commit
b413f3a404
1 changed files with 1 additions and 1 deletions
|
@ -212,7 +212,7 @@ _is_playbin_pipeline (int argc, gchar ** argv)
|
||||||
gint i;
|
gint i;
|
||||||
|
|
||||||
for (i = 0; i < argc; i++) {
|
for (i = 0; i < argc; i++) {
|
||||||
if (g_strcmp0 (argv[i], "playbin") == 0) {
|
if (g_ascii_strncasecmp (argv[i], "playbin", 7) == 0) {
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue