This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 3507214a30a9b615faf7d0998defdde69864f386 Mon Sep 17 00:00:00 2001 | |
From: Kieran Bingham <[email protected]> | |
Date: Sun, 30 Oct 2022 22:12:38 +0000 | |
Subject: [PATCH] gstreamer: provider: Support builds with | |
GST_DISABLE_GST_DEBUG | |
MIME-Version: 1.0 | |
Content-Type: text/plain; charset=UTF-8 | |
Content-Transfer-Encoding: 8bit | |
When the host system packages gstreamer with GST_DISABLE_GST_DEBUG defined, the |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/awk -f | |
function initialiseControls(ids, keys, controls) | |
{ | |
split(ids, keys) | |
for (i in keys) { | |
controls[keys[i]] = "--------" | |
# Track the maximum key length | |
len = length(keys[i]) |
OlderNewer