vgmstream/src/base/mixer_ops_fade.c

174 lines
6.1 KiB
C
Raw Normal View History

2024-07-24 00:00:27 +02:00
#include "mixer_priv.h"
2023-07-30 23:47:50 +02:00
#include <limits.h>
2024-07-23 22:31:30 +02:00
#include <math.h>
2023-07-30 23:47:50 +02:00
#define MIXING_PI 3.14159265358979323846f
static inline float get_fade_gain_curve(char shape, float index) {
float gain;
/* don't bother doing calcs near 0.0/1.0 */
if (index <= 0.0001f || index >= 0.9999f) {
return index;
}
2024-08-07 23:13:12 +02:00
//TODO optimizations: interleave calcs
2023-07-30 23:47:50 +02:00
/* (curve math mostly from SoX/FFmpeg) */
switch(shape) {
/* 2.5f in L/E 'pow' is the attenuation factor, where 5.0 (100db) is common but a bit fast
* (alt calculations with 'exp' from FFmpeg use (factor)*ln(0.1) = -NN.N... */
case 'E': /* exponential (for fade-outs, closer to natural decay of sound) */
2024-08-07 23:13:12 +02:00
//gain = powf(0.1f, (1.0f - index) * 2.5f);
gain = expf(-5.75646273248511f * (1.0f - index));
2023-07-30 23:47:50 +02:00
break;
2024-07-23 22:31:30 +02:00
2023-07-30 23:47:50 +02:00
case 'L': /* logarithmic (inverse of the above, maybe for crossfades) */
2024-08-07 23:13:12 +02:00
//gain = 1 - powf(0.1f, (index) * 2.5f);
gain = 1 - expf(-5.75646273248511f * (index));
2023-07-30 23:47:50 +02:00
break;
case 'H': /* raised sine wave or cosine wave (for more musical crossfades) */
2024-08-07 23:13:12 +02:00
gain = (1.0f - cosf(index * MIXING_PI)) / 2.0f;
2023-07-30 23:47:50 +02:00
break;
case 'Q': /* quarter of sine wave (for musical fades) */
gain = sin(index * MIXING_PI / 2.0f);
break;
case 'p': /* parabola (maybe for crossfades) */
2024-08-07 23:13:12 +02:00
gain = 1.0f - sqrtf(1.0f - index);
2023-07-30 23:47:50 +02:00
break;
2024-07-23 22:31:30 +02:00
2023-07-30 23:47:50 +02:00
case 'P': /* inverted parabola (maybe for fades) */
gain = (1.0f - (1.0f - index) * (1.0f - index));
break;
case 'T': /* triangular/linear (simpler/sharper fades) */
default:
gain = index;
break;
}
return gain;
}
2024-07-23 22:50:36 +02:00
static bool get_fade_gain(mix_op_t* op, float* out_cur_vol, int32_t current_subpos) {
2023-07-30 23:47:50 +02:00
float cur_vol = 0.0f;
2024-07-23 22:50:36 +02:00
if ((current_subpos >= op->time_pre || op->time_pre < 0) && current_subpos < op->time_start) {
cur_vol = op->vol_start; /* before */
2023-07-30 23:47:50 +02:00
}
2024-07-23 22:50:36 +02:00
else if (current_subpos >= op->time_end && (current_subpos < op->time_post || op->time_post < 0)) {
cur_vol = op->vol_end; /* after */
2023-07-30 23:47:50 +02:00
}
2024-07-23 22:50:36 +02:00
else if (current_subpos >= op->time_start && current_subpos < op->time_end) {
2023-07-30 23:47:50 +02:00
/* in between */
float range_vol, range_dur, range_idx, index, gain;
2024-07-23 22:50:36 +02:00
if (op->vol_start < op->vol_end) { /* fade in */
range_vol = op->vol_end - op->vol_start;
range_dur = op->time_end - op->time_start;
range_idx = current_subpos - op->time_start;
2023-07-30 23:47:50 +02:00
index = range_idx / range_dur;
} else { /* fade out */
2024-07-23 22:50:36 +02:00
range_vol = op->vol_end - op->vol_start;
range_dur = op->time_end - op->time_start;
range_idx = op->time_end - current_subpos;
2023-07-30 23:47:50 +02:00
index = range_idx / range_dur;
}
/* Fading is done like this:
* - find current position within fade duration
* - get linear % (or rather, index from 0.0 .. 1.0) of duration
* - apply shape to % (from linear fade to curved fade)
* - get final volume for that point
*
* Roughly speaking some curve shapes are better for fades (decay rate is more natural
* sounding in that highest to mid/low happens faster but low to lowest takes more time,
* kinda like a gunshot or bell), and others for crossfades (decay of fade-in + fade-out
* is adjusted so that added volume level stays constant-ish).
*
* As curves can fade in two ways ('normal' and curving 'the other way'), they are adjusted
* to get 'normal' shape on both fades (by reversing index and making 1 - gain), thus some
* curves are complementary (exponential fade-in ~= logarithmic fade-out); the following
* are described taking fade-in = normal.
*/
2024-07-23 22:50:36 +02:00
gain = get_fade_gain_curve(op->shape, index);
2023-07-30 23:47:50 +02:00
2024-07-23 22:50:36 +02:00
if (op->vol_start < op->vol_end) { /* fade in */
cur_vol = op->vol_start + range_vol * gain;
2023-07-30 23:47:50 +02:00
} else { /* fade out */
2024-07-23 22:50:36 +02:00
cur_vol = op->vol_end - range_vol * gain; //mix->vol_start - range_vol * (1 - gain);
2023-07-30 23:47:50 +02:00
}
}
else {
/* fade is outside reach */
2024-07-23 22:31:30 +02:00
return false;
2023-07-30 23:47:50 +02:00
}
*out_cur_vol = cur_vol;
2024-07-23 22:31:30 +02:00
return true;
}
2024-07-23 23:51:44 +02:00
void mixer_op_fade(mixer_t* mixer, int32_t sample_count, mix_op_t* mix) {
float* sbuf = mixer->mixbuf;
2024-07-23 22:31:30 +02:00
float new_gain = 0.0f;
2024-07-23 23:51:44 +02:00
int channels = mixer->current_channels;
int32_t current_subpos = mixer->current_subpos;
2024-07-23 22:31:30 +02:00
//TODO optimize for case 0?
for (int s = 0; s < sample_count; s++) {
bool fade_applies = get_fade_gain(mix, &new_gain, current_subpos);
if (!fade_applies) //TODO optimize?
continue;
if (mix->ch_dst < 0) {
for (int ch = 0; ch < channels; ch++) {
sbuf[ch] = sbuf[ch] * new_gain;
}
}
else {
sbuf[mix->ch_dst] = sbuf[mix->ch_dst] * new_gain;
}
sbuf += channels;
current_subpos++;
}
2024-07-23 23:51:44 +02:00
mixer->current_subpos = current_subpos;
2023-07-30 23:47:50 +02:00
}
2024-07-23 22:31:30 +02:00
2024-07-23 23:51:44 +02:00
bool mixer_op_fade_is_active(mixer_t* mixer, int32_t current_start, int32_t current_end) {
2024-07-23 22:31:30 +02:00
2024-07-23 23:51:44 +02:00
for (int i = 0; i < mixer->chain_count; i++) {
mix_op_t* mix = &mixer->chain[i];
2024-07-23 22:31:30 +02:00
int32_t fade_start, fade_end;
float vol_start = mix->vol_start;
2024-07-23 22:50:36 +02:00
if (mix->type != MIX_FADE)
2024-07-23 22:31:30 +02:00
continue;
/* check is current range falls within a fade
* (assuming fades were already optimized on add) */
2024-08-07 23:13:12 +02:00
if (mix->time_pre < 0 && vol_start == 1.0f) {
2024-07-23 22:31:30 +02:00
fade_start = mix->time_start; /* ignore unused */
}
else {
fade_start = mix->time_pre < 0 ? 0 : mix->time_pre;
}
fade_end = mix->time_post < 0 ? INT_MAX : mix->time_post;
//;VGM_LOG("MIX: fade test, tp=%i, te=%i, cs=%i, ce=%i\n", mix->time_pre, mix->time_post, current_start, current_end);
if (current_start < fade_end && current_end > fade_start) {
//;VGM_LOG("MIX: fade active, cs=%i < fe=%i and ce=%i > fs=%i\n", current_start, fade_end, current_end, fade_start);
return true;
}
}
return false;
}