diff --git a/spa/plugins/audioconvert/resample.c b/spa/plugins/audioconvert/resample.c index a28fa7893..9bfc7cce5 100644 --- a/spa/plugins/audioconvert/resample.c +++ b/spa/plugins/audioconvert/resample.c @@ -307,9 +307,6 @@ static int parse_prop_params(struct impl *this, struct spa_pod *params) if (spa_pod_is_string(pod)) { spa_pod_copy_string(pod, sizeof(value), value); - } else if (spa_pod_is_float(pod)) { - snprintf(value, sizeof(value), "%f", - SPA_POD_VALUE(struct spa_pod_float, pod)); } else if (spa_pod_is_int(pod)) { snprintf(value, sizeof(value), "%d", SPA_POD_VALUE(struct spa_pod_int, pod));