mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-07 13:30:03 -05:00
remove debug messages
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/glitch-free@2273 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
1ddb95a4ce
commit
bee409acbe
1 changed files with 6 additions and 6 deletions
|
|
@ -333,7 +333,7 @@ void pa_smoother_put(pa_smoother *s, pa_usec_t x, pa_usec_t y) {
|
||||||
|
|
||||||
s->abc_valid = FALSE;
|
s->abc_valid = FALSE;
|
||||||
|
|
||||||
pa_log_debug("put(%llu | %llu) = %llu", x + s->time_offset, x, y);
|
/* pa_log_debug("put(%llu | %llu) = %llu", (unsigned long long) (x + s->time_offset), (unsigned long long) x, (unsigned long long) y); */
|
||||||
}
|
}
|
||||||
|
|
||||||
pa_usec_t pa_smoother_get(pa_smoother *s, pa_usec_t x) {
|
pa_usec_t pa_smoother_get(pa_smoother *s, pa_usec_t x) {
|
||||||
|
|
@ -353,7 +353,7 @@ pa_usec_t pa_smoother_get(pa_smoother *s, pa_usec_t x) {
|
||||||
|
|
||||||
estimate(s, x, &y, NULL);
|
estimate(s, x, &y, NULL);
|
||||||
|
|
||||||
pa_log_debug("get(%llu | %llu) = %llu", x + s->time_offset, x, y);
|
/* pa_log_debug("get(%llu | %llu) = %llu", (unsigned long long) (x + s->time_offset), (unsigned long long) x, (unsigned long long) y); */
|
||||||
|
|
||||||
return y;
|
return y;
|
||||||
}
|
}
|
||||||
|
|
@ -363,7 +363,7 @@ void pa_smoother_set_time_offset(pa_smoother *s, pa_usec_t offset) {
|
||||||
|
|
||||||
s->time_offset = offset;
|
s->time_offset = offset;
|
||||||
|
|
||||||
pa_log_debug("offset(%llu)", offset);
|
/* pa_log_debug("offset(%llu)", (unsigned long long) offset); */
|
||||||
}
|
}
|
||||||
|
|
||||||
void pa_smoother_pause(pa_smoother *s, pa_usec_t x) {
|
void pa_smoother_pause(pa_smoother *s, pa_usec_t x) {
|
||||||
|
|
@ -372,7 +372,7 @@ void pa_smoother_pause(pa_smoother *s, pa_usec_t x) {
|
||||||
if (s->paused)
|
if (s->paused)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
pa_log_debug("pause(%llu)", x);
|
/* pa_log_debug("pause(%llu)", (unsigned long long) x); */
|
||||||
|
|
||||||
s->paused = TRUE;
|
s->paused = TRUE;
|
||||||
s->pause_time = x;
|
s->pause_time = x;
|
||||||
|
|
@ -386,7 +386,7 @@ void pa_smoother_resume(pa_smoother *s, pa_usec_t x) {
|
||||||
|
|
||||||
pa_assert(x >= s->pause_time);
|
pa_assert(x >= s->pause_time);
|
||||||
|
|
||||||
pa_log_debug("resume(%llu)", x);
|
/* pa_log_debug("resume(%llu)", (unsigned long long) x); */
|
||||||
|
|
||||||
s->paused = FALSE;
|
s->paused = FALSE;
|
||||||
s->time_offset += x - s->pause_time;
|
s->time_offset += x - s->pause_time;
|
||||||
|
|
@ -410,7 +410,7 @@ pa_usec_t pa_smoother_translate(pa_smoother *s, pa_usec_t x, pa_usec_t y_delay)
|
||||||
|
|
||||||
estimate(s, x, &ney, &nde);
|
estimate(s, x, &ney, &nde);
|
||||||
|
|
||||||
pa_log_debug("translate(%llu) = %llu (%0.2f)", (unsigned long long) y_delay, (unsigned long long) ((double) y_delay / s->dp), s->dp);
|
/* pa_log_debug("translate(%llu) = %llu (%0.2f)", (unsigned long long) y_delay, (unsigned long long) ((double) y_delay / s->dp), s->dp); */
|
||||||
|
|
||||||
return (pa_usec_t) ((double) y_delay / s->dp);
|
return (pa_usec_t) ((double) y_delay / s->dp);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue