All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ctlparse: Respect softfloat configure option
@ 2011-05-19 13:16 Alexander Stein
  2011-05-20  7:10 ` Takashi Iwai
  0 siblings, 1 reply; 2+ messages in thread
From: Alexander Stein @ 2011-05-19 13:16 UTC (permalink / raw)
  To: alsa-devel; +Cc: Alexander Stein

If we want softlfoat we can't use ceil which uses libm.

Signed-off-by: Alexander Stein <a.stein@systec-electronic.com>
---
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

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] ctlparse: Respect softfloat configure option
  2011-05-19 13:16 [PATCH] ctlparse: Respect softfloat configure option Alexander Stein
@ 2011-05-20  7:10 ` Takashi Iwai
  0 siblings, 0 replies; 2+ messages in thread
From: Takashi Iwai @ 2011-05-20  7:10 UTC (permalink / raw)
  To: Alexander Stein; +Cc: alsa-devel

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
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-05-20  7:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-19 13:16 [PATCH] ctlparse: Respect softfloat configure option Alexander Stein
2011-05-20  7:10 ` Takashi Iwai

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.