@@ -1,6 +1,6 @@ | |||||
/* | /* | ||||
* DISTRHO Nekobi Plugin, based on Nekobee by Sean Bolton and others. | * DISTRHO Nekobi Plugin, based on Nekobee by Sean Bolton and others. | ||||
* Copyright (C) 2013-2014 Filipe Coelho <falktx@falktx.com> | |||||
* Copyright (C) 2013-2015 Filipe Coelho <falktx@falktx.com> | |||||
* | * | ||||
* This program is free software; you can redistribute it and/or | * This program is free software; you can redistribute it and/or | ||||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU General Public License as | ||||
@@ -26,6 +26,7 @@ | |||||
#define DISTRHO_PLUGIN_NUM_INPUTS 0 | #define DISTRHO_PLUGIN_NUM_INPUTS 0 | ||||
#define DISTRHO_PLUGIN_NUM_OUTPUTS 1 | #define DISTRHO_PLUGIN_NUM_OUTPUTS 1 | ||||
#define DISTRHO_PLUGIN_IS_RT_SAFE 1 | |||||
#define DISTRHO_PLUGIN_WANT_LATENCY 0 | #define DISTRHO_PLUGIN_WANT_LATENCY 0 | ||||
#define DISTRHO_PLUGIN_WANT_PROGRAMS 0 | #define DISTRHO_PLUGIN_WANT_PROGRAMS 0 | ||||
#define DISTRHO_PLUGIN_WANT_STATE 0 | #define DISTRHO_PLUGIN_WANT_STATE 0 | ||||
@@ -1,7 +1,7 @@ | |||||
/* | /* | ||||
* DISTRHO Nekobi Plugin, based on Nekobee by Sean Bolton and others. | * DISTRHO Nekobi Plugin, based on Nekobee by Sean Bolton and others. | ||||
* Copyright (C) 2004 Sean Bolton and others | * Copyright (C) 2004 Sean Bolton and others | ||||
* Copyright (C) 2013-2014 Filipe Coelho <falktx@falktx.com> | |||||
* Copyright (C) 2013-2015 Filipe Coelho <falktx@falktx.com> | |||||
* | * | ||||
* This program is free software; you can redistribute it and/or | * This program is free software; you can redistribute it and/or | ||||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU General Public License as | ||||
@@ -47,11 +47,6 @@ bool dssp_voicelist_mutex_trylock(nekobee_synth_t* const synth) | |||||
return true; | return true; | ||||
} | } | ||||
bool dssp_voicelist_mutex_lock(nekobee_synth_t* const synth) | |||||
{ | |||||
return (pthread_mutex_lock(&synth->voicelist_mutex) == 0); | |||||
} | |||||
bool dssp_voicelist_mutex_unlock(nekobee_synth_t* const synth) | bool dssp_voicelist_mutex_unlock(nekobee_synth_t* const synth) | ||||
{ | { | ||||
return (pthread_mutex_unlock(&synth->voicelist_mutex) == 0); | return (pthread_mutex_unlock(&synth->voicelist_mutex) == 0); | ||||
@@ -1,7 +1,7 @@ | |||||
/* | /* | ||||
* DISTRHO Nekobi Plugin, based on Nekobee by Sean Bolton and others. | * DISTRHO Nekobi Plugin, based on Nekobee by Sean Bolton and others. | ||||
* Copyright (C) 2004 Sean Bolton and others | * Copyright (C) 2004 Sean Bolton and others | ||||
* Copyright (C) 2013-2014 Filipe Coelho <falktx@falktx.com> | |||||
* Copyright (C) 2013-2015 Filipe Coelho <falktx@falktx.com> | |||||
* | * | ||||
* This program is free software; you can redistribute it and/or | * This program is free software; you can redistribute it and/or | ||||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU General Public License as | ||||
@@ -1,6 +1,6 @@ | |||||
/* | /* | ||||
* DISTRHO Nekobi Plugin, based on Nekobee by Sean Bolton and others. | * DISTRHO Nekobi Plugin, based on Nekobee by Sean Bolton and others. | ||||
* Copyright (C) 2013-2014 Filipe Coelho <falktx@falktx.com> | |||||
* Copyright (C) 2013-2015 Filipe Coelho <falktx@falktx.com> | |||||
* | * | ||||
* This program is free software; you can redistribute it and/or | * This program is free software; you can redistribute it and/or | ||||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU General Public License as | ||||
@@ -1,6 +1,6 @@ | |||||
/* | /* | ||||
* DISTRHO Nekobi Plugin, based on Nekobee by Sean Bolton and others. | * DISTRHO Nekobi Plugin, based on Nekobee by Sean Bolton and others. | ||||
* Copyright (C) 2013-2014 Filipe Coelho <falktx@falktx.com> | |||||
* Copyright (C) 2013-2015 Filipe Coelho <falktx@falktx.com> | |||||
* | * | ||||
* This program is free software; you can redistribute it and/or | * This program is free software; you can redistribute it and/or | ||||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU General Public License as | ||||
@@ -1,6 +1,6 @@ | |||||
/* | /* | ||||
* Neko widget animation | * Neko widget animation | ||||
* Copyright (C) 2013-2014 Filipe Coelho <falktx@falktx.com> | |||||
* Copyright (C) 2013-2015 Filipe Coelho <falktx@falktx.com> | |||||
* | * | ||||
* This program is free software; you can redistribute it and/or | * This program is free software; you can redistribute it and/or | ||||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU General Public License as | ||||