mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 16:26:39 +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;
|
||||
|
||||
for (i = 0; i < argc; i++) {
|
||||
if (g_strcmp0 (argv[i], "playbin") == 0) {
|
||||
if (g_ascii_strncasecmp (argv[i], "playbin", 7) == 0) {
|
||||
return TRUE;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue