From b9a2f890895a7747835cd43ba2e2cbbc538a9f11 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sat, 8 Oct 2022 17:57:43 +0200 Subject: [PATCH] Remove commented out process setup field --- src/wine-host/bridges/clap.h | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/wine-host/bridges/clap.h b/src/wine-host/bridges/clap.h index a5bf9100..d61a6e80 100644 --- a/src/wine-host/bridges/clap.h +++ b/src/wine-host/bridges/clap.h @@ -160,20 +160,6 @@ struct ClapPluginInstance { * it, so we're also preventing this for CLAP as a precaution. */ bool is_initialized = false; - - // TODO: Add this when we add support for audio processing - // /** - // * The plugin's current process setup, containing information about the - // * buffer sizes, sample rate, and processing mode. Used for setting up - // * shared memory audio buffers, and to know whether the plugin instance - // is - // * currently in offline processing mode or not. The latter is needed as a - // * HACK for IK Multimedia's T-RackS 5 because those plugins will deadlock - // if - // * they don't process audio from the GUI thread while doing offline - // * processing. - // */ - // std::optional process_setup; }; /**