From 2cb99396df0ee23d0c7fa12bb70d69ed45775978 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 4 Sep 2010 01:32:50 +0000 Subject: My name is David. :) git-svn-id: http://svn.drobilla.net/lad/trunk/omins@2590 a436a847-0d15-0410-975c-d299462d15a1 --- AUTHORS | 2 +- src/fast_crossfade_4410.c | 2 +- src/formant_filter_4300.c | 6 +++--- src/hz_voct_4200.c | 6 +++--- src/masher_4310.c | 2 +- src/multiplexer_4420.c | 2 +- src/power_4400.c | 2 +- src/range_trans_4210.c | 6 +++--- src/sample_and_hold_4430.c | 2 +- 9 files changed, 15 insertions(+), 15 deletions(-) diff --git a/AUTHORS b/AUTHORS index e799fcf..98892d0 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,6 +1,6 @@ Authors: -Dave Robillard +David Robillard Loki Davison diff --git a/src/fast_crossfade_4410.c b/src/fast_crossfade_4410.c index 3089859..1898175 100644 --- a/src/fast_crossfade_4410.c +++ b/src/fast_crossfade_4410.c @@ -1,5 +1,5 @@ /* Crossfade with AR Level plugin. Copyright (C) 2005 Thorsten Wilms. - * Based on Dave Robillard's "Hz to AMS style V/Oct" plugin for the skeleton. + * Based on David Robillard's "Hz to AMS style V/Oct" plugin for the skeleton. * Thanks to Florian Schmidt for explaining how to calculate the scale values * before I could work it out myself! ;-) * diff --git a/src/formant_filter_4300.c b/src/formant_filter_4300.c index a10e48b..c80af3f 100644 --- a/src/formant_filter_4300.c +++ b/src/formant_filter_4300.c @@ -1,4 +1,4 @@ -/* Formant filter plugin. Copyright (C) 2005-2009 Dave Robillard. +/* Formant filter plugin. Copyright (C) 2005-2009 David Robillard. * * Based on SSM formant filter, * Copyright (C) 2001 David Griffiths @@ -231,7 +231,7 @@ _init() formant_vc_desc->Label = strdup("formant_vc"); formant_vc_desc->Properties = LADSPA_PROPERTY_HARD_RT_CAPABLE; formant_vc_desc->Name = strdup("Formant Filter (CR vowel)"); - formant_vc_desc->Maker = strdup("Dave Robillard"); + formant_vc_desc->Maker = strdup("David Robillard"); formant_vc_desc->Copyright = strdup("GPL"); formant_vc_desc->PortCount = FORMANT_NUM_PORTS; port_descriptors = (LADSPA_PortDescriptor*)calloc(FORMANT_NUM_PORTS, sizeof(LADSPA_PortDescriptor)); @@ -269,7 +269,7 @@ _init() formant_va_desc->Label = strdup("formant_va"); formant_va_desc->Properties = LADSPA_PROPERTY_HARD_RT_CAPABLE; formant_va_desc->Name = strdup("Formant Filter (AR vowel)"); - formant_va_desc->Maker = strdup("Dave Robillard"); + formant_va_desc->Maker = strdup("David Robillard"); formant_va_desc->Copyright = strdup("GPL"); formant_va_desc->PortCount = FORMANT_NUM_PORTS; port_descriptors = (LADSPA_PortDescriptor*)calloc(FORMANT_NUM_PORTS, sizeof(LADSPA_PortDescriptor)); diff --git a/src/hz_voct_4200.c b/src/hz_voct_4200.c index 8360743..86c8dae 100644 --- a/src/hz_voct_4200.c +++ b/src/hz_voct_4200.c @@ -1,4 +1,4 @@ -/* Hz to AMS style V/Oct plugin. Copyright (C) 2005-2009 Dave Robillard. +/* Hz to AMS style V/Oct plugin. Copyright (C) 2005-2009 David Robillard. * * This plugin is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free @@ -138,7 +138,7 @@ _init() hz_voct_cr_desc->Label = strdup("hz_voct_cr"); hz_voct_cr_desc->Properties = LADSPA_PROPERTY_HARD_RT_CAPABLE; hz_voct_cr_desc->Name = strdup("Hz to V/Oct Converter (CR)"); - hz_voct_cr_desc->Maker = strdup("Dave Robillard"); + hz_voct_cr_desc->Maker = strdup("David Robillard"); hz_voct_cr_desc->Copyright = strdup("GPL"); hz_voct_cr_desc->PortCount = HZVOCT_NUM_PORTS; port_descriptors = (LADSPA_PortDescriptor*)calloc(HZVOCT_NUM_PORTS, sizeof(LADSPA_PortDescriptor)); @@ -170,7 +170,7 @@ _init() hz_voct_ar_desc->Label = strdup("hz_voct_ar"); hz_voct_ar_desc->Properties = LADSPA_PROPERTY_HARD_RT_CAPABLE; hz_voct_ar_desc->Name = strdup("Hz to V/Oct Converter (AR)"); - hz_voct_ar_desc->Maker = strdup("Dave Robillard"); + hz_voct_ar_desc->Maker = strdup("David Robillard"); hz_voct_ar_desc->Copyright = strdup("GPL"); hz_voct_ar_desc->PortCount = HZVOCT_NUM_PORTS; port_descriptors = (LADSPA_PortDescriptor*)calloc(HZVOCT_NUM_PORTS, sizeof(LADSPA_PortDescriptor)); diff --git a/src/masher_4310.c b/src/masher_4310.c index 374b43d..67e49a4 100644 --- a/src/masher_4310.c +++ b/src/masher_4310.c @@ -1,6 +1,6 @@ /* Masher * Copyright (C) 2001 David Griffiths - * LADSPAfication (C) 2005 Dave Robillard + * LADSPAfication (C) 2005 David Robillard * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/multiplexer_4420.c b/src/multiplexer_4420.c index 624e6c8..ce7c192 100644 --- a/src/multiplexer_4420.c +++ b/src/multiplexer_4420.c @@ -1,5 +1,5 @@ /* Multiplxer plugin. Copyright (C) 2005 Thorsten Wilms. - * GATEd on Dave Robillard's "Hz to AMS style V/Oct" plugin for the skeleton. + * GATEd on David Robillard's "Hz to AMS style V/Oct" plugin for the skeleton. * * This plugin is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free diff --git a/src/power_4400.c b/src/power_4400.c index befd373..b2925dd 100644 --- a/src/power_4400.c +++ b/src/power_4400.c @@ -1,5 +1,5 @@ /* Base to the power of Exponent plugin. Copyright (C) 2005 Thorsten Wilms. - * Based on Dave Robillard's "Hz to AMS style V/Oct" plugin for the skeleton, + * Based on David Robillard's "Hz to AMS style V/Oct" plugin for the skeleton, * and there's not much else in here :). * * This plugin is free software; you can redistribute it and/or modify it under diff --git a/src/range_trans_4210.c b/src/range_trans_4210.c index bc12b39..e2266ef 100644 --- a/src/range_trans_4210.c +++ b/src/range_trans_4210.c @@ -1,4 +1,4 @@ -/* This file is an audio plugin. Copyright (C) 2005-2009 Dave Robillard. +/* This file is an audio plugin. Copyright (C) 2005-2009 David Robillard. * * This plugin is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free @@ -153,7 +153,7 @@ _init() range_trans_cr_desc->Label = strdup("range_trans_cr"); range_trans_cr_desc->Properties = LADSPA_PROPERTY_HARD_RT_CAPABLE; range_trans_cr_desc->Name = strdup("Range Translator (CR Controls)"); - range_trans_cr_desc->Maker = strdup("Dave Robillard"); + range_trans_cr_desc->Maker = strdup("David Robillard"); range_trans_cr_desc->Copyright = strdup("GPL"); range_trans_cr_desc->PortCount = RANGETRANS_NUM_PORTS; port_descriptors = (LADSPA_PortDescriptor*)calloc(RANGETRANS_NUM_PORTS, sizeof(LADSPA_PortDescriptor)); @@ -197,7 +197,7 @@ _init() range_trans_ar_desc->Label = strdup("range_trans_ar"); range_trans_ar_desc->Properties = LADSPA_PROPERTY_HARD_RT_CAPABLE; range_trans_ar_desc->Name = strdup("Range Translator (AR Controls)"); - range_trans_ar_desc->Maker = strdup("Dave Robillard"); + range_trans_ar_desc->Maker = strdup("David Robillard"); range_trans_ar_desc->Copyright = strdup("GPL"); range_trans_ar_desc->PortCount = RANGETRANS_NUM_PORTS; port_descriptors = (LADSPA_PortDescriptor*)calloc(RANGETRANS_NUM_PORTS, sizeof(LADSPA_PortDescriptor)); diff --git a/src/sample_and_hold_4430.c b/src/sample_and_hold_4430.c index 652f26e..ae5144d 100644 --- a/src/sample_and_hold_4430.c +++ b/src/sample_and_hold_4430.c @@ -1,5 +1,5 @@ /* Sample and Hold. Copyright (C) 2005 Thorsten Wilms. - * Based on Dave Robillard's "Hz to AMS style V/Oct" plugin for the skeleton. + * Based on David Robillard's "Hz to AMS style V/Oct" plugin for the skeleton. * * This plugin is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free -- cgit v1.2.1