clap

CLAP Audio Plugin API
Log | Files | Refs | README | LICENSE

commit cf9a80710ea19b46aa94125574f74ebe7faee2b0
parent d017f79eb65300dd6e42bcc17ed15d2eae1ead37
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date:   Mon, 17 Nov 2014 23:13:26 +0100

Remove feedback loop.

Diffstat:
Minclude/clap/clap-ports.h | 2--
Minclude/clap/clap.h | 7-------
2 files changed, 0 insertions(+), 9 deletions(-)

diff --git a/include/clap/clap-ports.h b/include/clap/clap-ports.h @@ -16,7 +16,6 @@ enum clap_port_role { CLAP_PORT_INOUT = 0, CLAP_PORT_SIDECHAIN = 1, - CLAP_PORT_FEEDBACK = 2, }; struct clap_port_info @@ -24,7 +23,6 @@ struct clap_port_info enum clap_port_type type; enum clap_port_role role; char name[CLAP_NAME_SIZE]; - uint32_t stream_id; // used to connect feedback loops bool is_repeatable; }; diff --git a/include/clap/clap.h b/include/clap/clap.h @@ -93,7 +93,6 @@ union clap_param_value int32_t i; }; - //////////// // EVENTS // //////////// @@ -194,12 +193,6 @@ struct clap_process float **output; uint32_t samples_count; - /* feedback loops */ - void (*feedback)(struct clap_process *process, - uint32_t stream_id, - uint32_t nb_samples); - uint32_t feedback_chunk_size; - /* process info */ bool is_offline; uint32_t tempo; // the tempo in samples