All of lore.kernel.org
 help / color / mirror / Atom feed
From: Takashi Iwai <tiwai@suse.de>
To: Alexander Stein <a.stein@systec-electronic.com>
Cc: alsa-devel@alsa-project.org
Subject: Re: [PATCH] ctlparse: Respect softfloat configure option
Date: Fri, 20 May 2011 09:10:54 +0200	[thread overview]
Message-ID: <s5hfwo97sox.wl%tiwai@suse.de> (raw)
In-Reply-To: <1305810996-10621-1-git-send-email-a.stein@systec-electronic.com>

At Thu, 19 May 2011 15:16:36 +0200,
Alexander Stein wrote:
> 
> If we want softlfoat we can't use ceil which uses libm.
> 
> Signed-off-by: Alexander Stein <a.stein@systec-electronic.com>

Thanks, applied now.


Takashi

> ---
> This patch relates to
> http://mailman.alsa-project.org/pipermail/alsa-devel/2011-May/039693.html
> and following.
> 
>  src/control/ctlparse.c |    9 +++++++++
>  1 files changed, 9 insertions(+), 0 deletions(-)
> 
> diff --git a/src/control/ctlparse.c b/src/control/ctlparse.c
> index a929816..a16f96a 100644
> --- a/src/control/ctlparse.c
> +++ b/src/control/ctlparse.c
> @@ -33,8 +33,17 @@
>  
>  /* Function to convert from percentage to volume. val = percentage */
>  
> +#ifdef HAVE_SOFT_FLOAT
> +static inline long int convert_prange1(long val, long min, long max)
> +{
> +	long temp = val * (max - min);
> +	return temp / 100 + min + ((temp % 100) == 0 ? 0 : 1);
> +}
> +#else
> +
>  #define convert_prange1(val, min, max) \
>  	ceil((val) * ((max) - (min)) * 0.01 + (min))
> +#endif
>  
>  #define check_range(val, min, max) \
>  	((val < min) ? (min) : ((val > max) ? (max) : (val)))
> -- 
> 1.7.3.4
> 
> _______________________________________________
> Alsa-devel mailing list
> Alsa-devel@alsa-project.org
> http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
> 

      reply	other threads:[~2011-05-20  7:10 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-05-19 13:16 [PATCH] ctlparse: Respect softfloat configure option Alexander Stein
2011-05-20  7:10 ` Takashi Iwai [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=s5hfwo97sox.wl%tiwai@suse.de \
    --to=tiwai@suse.de \
    --cc=a.stein@systec-electronic.com \
    --cc=alsa-devel@alsa-project.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.