Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Audio: Volume: Fix ongoing gain ramp stop and wrong final gain #8950

Merged
merged 5 commits into from
Apr 11, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
108 changes: 59 additions & 49 deletions src/audio/volume/volume.c
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,9 @@ static const struct comp_zc_func_map zc_func_map[] = {
*/
static inline int32_t volume_linear_ramp(struct vol_data *cd, int32_t ramp_time, int channel)
{
if (!cd->initial_ramp)
return cd->tvolume[channel];

return cd->rvolume[channel] + ramp_time * cd->ramp_coef[channel];
}
#endif
Expand Down Expand Up @@ -415,6 +418,59 @@ static int volume_free(struct processing_module *mod)
return 0;
}

static void set_linear_ramp_coef(struct vol_data *cd, int chan, bool constant_rate_ramp)
{
int32_t delta;
int32_t delta_abs;
int32_t coef;

if (!cd->initial_ramp)
return;

/* Get volume transition delta and absolute value */
delta = cd->tvolume[chan] - cd->volume[chan];
if (!delta) {
cd->ramp_coef[chan] = 0;
return;
}

delta_abs = ABS(delta);

/* The ramp length (initial_ramp [ms]) describes time of mute
* to vol_max unmuting. Normally the volume ramp has a
* constant linear slope defined this way and variable
* completion time. However in streaming start it is feasible
* to apply the entire topology defined ramp time to unmute to
* any used volume. In this case the ramp rate is not constant.
* Note also the legacy mode without known vol_ramp_range where
* the volume transition always uses the topology defined time.
*/
if (constant_rate_ramp && cd->vol_ramp_range > 0)
coef = cd->vol_ramp_range;
else
coef = delta_abs;

/* Divide and round to nearest. Note that there will
* be some accumulated error in ramp time the longer
* the ramp and the smaller the transition is.
*/
coef = (2 * coef / cd->initial_ramp + 1) >> 1;
singalsu marked this conversation as resolved.
Show resolved Hide resolved

/* Scale coefficient by 1/8, round */
coef = ((coef >> 2) + 1) >> 1;
singalsu marked this conversation as resolved.
Show resolved Hide resolved

/* Ensure ramp coefficient is at least min. non-zero
* fractional value.
*/
coef = MAX(coef, 1);

/* Invert sign for volume down ramp step */
if (delta < 0)
coef = -coef;

cd->ramp_coef[chan] = coef;
}

/**
* \brief Sets channel target volume.
* \param[in,out] mod Volume processing module handle
Expand All @@ -429,9 +485,6 @@ int volume_set_chan(struct processing_module *mod, int chan,
{
struct vol_data *cd = module_get_private_data(mod);
int32_t v = vol;
int32_t delta;
int32_t delta_abs;
int32_t coef;

/* Limit received volume gain to MIN..MAX range before applying it.
* MAX is needed for now for the generic C gain arithmetic to prevent
Expand All @@ -456,52 +509,9 @@ int volume_set_chan(struct processing_module *mod, int chan,
cd->rvolume[chan] = cd->volume[chan];
cd->vol_ramp_elapsed_frames = 0;

/* Check ramp type */
if (cd->ramp_type == SOF_VOLUME_LINEAR ||
cd->ramp_type == SOF_VOLUME_LINEAR_ZC) {
/* Get volume transition delta and absolute value */
delta = cd->tvolume[chan] - cd->volume[chan];
delta_abs = ABS(delta);

/* The ramp length (initial_ramp [ms]) describes time of mute
* to vol_max unmuting. Normally the volume ramp has a
* constant linear slope defined this way and variable
* completion time. However in streaming start it is feasible
* to apply the entire topology defined ramp time to unmute to
* any used volume. In this case the ramp rate is not constant.
* Note also the legacy mode without known vol_ramp_range where
* the volume transition always uses the topology defined time.
*/
if (cd->initial_ramp > 0) {
if (constant_rate_ramp && cd->vol_ramp_range > 0)
coef = cd->vol_ramp_range;
else
coef = delta_abs;

/* Divide and round to nearest. Note that there will
* be some accumulated error in ramp time the longer
* the ramp and the smaller the transition is.
*/
coef = (2 * coef / cd->initial_ramp + 1) >> 1;
} else {
coef = delta_abs;
}

/* Scale coefficient by 1/8, round */
coef = ((coef >> 2) + 1) >> 1;

/* Ensure ramp coefficient is at least min. non-zero
* fractional value.
*/
coef = MAX(coef, 1);

/* Invert sign for volume down ramp step */
if (delta < 0)
coef = -coef;

cd->ramp_coef[chan] = coef;
comp_dbg(mod->dev, "cd->ramp_coef[%d] = %d", chan, cd->ramp_coef[chan]);
}
/* Ramp type specific initialize */
if (cd->ramp_type == SOF_VOLUME_LINEAR || cd->ramp_type == SOF_VOLUME_LINEAR_ZC)
set_linear_ramp_coef(cd, chan, constant_rate_ramp);

return 0;
}
Expand Down