mirror of
https://gitlab.com/then-try-this/samplebrain.git
synced 2025-07-04 03:03:34 +00:00
Compare commits
3 Commits
developmen
...
production
Author | SHA1 | Date | |
---|---|---|---|
30e290dcbd | |||
032fd7c039 | |||
a8ea957f45 |
@ -34,10 +34,6 @@ both the target and brain samples). The original samples used to
|
|||||||
create the demo session [can be found here for
|
create the demo session [can be found here for
|
||||||
testing](https://static.thentrythis.org/samplebrain/samples/).
|
testing](https://static.thentrythis.org/samplebrain/samples/).
|
||||||
|
|
||||||
# Community
|
|
||||||
|
|
||||||
* https://www.reddit.com/r/samplebrain/
|
|
||||||
|
|
||||||
# Download
|
# Download
|
||||||
|
|
||||||
As this is experimental non-commercial software (only originally
|
As this is experimental non-commercial software (only originally
|
||||||
|
@ -60,7 +60,7 @@ void OSC_server::error_handler(int num, const char *msg, const char *path) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int OSC_server::default_handler(const char *path, const char *types, lo_arg **argv,
|
int OSC_server::default_handler(const char *path, const char *types, lo_arg **argv,
|
||||||
int argc, void *data, void *user_data) {
|
int argc, lo_message data, void *user_data) {
|
||||||
OSC_server *server = (OSC_server*)user_data;
|
OSC_server *server = (OSC_server*)user_data;
|
||||||
if (!server) return -1;
|
if (!server) return -1;
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@ public:
|
|||||||
bool ok() { return m_server!=NULL; }
|
bool ok() { return m_server!=NULL; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
static int default_handler(const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data);
|
static int default_handler(const char *path, const char *types, lo_arg **argv, int argc, lo_message data, void *user_data);
|
||||||
static void error_handler(int num, const char *m, const char *path);
|
static void error_handler(int num, const char *m, const char *path);
|
||||||
|
|
||||||
lo_server_thread m_server;
|
lo_server_thread m_server;
|
||||||
|
Reference in New Issue
Block a user