[pulseaudio-commits] [SCM] PulseAudio Sound Server branch, master, updated. v0.9.13-117-gb712e7b
Lennart Poettering
gitmailer-noreply at 0pointer.de
Thu Oct 23 19:33:56 PDT 2008
This is an automated email from the git hooks/post-receive script. It was
generated because of a push to the "PulseAudio Sound Server" repository.
The master branch has been updated
from 3294c89adba34d186591d98faa3a1f929b363e59 (commit)
- Log -----------------------------------------------------------------
b712e7b... make sure to use 64bit rounding even on 32bit machines when converting to pa_usec_t
-----------------------------------------------------------------------
Summary of changes:
src/pulsecore/time-smoother.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
-----------------------------------------------------------------------
commit b712e7b13dd6aed3e56eaee423ff071d6f0ce2c2
Author: Lennart Poettering <lennart at poettering.net>
Date: Fri Oct 24 04:34:10 2008 +0200
make sure to use 64bit rounding even on 32bit machines when converting to pa_usec_t
diff --git a/src/pulsecore/time-smoother.c b/src/pulsecore/time-smoother.c
index 6a2ffaa..6562194 100644
--- a/src/pulsecore/time-smoother.c
+++ b/src/pulsecore/time-smoother.c
@@ -313,7 +313,7 @@ static void estimate(pa_smoother *s, pa_usec_t x, pa_usec_t *y, double *deriv) {
/* Move back from origin */
ty += (double) s->ey;
- *y = ty >= 0 ? (pa_usec_t) lrint(ty) : 0;
+ *y = ty >= 0 ? (pa_usec_t) llrint(ty) : 0;
/* Horner scheme */
if (deriv)
@@ -360,7 +360,7 @@ void pa_smoother_put(pa_smoother *s, pa_usec_t x, pa_usec_t y) {
/* And calculate when we want to be on track again */
s->px = s->ex + s->adjust_time;
- s->py = s->ry + (pa_usec_t) lrint(s->dp * (double) s->adjust_time);
+ s->py = s->ry + (pa_usec_t) llrint(s->dp * (double) s->adjust_time);
s->abc_valid = FALSE;
@@ -456,7 +456,7 @@ pa_usec_t pa_smoother_translate(pa_smoother *s, pa_usec_t x, pa_usec_t y_delay)
/* pa_log_debug("translate(%llu) = %llu (%0.2f)", (unsigned long long) y_delay, (unsigned long long) ((double) y_delay / nde), nde); */
- return (pa_usec_t) lrint((double) y_delay / nde);
+ return (pa_usec_t) llrint((double) y_delay / nde);
}
void pa_smoother_reset(pa_smoother *s) {
--
hooks/post-receive
PulseAudio Sound Server
More information about the pulseaudio-commits
mailing list