Skip to content

Commit

Permalink
fix mem_buf bug
Browse files Browse the repository at this point in the history
  • Loading branch information
micsthepick committed Feb 29, 2024
1 parent 4b05270 commit 6315150
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 12 deletions.
3 changes: 1 addition & 2 deletions vocalrediso.eel
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,6 @@ function process_stft_segment(fft_buffer, fft_size) local(fft_bin, left_real, le
MAX_FFT_SIZE = 32768;
fft_size = 8192;

freemem = 0;
fft_buffer = simple_alloc(MAX_FFT_SIZE*2);
window_buffer = simple_alloc(MAX_FFT_SIZE);

Expand Down Expand Up @@ -221,7 +220,7 @@ pdc_bot_ch = 0;
pdc_top_ch = 2;

/*IFJSFX{
freembuf(freemem);
freembuf(_free_memory);

@slider
}IFJSFX*/
Expand Down
3 changes: 1 addition & 2 deletions vocalrediso.jsfx
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,6 @@ function process_stft_segment(fft_buffer, fft_size) local(fft_bin, left_real, le
MAX_FFT_SIZE = 32768;
fft_size = 8192;

freemem = 0;
fft_buffer = simple_alloc(MAX_FFT_SIZE*2);
window_buffer = simple_alloc(MAX_FFT_SIZE);

Expand Down Expand Up @@ -221,7 +220,7 @@ pdc_bot_ch = 0;
pdc_top_ch = 2;


freembuf(freemem);
freembuf(_free_memory);

@slider

Expand Down
3 changes: 1 addition & 2 deletions vocalrediso.jsfx-template
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,6 @@ function process_stft_segment(fft_buffer, fft_size) local(fft_bin, left_real, le
MAX_FFT_SIZE = 32768;
fft_size = 8192;

freemem = 0;
fft_buffer = simple_alloc(MAX_FFT_SIZE*2);
window_buffer = simple_alloc(MAX_FFT_SIZE);

Expand Down Expand Up @@ -221,7 +220,7 @@ pdc_bot_ch = 0;
pdc_top_ch = 2;

/*IFJSFX{
freembuf(freemem);
freembuf(_free_memory);

@slider
}IFJSFX*/
Expand Down
3 changes: 1 addition & 2 deletions vocalredisoBlurry.eel
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,6 @@ function process_stft_segment(fft_buffer, fft_size) local(fft_bin, left_real, le
MAX_FFT_SIZE = 32768;
fft_size = 8192;

freemem = 0;
fft_buffer = simple_alloc(MAX_FFT_SIZE*2);
window_buffer = simple_alloc(MAX_FFT_SIZE);

Expand Down Expand Up @@ -269,7 +268,7 @@ pdc_bot_ch = 0;
pdc_top_ch = 2;

/*IFJSFX{
freembuf(freemem);
freembuf(_free_memory);

@slider
}IFJSFX*/
Expand Down
3 changes: 1 addition & 2 deletions vocalredisoBlurry.jsfx
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,6 @@ function process_stft_segment(fft_buffer, fft_size) local(fft_bin, left_real, le
MAX_FFT_SIZE = 32768;
fft_size = 8192;

freemem = 0;
fft_buffer = simple_alloc(MAX_FFT_SIZE*2);
window_buffer = simple_alloc(MAX_FFT_SIZE);

Expand Down Expand Up @@ -269,7 +268,7 @@ pdc_bot_ch = 0;
pdc_top_ch = 2;


freembuf(freemem);
freembuf(_free_memory);

@slider

Expand Down
3 changes: 1 addition & 2 deletions vocalredisoBlurry.jsfx-template
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,6 @@ function process_stft_segment(fft_buffer, fft_size) local(fft_bin, left_real, le
MAX_FFT_SIZE = 32768;
fft_size = 8192;

freemem = 0;
fft_buffer = simple_alloc(MAX_FFT_SIZE*2);
window_buffer = simple_alloc(MAX_FFT_SIZE);

Expand Down Expand Up @@ -269,7 +268,7 @@ pdc_bot_ch = 0;
pdc_top_ch = 2;

/*IFJSFX{
freembuf(freemem);
freembuf(_free_memory);

@slider
}IFJSFX*/
Expand Down

0 comments on commit 6315150

Please sign in to comment.