Lines Matching defs:step
878 /* Volume step -> dB value conversion. */
908 /* Volume step -> dB value conversion. */
1076 * step. *db_value is replaced with the value from the db_values table.
1108 * But even with accurate nearest dB volume step is not selected, so that is why we need
1695 pa_log_warn("The step range of the decibel fix for element %s (%li-%li) doesn't fit to the "
4364 uint32_t step;
4372 pa_log("[%s:%u] No step value found in %s", state->filename, state->lineno, item);
4386 if (pa_atou(s, &step) < 0) {
4387 pa_log("[%s:%u] Invalid step value: %s", state->filename, state->lineno, s);
4396 if (step <= prev_step && i != 1) {
4397 pa_log("[%s:%u] Step value %u not greater than the previous value %u", state->filename, state->lineno, step, prev_step);
4407 min_step = step;
4409 prev_step = step;
4413 double db_increment = (db - prev_db) / (step - prev_step);
4415 for (; prev_step < step; ++prev_step, prev_db += db_increment) {
4427 max_step = step;