1
0
Fork 0

Mark the Spectral Compressor struct as pub

For testing with standalones.
This commit is contained in:
Robbert van der Helm 2023-02-23 22:55:15 +01:00
parent 3ca24bdc8c
commit 72c43adda6

View file

@ -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 <https://github.com/robbert-vdh/spectral-compressor/>.
struct SpectralCompressor {
pub struct SpectralCompressor {
params: Arc<SpectralCompressorParams>,
editor_state: Arc<ViziaState>,