decrease verbosity a bit

git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/glitch-free@2378 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2008-05-07 01:36:44 +00:00
parent 44241ac243
commit 6c28f1d5b9

View file

@ -258,7 +258,7 @@ static int mmap_write(struct userdata *u) {
frames = n = n - u->hwbuf_unused_frames; frames = n = n - u->hwbuf_unused_frames;
pa_log_debug("%lu frames to write", (unsigned long) frames); /* pa_log_debug("%lu frames to write", (unsigned long) frames);*/
if (PA_UNLIKELY((err = snd_pcm_mmap_begin(u->pcm_handle, &areas, &offset, &frames)) < 0)) { if (PA_UNLIKELY((err = snd_pcm_mmap_begin(u->pcm_handle, &areas, &offset, &frames)) < 0)) {
@ -308,7 +308,7 @@ static int mmap_write(struct userdata *u) {
u->frame_index += frames; u->frame_index += frames;
pa_log_debug("wrote %lu frames", (unsigned long) frames); /* pa_log_debug("wrote %lu frames", (unsigned long) frames); */
if (PA_LIKELY(frames >= (snd_pcm_uframes_t) n)) if (PA_LIKELY(frames >= (snd_pcm_uframes_t) n))
return work_done; return work_done;
@ -349,7 +349,7 @@ static int unix_write(struct userdata *u) {
n -= u->hwbuf_unused_frames; n -= u->hwbuf_unused_frames;
pa_log_debug("%lu frames to write", (unsigned long) frames); /* pa_log_debug("%lu frames to write", (unsigned long) frames); */
if (u->memchunk.length <= 0) if (u->memchunk.length <= 0)
pa_sink_render(u->sink, n * u->frame_size, &u->memchunk); pa_sink_render(u->sink, n * u->frame_size, &u->memchunk);
@ -389,7 +389,7 @@ static int unix_write(struct userdata *u) {
u->frame_index += frames; u->frame_index += frames;
pa_log_debug("wrote %lu frames", (unsigned long) frames); /* pa_log_debug("wrote %lu frames", (unsigned long) frames); */
if (PA_LIKELY(frames >= n)) if (PA_LIKELY(frames >= n))
return work_done; return work_done;