show configured latency and its ranges

git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/glitch-free@2226 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2008-04-09 01:17:16 +00:00
parent da37a7e93d
commit f3109be9e1

View file

@ -128,6 +128,7 @@ char *pa_sink_list_to_string(pa_core *c) {
"\tvolume: <%s>\n" "\tvolume: <%s>\n"
"\tmute: <%i>\n" "\tmute: <%i>\n"
"\tlatency: <%0.0f usec>\n" "\tlatency: <%0.0f usec>\n"
"\tconfigured latency: <%0.0f usec> from range <%0.0f usec> .. <%0.0f usec>\n"
"\tmonitor source: <%u>\n" "\tmonitor source: <%u>\n"
"\tsample spec: <%s>\n" "\tsample spec: <%s>\n"
"\tchannel map: <%s>\n" "\tchannel map: <%s>\n"
@ -147,6 +148,7 @@ char *pa_sink_list_to_string(pa_core *c) {
pa_cvolume_snprint(cv, sizeof(cv), pa_sink_get_volume(sink)), pa_cvolume_snprint(cv, sizeof(cv), pa_sink_get_volume(sink)),
!!pa_sink_get_mute(sink), !!pa_sink_get_mute(sink),
(double) pa_sink_get_latency(sink), (double) pa_sink_get_latency(sink),
(double) pa_sink_get_requested_latency(sink), (double) sink->min_latency, (double) sink->max_latency,
sink->monitor_source ? sink->monitor_source->index : PA_INVALID_INDEX, sink->monitor_source ? sink->monitor_source->index : PA_INVALID_INDEX,
pa_sample_spec_snprint(ss, sizeof(ss), &sink->sample_spec), pa_sample_spec_snprint(ss, sizeof(ss), &sink->sample_spec),
pa_channel_map_snprint(cm, sizeof(cm), &sink->channel_map), pa_channel_map_snprint(cm, sizeof(cm), &sink->channel_map),
@ -194,6 +196,7 @@ char *pa_source_list_to_string(pa_core *c) {
"\tvolume: <%s>\n" "\tvolume: <%s>\n"
"\tmute: <%u>\n" "\tmute: <%u>\n"
"\tlatency: <%0.0f usec>\n" "\tlatency: <%0.0f usec>\n"
"\tconfigured latency: <%0.0f usec> from range <%0.0f usec> .. <%0.0f usec>\n"
"\tsample spec: <%s>\n" "\tsample spec: <%s>\n"
"\tchannel map: <%s>\n" "\tchannel map: <%s>\n"
"\tused by: <%u>\n" "\tused by: <%u>\n"
@ -212,6 +215,7 @@ char *pa_source_list_to_string(pa_core *c) {
pa_cvolume_snprint(cv, sizeof(cv), pa_source_get_volume(source)), pa_cvolume_snprint(cv, sizeof(cv), pa_source_get_volume(source)),
!!pa_source_get_mute(source), !!pa_source_get_mute(source),
(double) pa_source_get_latency(source), (double) pa_source_get_latency(source),
(double) pa_source_get_requested_latency(source), (double) source->min_latency, (double) source->max_latency,
pa_sample_spec_snprint(ss, sizeof(ss), &source->sample_spec), pa_sample_spec_snprint(ss, sizeof(ss), &source->sample_spec),
pa_channel_map_snprint(cm, sizeof(cm), &source->channel_map), pa_channel_map_snprint(cm, sizeof(cm), &source->channel_map),
pa_source_used_by(source), pa_source_used_by(source),