tweak debug traces

This commit is contained in:
Alexandre Ratchov 2012-10-05 20:42:52 +02:00
parent c52770bd18
commit 8a85df2977
1 changed files with 11 additions and 12 deletions

View File

@ -348,8 +348,7 @@ sio_alsa_printpos(struct sio_alsa_hdl *hdl, int delta)
wdiff = wdiff - hdl->par.round; wdiff = wdiff - hdl->par.round;
} }
DPRINTFN(2, DPRINTF("clk: %+4lld %+4lld, wr %+4lld %+4lld rd: %+4lld %+4lld\n",
"clk: %+4lld %+4lld, wr %+4lld %+4lld rd: %+4lld %+4lld\n",
cpos, cdiff, wpos, wdiff, rpos, rdiff); cpos, cdiff, wpos, wdiff, rpos, rdiff);
} }
#endif #endif
@ -409,14 +408,6 @@ sio_alsa_start(struct sio_hdl *sh)
return 0; return 0;
} }
} }
#ifdef DEBUG
if (sndio_debug) {
if (hdl->sio.mode & SIO_REC)
snd_pcm_dump(hdl->ipcm, output);
if (hdl->sio.mode & SIO_PLAY)
snd_pcm_dump(hdl->opcm, output);
}
#endif
return 1; return 1;
} }
@ -921,7 +912,14 @@ sio_alsa_setpar(struct sio_hdl *sh, struct sio_par *par)
return 0; return 0;
} }
} }
DPRINTF("sio_alsa_setpar: done\n"); #ifdef DEBUG
if (sndio_debug) {
if (hdl->sio.mode & SIO_REC)
snd_pcm_dump(hdl->ipcm, output);
if (hdl->sio.mode & SIO_PLAY)
snd_pcm_dump(hdl->opcm, output);
}
#endif
return 1; return 1;
} }
@ -1232,10 +1230,11 @@ sio_alsa_revents(struct sio_hdl *sh, struct pollfd *pfd)
hdl->iused = iused; hdl->iused = iused;
} }
delta = hdl->odelta > hdl->idelta ? hdl->odelta : hdl->idelta; delta = hdl->odelta > hdl->idelta ? hdl->odelta : hdl->idelta;
//delta = hdl->odelta;
if (delta > 0) { if (delta > 0) {
#ifdef DEBUG #ifdef DEBUG
hdl->cpos += delta; hdl->cpos += delta;
if (sndio_debug) if (sndio_debug >= 2)
sio_alsa_printpos(hdl, delta); sio_alsa_printpos(hdl, delta);
#endif #endif
sio_onmove_cb(&hdl->sio, delta); sio_onmove_cb(&hdl->sio, delta);