mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-03 09:01:50 -05:00
show configure latency metrics
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/glitch-free@2298 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
1adbe822b8
commit
6b4b95beed
1 changed files with 10 additions and 2 deletions
|
|
@ -785,6 +785,10 @@ static playback_stream* playback_stream_new(
|
||||||
tlength_usec = pa_bytes_to_usec(*tlength, &sink_input->sample_spec);
|
tlength_usec = pa_bytes_to_usec(*tlength, &sink_input->sample_spec);
|
||||||
minreq_usec = pa_bytes_to_usec(*minreq, &sink_input->sample_spec);
|
minreq_usec = pa_bytes_to_usec(*minreq, &sink_input->sample_spec);
|
||||||
|
|
||||||
|
pa_log_info("Requested tlength=%0.2f ms, minreq=%0.2f ms",
|
||||||
|
(double) tlength_usec / PA_USEC_PER_MSEC,
|
||||||
|
(double) minreq_usec / PA_USEC_PER_MSEC);
|
||||||
|
|
||||||
if (adjust_latency) {
|
if (adjust_latency) {
|
||||||
|
|
||||||
/* So, the user asked us to adjust the latency of the stream
|
/* So, the user asked us to adjust the latency of the stream
|
||||||
|
|
@ -878,6 +882,12 @@ static playback_stream* playback_stream_new(
|
||||||
|
|
||||||
pa_idxset_put(c->output_streams, s, &s->index);
|
pa_idxset_put(c->output_streams, s, &s->index);
|
||||||
|
|
||||||
|
pa_log_info("Final latency %0.2f ms = %0.2f ms + 2*%0.2f ms + %0.2f ms",
|
||||||
|
((double) pa_bytes_to_usec(*tlength, &sink_input->sample_spec) + (double) s->sink_latency) / PA_USEC_PER_MSEC,
|
||||||
|
(double) pa_bytes_to_usec(*tlength-*minreq*2, &sink_input->sample_spec) / PA_USEC_PER_MSEC,
|
||||||
|
(double) pa_bytes_to_usec(*minreq, &sink_input->sample_spec) / PA_USEC_PER_MSEC,
|
||||||
|
(double) s->sink_latency / PA_USEC_PER_MSEC);
|
||||||
|
|
||||||
pa_sink_input_put(s->sink_input);
|
pa_sink_input_put(s->sink_input);
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
|
@ -1048,8 +1058,6 @@ static void handle_seek(playback_stream *s, int64_t indexw) {
|
||||||
if (u >= s->underrun)
|
if (u >= s->underrun)
|
||||||
u = s->underrun;
|
u = s->underrun;
|
||||||
|
|
||||||
pa_log("yeah! ready to rock");
|
|
||||||
|
|
||||||
/* We just ended an underrun, let's ask the sink
|
/* We just ended an underrun, let's ask the sink
|
||||||
* to rewrite */
|
* to rewrite */
|
||||||
s->sink_input->thread_info.ignore_rewind = TRUE;
|
s->sink_input->thread_info.ignore_rewind = TRUE;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue