From 72c43adda6efd1dfd169fb660e2c0ff0498ac286 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Thu, 23 Feb 2023 22:55:15 +0100 Subject: [PATCH] Mark the Spectral Compressor struct as pub For testing with standalones. --- plugins/spectral_compressor/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/spectral_compressor/src/lib.rs b/plugins/spectral_compressor/src/lib.rs index e1cef6ce..39a9c231 100644 --- a/plugins/spectral_compressor/src/lib.rs +++ b/plugins/spectral_compressor/src/lib.rs @@ -44,7 +44,7 @@ const MAX_OVERLAP_ORDER: usize = 5; const MAX_OVERLAP_TIMES: usize = 1 << MAX_OVERLAP_ORDER; // 32 /// This is a port of . -struct SpectralCompressor { +pub struct SpectralCompressor { params: Arc, editor_state: Arc,