From e2b2d81126498d83fe7576837ccb744d96715a0a Mon Sep 17 00:00:00 2001 From: Jonathan Aillet Date: Sat, 2 Jun 2018 00:22:16 +0200 Subject: Correct a conversion into remp processing The conversion from ms to us wasn't done correctly, it is fixed now. Signed-off-by: Jonathan Aillet --- plugins/alsa/alsa-api-frontend.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/alsa') diff --git a/plugins/alsa/alsa-api-frontend.c b/plugins/alsa/alsa-api-frontend.c index d475ae9..e794ff4 100644 --- a/plugins/alsa/alsa-api-frontend.c +++ b/plugins/alsa/alsa-api-frontend.c @@ -35,7 +35,7 @@ STATIC int ProcessOneRamp(CtlSourceT *source, const char* uid, json_object *ramp ); if (error) goto OnErrorExit; - ramp->delay=ramp->delay*100; // move from ms to us + ramp->delay=ramp->delay*1000; // move from ms to us ramp->uid = strdup(rampUid); return 0; -- cgit 1.2.3-korg