-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More tweaks to jack2 MOD build, jackbridge for portaudio
Signed-off-by: falkTX <falktx@falktx.com>
- Loading branch information
Showing
4 changed files
with
2,744 additions
and
11 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
diff --git a/common/JackInternalClient.cpp b/common/JackInternalClient.cpp | ||
index 6b4dd75..a428c97 100644 | ||
--- a/common/JackInternalClient.cpp | ||
+++ b/common/JackInternalClient.cpp | ||
@@ -73,6 +73,10 @@ int JackInternalClient::Open(const char* server_name, const char* name, jack_uui | ||
int result; | ||
jack_log("JackInternalClient::Open name = %s", name); | ||
|
||
+ // ignore client from alsa-plugins | ||
+ if (strncmp(name, "alsa-jack.", 10) == 0) | ||
+ return -1; | ||
+ | ||
if (strlen(name) >= JACK_CLIENT_NAME_SIZE) { | ||
jack_error("\"%s\" is too long to be used as a JACK client name.\n" | ||
"Please use %lu characters or less", |
Oops, something went wrong.