mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-16 08:27:01 +03:00
fixed point resampling option
This commit is contained in:
@@ -323,8 +323,8 @@ bool resample_init(char *opt) {
|
||||
r->scale = pow(10, -1.0 / 20);
|
||||
// override recipe derived values with user specified values
|
||||
r->q_precision = 0;
|
||||
r->q_passband_end = 0;
|
||||
r->q_stopband_begin = 0;
|
||||
r->q_passband_end = 0.75;
|
||||
r->q_stopband_begin = 1.25;
|
||||
|
||||
if (recipe && recipe[0] != '\0') {
|
||||
if (strchr(recipe, 'v')) r->q_recipe = SOXR_VHQ;
|
||||
|
||||
Reference in New Issue
Block a user