Bugfix for playptmod
parent
32f5ceb212
commit
a8e4c9dbbf
|
@ -242,7 +242,6 @@ typedef struct
|
||||||
float *mixBufferL;
|
float *mixBufferL;
|
||||||
float *mixBufferR;
|
float *mixBufferR;
|
||||||
void * blep[MAX_CHANNELS];
|
void * blep[MAX_CHANNELS];
|
||||||
void * blepVol[MAX_CHANNELS];
|
|
||||||
unsigned int orderPlayed[256];
|
unsigned int orderPlayed[256];
|
||||||
MODULE *source;
|
MODULE *source;
|
||||||
} player;
|
} player;
|
||||||
|
@ -472,7 +471,6 @@ static void mixerSetChSource(player *p, int ch, const signed char *src, int leng
|
||||||
v->interpolating = 1;
|
v->interpolating = 1;
|
||||||
|
|
||||||
resampler_clear(p->blep[ch]);
|
resampler_clear(p->blep[ch]);
|
||||||
resampler_clear(p->blepVol[ch]);
|
|
||||||
|
|
||||||
// Check external 9xx usage (Set Sample Offset)
|
// Check external 9xx usage (Set Sample Offset)
|
||||||
if (v->loopFlag)
|
if (v->loopFlag)
|
||||||
|
@ -529,7 +527,6 @@ static void mixerCutChannels(player *p)
|
||||||
for (i = 0; i < MAX_CHANNELS; ++i)
|
for (i = 0; i < MAX_CHANNELS; ++i)
|
||||||
{
|
{
|
||||||
resampler_clear(p->blep[i]);
|
resampler_clear(p->blep[i]);
|
||||||
resampler_clear(p->blepVol[i]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
memset(&p->filter, 0, sizeof (p->filter));
|
memset(&p->filter, 0, sizeof (p->filter));
|
||||||
|
@ -570,7 +567,6 @@ static void outputAudio(player *p, int *target, int numSamples)
|
||||||
|
|
||||||
Voice *v;
|
Voice *v;
|
||||||
void *bSmp;
|
void *bSmp;
|
||||||
void *bVol;
|
|
||||||
|
|
||||||
memset(p->mixBufferL, 0, numSamples * sizeof (float));
|
memset(p->mixBufferL, 0, numSamples * sizeof (float));
|
||||||
memset(p->mixBufferR, 0, numSamples * sizeof (float));
|
memset(p->mixBufferR, 0, numSamples * sizeof (float));
|
||||||
|
@ -581,26 +577,21 @@ static void outputAudio(player *p, int *target, int numSamples)
|
||||||
|
|
||||||
v = &p->v[i];
|
v = &p->v[i];
|
||||||
bSmp = p->blep[i];
|
bSmp = p->blep[i];
|
||||||
bVol = p->blepVol[i];
|
|
||||||
|
|
||||||
if (v->data && v->rate)
|
if (v->data && v->rate)
|
||||||
{
|
{
|
||||||
step = v->step;
|
step = v->step;
|
||||||
interpolating = v->interpolating;
|
interpolating = v->interpolating;
|
||||||
resampler_set_rate(bSmp, v->rate);
|
resampler_set_rate(bSmp, v->rate);
|
||||||
resampler_set_rate(bVol, v->rate);
|
|
||||||
|
|
||||||
for (j = 0; j < numSamples;)
|
for (j = 0; j < numSamples;)
|
||||||
{
|
{
|
||||||
tempVolume = (v->data && !v->mute ? v->vol : 0);
|
|
||||||
|
|
||||||
while (interpolating && (resampler_get_free_count(bSmp) ||
|
while (interpolating && (resampler_get_free_count(bSmp) ||
|
||||||
!resampler_get_sample_count(bSmp)))
|
!resampler_get_sample_count(bSmp)))
|
||||||
{
|
{
|
||||||
tempSample = (v->data ? (step == 2 ? (v->data[v->index] + v->data[v->index + 1] * 0x100) : v->data[v->index] * 0x100) : 0);
|
tempSample = (v->data ? (step == 2 ? (v->data[v->index] + v->data[v->index + 1] * 0x100) : v->data[v->index] * 0x100) : 0);
|
||||||
|
|
||||||
resampler_write_sample_fixed(bSmp, tempSample, 1);
|
resampler_write_sample_fixed(bSmp, tempSample, 1);
|
||||||
resampler_write_sample_fixed(bVol, tempVolume, 1);
|
|
||||||
|
|
||||||
if (v->data)
|
if (v->data)
|
||||||
{
|
{
|
||||||
|
@ -667,11 +658,12 @@ static void outputAudio(player *p, int *target, int numSamples)
|
||||||
|
|
||||||
v->interpolating = interpolating;
|
v->interpolating = interpolating;
|
||||||
|
|
||||||
|
tempVolume = (v->data && !v->mute ? v->vol : 0);
|
||||||
|
|
||||||
while (j < numSamples && resampler_get_sample_count(bSmp))
|
while (j < numSamples && resampler_get_sample_count(bSmp))
|
||||||
{
|
{
|
||||||
t_vol = resampler_get_sample_float(bVol);
|
t_vol = tempVolume;
|
||||||
t_smp = resampler_get_sample_float(bSmp);
|
t_smp = resampler_get_sample_float(bSmp);
|
||||||
resampler_remove_sample(bVol, 0);
|
|
||||||
resampler_remove_sample(bSmp, 1);
|
resampler_remove_sample(bSmp, 1);
|
||||||
|
|
||||||
t_smp *= t_vol;
|
t_smp *= t_vol;
|
||||||
|
@ -683,7 +675,7 @@ static void outputAudio(player *p, int *target, int numSamples)
|
||||||
j++;
|
j++;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!interpolating && j < numSamples)
|
if (!interpolating)
|
||||||
{
|
{
|
||||||
v->data = NULL;
|
v->data = NULL;
|
||||||
break;
|
break;
|
||||||
|
@ -693,9 +685,9 @@ static void outputAudio(player *p, int *target, int numSamples)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (p->numChans <= 4)
|
if (p->numChans <= 4)
|
||||||
downscale = 1.0f / 172.0f;
|
downscale = 1.0f / 194.0f;
|
||||||
else
|
else
|
||||||
downscale = 1.0f / 208.0f;
|
downscale = 1.0f / 234.0f;
|
||||||
|
|
||||||
out = target;
|
out = target;
|
||||||
|
|
||||||
|
@ -2808,12 +2800,6 @@ void *playptmod_Create(int samplingFrequency)
|
||||||
resampler_set_quality(p->blep[i], RESAMPLER_QUALITY_BLEP);
|
resampler_set_quality(p->blep[i], RESAMPLER_QUALITY_BLEP);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i = 0; i < MAX_CHANNELS; ++i)
|
|
||||||
{
|
|
||||||
p->blepVol[i] = resampler_create();
|
|
||||||
resampler_set_quality(p->blepVol[i], RESAMPLER_QUALITY_BLEP);
|
|
||||||
}
|
|
||||||
|
|
||||||
mixerCutChannels(p);
|
mixerCutChannels(p);
|
||||||
|
|
||||||
return p;
|
return p;
|
||||||
|
@ -2950,7 +2936,6 @@ void playptmod_Free(void *_p)
|
||||||
for (i = 0; i < MAX_CHANNELS; ++i)
|
for (i = 0; i < MAX_CHANNELS; ++i)
|
||||||
{
|
{
|
||||||
resampler_delete(p->blep[i]);
|
resampler_delete(p->blep[i]);
|
||||||
resampler_delete(p->blepVol[i]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
free(p);
|
free(p);
|
||||||
|
|
Loading…
Reference in New Issue