mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-30 15:49:41 +02:00
Fix Bug 2708 - Nyquist effects fail silently with One hour plus stereo
Fix from RDB
This commit is contained in:
parent
fe3dfe6774
commit
56c76df8a6
@ -15,6 +15,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
#include <stdbool.h>
|
||||||
|
|
||||||
#ifndef WIN32
|
#ifndef WIN32
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
@ -40,7 +41,7 @@
|
|||||||
#define NYX_FULL_COPY 1
|
#define NYX_FULL_COPY 1
|
||||||
|
|
||||||
/* show memory stats */
|
/* show memory stats */
|
||||||
// #define NYX_MEMORY_STATS 1
|
#define NYX_MEMORY_STATS 1
|
||||||
|
|
||||||
/* show details of obarray copy */
|
/* show details of obarray copy */
|
||||||
// #define NYX_DEBUG_COPY 1
|
// #define NYX_DEBUG_COPY 1
|
||||||
@ -485,7 +486,7 @@ void nyx_init()
|
|||||||
xlprot1(nyx_result);
|
xlprot1(nyx_result);
|
||||||
|
|
||||||
#if defined(NYX_MEMORY_STATS) && NYX_MEMORY_STATS
|
#if defined(NYX_MEMORY_STATS) && NYX_MEMORY_STATS
|
||||||
printf("\nnyx_init\n");
|
stdputstr("\nnyx_init\n");
|
||||||
xmem();
|
xmem();
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
@ -530,7 +531,7 @@ void nyx_cleanup()
|
|||||||
}
|
}
|
||||||
|
|
||||||
#if defined(NYX_MEMORY_STATS) && NYX_MEMORY_STATS
|
#if defined(NYX_MEMORY_STATS) && NYX_MEMORY_STATS
|
||||||
printf("\nnyx_cleanup\n");
|
stdputstr("\nnyx_cleanup\n");
|
||||||
xmem();
|
xmem();
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
@ -829,7 +830,7 @@ nyx_rval nyx_eval_expression(const char *expr_string)
|
|||||||
LVAL expr = NULL;
|
LVAL expr = NULL;
|
||||||
|
|
||||||
#if defined(NYX_MEMORY_STATS) && NYX_MEMORY_STATS
|
#if defined(NYX_MEMORY_STATS) && NYX_MEMORY_STATS
|
||||||
printf("\nnyx_eval_expression before\n");
|
stdputstr("\nnyx_eval_expression before\n");
|
||||||
xmem();
|
xmem();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -913,10 +914,11 @@ nyx_rval nyx_eval_expression(const char *expr_string)
|
|||||||
gc();
|
gc();
|
||||||
|
|
||||||
#if defined(NYX_MEMORY_STATS) && NYX_MEMORY_STATS
|
#if defined(NYX_MEMORY_STATS) && NYX_MEMORY_STATS
|
||||||
printf("\nnyx_eval_expression after\n");
|
stdputstr("\nnyx_eval_expression after\n");
|
||||||
xmem();
|
xmem();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
printf("nyx_eval_expression returns %d\n", nyx_get_type(nyx_result));
|
||||||
return nyx_get_type(nyx_result);
|
return nyx_get_type(nyx_result);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -937,12 +939,20 @@ int nyx_get_audio_num_channels()
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// see sndwritepa.c for similar computation. This is a bit simpler
|
||||||
|
// because we are not writing interleaved samples.
|
||||||
|
typedef struct {
|
||||||
|
int cnt; // how many samples are in the current sample block
|
||||||
|
sample_block_values_type samps; // the next sample
|
||||||
|
bool terminated; // has the sound reached termination?
|
||||||
|
} sound_state_node, *sound_state_type;
|
||||||
|
|
||||||
|
|
||||||
int nyx_get_audio(nyx_audio_callback callback, void *userdata)
|
int nyx_get_audio(nyx_audio_callback callback, void *userdata)
|
||||||
{
|
{
|
||||||
float *buffer = NULL;
|
sound_state_type states; // tracks progress reading multiple channels
|
||||||
sound_type *snds = NULL;
|
float *buffer = NULL; // samples to push to callback
|
||||||
int64_t *totals = NULL;
|
int64_t total = 0; // total frames computed (samples per channel)
|
||||||
int64_t *lens = NULL;
|
|
||||||
sound_type snd;
|
sound_type snd;
|
||||||
int result = 0;
|
int result = 0;
|
||||||
int num_channels;
|
int num_channels;
|
||||||
@ -954,35 +964,31 @@ int nyx_get_audio(nyx_audio_callback callback, void *userdata)
|
|||||||
// cached in registers to be lost.
|
// cached in registers to be lost.
|
||||||
volatile int success = FALSE;
|
volatile int success = FALSE;
|
||||||
|
|
||||||
|
printf("nyx_get_audio type %d\n", nyx_get_type(nyx_result));
|
||||||
if (nyx_get_type(nyx_result) != nyx_audio) {
|
if (nyx_get_type(nyx_result) != nyx_audio) {
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(NYX_MEMORY_STATS) && NYX_MEMORY_STATS
|
#if defined(NYX_MEMORY_STATS) && NYX_MEMORY_STATS
|
||||||
printf("\nnyx_get_audio before\n");
|
stdputstr("\nnyx_get_audio before\n");
|
||||||
xmem();
|
xmem();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
num_channels = nyx_get_audio_num_channels();
|
num_channels = nyx_get_audio_num_channels();
|
||||||
|
|
||||||
buffer = (sample_type *) malloc(max_sample_block_len * sizeof(sample_type));
|
buffer = (sample_type *) malloc(max_sample_block_len * sizeof(sample_type *));
|
||||||
if (buffer == NULL) {
|
if (buffer == NULL) {
|
||||||
goto finish;
|
goto finish;
|
||||||
}
|
}
|
||||||
|
|
||||||
snds = (sound_type *) malloc(num_channels * sizeof(sound_type));
|
states = (sound_state_type) malloc(num_channels * sizeof(sound_state_node));
|
||||||
if (snds == NULL) {
|
if (states == NULL) {
|
||||||
goto finish;
|
goto finish;
|
||||||
}
|
}
|
||||||
|
for (ch = 0; ch < num_channels; ch++) {
|
||||||
totals = (int64_t *) malloc(num_channels * sizeof(int64_t));
|
states[ch].cnt = 0; // force initial fetch
|
||||||
if (totals == NULL) {
|
states[ch].samps = NULL; // unnecessary initialization
|
||||||
goto finish;
|
states[ch].terminated = false;
|
||||||
}
|
|
||||||
|
|
||||||
lens = (int64_t *) malloc(num_channels * sizeof(int64_t));
|
|
||||||
if (lens == NULL) {
|
|
||||||
goto finish;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Setup a new context
|
// Setup a new context
|
||||||
@ -996,6 +1002,10 @@ int nyx_get_audio(nyx_audio_callback callback, void *userdata)
|
|||||||
goto finish;
|
goto finish;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// if LEN is set, we will return LEN samples per channel. If LEN is
|
||||||
|
// unbound, we will compute samples until every channel has terminated
|
||||||
|
// that the samples per channel will match the last termination time,
|
||||||
|
// i.e. it could result in a partial block at the end.
|
||||||
if (nyx_input_length == 0) {
|
if (nyx_input_length == 0) {
|
||||||
LVAL val = getvalue(xlenter("LEN"));
|
LVAL val = getvalue(xlenter("LEN"));
|
||||||
if (val != s_unbound) {
|
if (val != s_unbound) {
|
||||||
@ -1008,54 +1018,96 @@ int nyx_get_audio(nyx_audio_callback callback, void *userdata)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// at this point, input sounds which were referenced by symbol S
|
||||||
|
// (or nyx_get_audio_name()) could be referenced by nyx_result, but
|
||||||
|
// S is now bound to NIL. nyx_result is a protected (garbage
|
||||||
|
// collected) LVAL bound to a sound or array of sounds, so we must
|
||||||
|
// either unbind nyx_result or read it destructively. We need the
|
||||||
|
// GC to know about sounds as we read them, so we might as well
|
||||||
|
// read nyx_result destructively. However, reading destructively
|
||||||
|
// will fail if nyx_result is (VECTOR S S) or has two references to
|
||||||
|
// the same sound. Therefore, we will replace each channel of
|
||||||
|
// nyx_result (except the first) with a copy. This may make
|
||||||
|
// needless copies, but if so, the GC will free the originals.
|
||||||
|
// Note: sound copies are just "readers" of the same underlying
|
||||||
|
// list of samples (snd_list_nodes) and lazy sample computation
|
||||||
|
// structure, so here, a sound copy is just one extra object of
|
||||||
|
// type sound_node.
|
||||||
|
// To unify single and multi-channel sounds, we'll create an array
|
||||||
|
// of one element for single-channel sounds.
|
||||||
|
|
||||||
|
if (num_channels == 1) {
|
||||||
|
LVAL array = newvector(1);
|
||||||
|
setelement(array, 0, nyx_result);
|
||||||
|
nyx_result = array;
|
||||||
|
}
|
||||||
for (ch = 0; ch < num_channels; ch++) {
|
for (ch = 0; ch < num_channels; ch++) {
|
||||||
if (num_channels == 1) {
|
if (ch > 0) { // no need to copy first channel
|
||||||
snd = getsound(nyx_result);
|
setelement(nyx_result, ch,
|
||||||
|
cvsound(sound_copy(getsound(getelement(nyx_result, ch)))));
|
||||||
}
|
}
|
||||||
else {
|
|
||||||
snd = getsound(getelement(nyx_result, ch));
|
|
||||||
}
|
|
||||||
snds[ch] = sound_copy(snd);
|
|
||||||
totals[ch] = 0;
|
|
||||||
lens[ch] = nyx_input_length;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// This is the "pump" that pulls samples from Nyquist and pushes samples
|
||||||
|
// out by calling the callback function. Every block boundary is a potential
|
||||||
|
// sound termination point, so we pull, scale, and write sample up to the
|
||||||
|
// next block boundary in any channel.
|
||||||
|
// First, we look at all channels to determine how many samples we have to
|
||||||
|
// compute in togo (how many "to go"). Then, we push togo samples from each
|
||||||
|
// channel to the callback, keeping all the channels in lock step.
|
||||||
|
|
||||||
while (result == 0) {
|
while (result == 0) {
|
||||||
for (ch =0 ; ch < num_channels; ch++) {
|
bool terminated = true;
|
||||||
|
// how many samples to compute before calling callback:
|
||||||
|
int64_t togo = max_sample_block_len;
|
||||||
|
if (nyx_input_length > 0 && total + togo > nyx_input_length) {
|
||||||
|
togo = nyx_input_length - total;
|
||||||
|
}
|
||||||
|
for (ch = 0; ch < num_channels; ch++) {
|
||||||
|
sound_state_type state = &states[ch];
|
||||||
|
sound_type snd = getsound(getelement(nyx_result, ch));
|
||||||
sample_block_type block;
|
sample_block_type block;
|
||||||
int cnt;
|
int cnt;
|
||||||
int i;
|
int i;
|
||||||
|
if (state->cnt == 0) {
|
||||||
snd = snds[ch];
|
state->samps = sound_get_next(snd, &state->cnt)->samples;
|
||||||
|
if (state->samps == zero_block->samples) {
|
||||||
cnt = 0;
|
state->terminated = true;
|
||||||
block = sound_get_next(snd, &cnt);
|
// Note: samps is a valid pointer to at least cnt zeros
|
||||||
if (block == zero_block || cnt == 0) {
|
// so we can process this channel as if it still has samples.
|
||||||
success = TRUE;
|
}
|
||||||
result = -1;
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
terminated &= state->terminated; // only terminated if ALL terminate
|
||||||
|
if (state->cnt < togo) togo = state->cnt;
|
||||||
|
// now togo is the minimum of: how much room is left in buffer and
|
||||||
|
// how many samples are available in samps
|
||||||
|
}
|
||||||
|
if (terminated || togo == 0) {
|
||||||
|
success = TRUE;
|
||||||
|
result = -1;
|
||||||
|
break; // no more samples in any channel
|
||||||
|
}
|
||||||
|
|
||||||
|
for (ch = 0; ch < num_channels; ch++) {
|
||||||
|
sound_state_type state = &states[ch];
|
||||||
|
sound_type snd = getsound(getelement(nyx_result, ch));
|
||||||
// Copy and scale the samples
|
// Copy and scale the samples
|
||||||
for (i = 0; i < cnt; i++) {
|
for (int i = 0; i < togo; i++) {
|
||||||
buffer[i] = block->samples[i] * snd->scale;
|
buffer[i] = *(state->samps++) * (float) snd->scale;
|
||||||
}
|
}
|
||||||
|
state->cnt -= togo;
|
||||||
result = callback((float *)buffer, ch,
|
// TODO: What happens here when we don't know the total length,
|
||||||
totals[ch], cnt, lens[ch] ? lens[ch] : cnt, userdata);
|
// i.e. nyx_input_length == 0? Should we pass total+togo instead?
|
||||||
|
result = callback(buffer, ch, total, togo, nyx_input_length, userdata);
|
||||||
if (result != 0) {
|
if (result != 0) {
|
||||||
result = -1;
|
result = -1;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
totals[ch] += cnt;
|
|
||||||
}
|
}
|
||||||
|
total += togo;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (ch = 0 ; ch < num_channels; ch++) {
|
nyx_result = NULL; // unreference sound array so GC can free it
|
||||||
sound_unref(snds[ch]);
|
|
||||||
}
|
|
||||||
|
|
||||||
// This will unwind the xlisp context and restore internals to a point just
|
// This will unwind the xlisp context and restore internals to a point just
|
||||||
// before we issued our xlbegin() above. This is important since the internal
|
// before we issued our xlbegin() above. This is important since the internal
|
||||||
@ -1069,25 +1121,17 @@ int nyx_get_audio(nyx_audio_callback callback, void *userdata)
|
|||||||
finish:
|
finish:
|
||||||
|
|
||||||
if (buffer) {
|
if (buffer) {
|
||||||
free(buffer);
|
free(buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (lens) {
|
if (states) {
|
||||||
free(lens);
|
free(states);
|
||||||
}
|
|
||||||
|
|
||||||
if (totals) {
|
|
||||||
free(totals);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (snds) {
|
|
||||||
free(snds);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
gc();
|
gc();
|
||||||
|
|
||||||
#if defined(NYX_MEMORY_STATS) && NYX_MEMORY_STATS
|
#if defined(NYX_MEMORY_STATS) && NYX_MEMORY_STATS
|
||||||
printf("\nnyx_get_audio after\n");
|
stdputstr("\nnyx_get_audio after\n");
|
||||||
xmem();
|
xmem();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user