summaryrefslogtreecommitdiffstats
path: root/polyp/clitext.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2004-08-03 19:26:56 +0000
committerLennart Poettering <lennart@poettering.net>2004-08-03 19:26:56 +0000
commit24291aff27c671c11619684cb10d3b36fdf87c0d (patch)
tree25f5c7493a58b6d48b51fb1b9843fb39bbb77b8b /polyp/clitext.c
parente10b918009446186c80584273d2e3f5e84a6670b (diff)
sample cache work
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@102 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'polyp/clitext.c')
-rw-r--r--polyp/clitext.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/polyp/clitext.c b/polyp/clitext.c
index d0c3f9a7..fbce2223 100644
--- a/polyp/clitext.c
+++ b/polyp/clitext.c
@@ -225,12 +225,13 @@ char *pa_scache_list_to_string(struct pa_core *c) {
l = (double) e->memchunk.length / pa_bytes_per_second(&e->sample_spec);
pa_strbuf_printf(
- s, " name: <%s>\n\tindex: <%i>\n\tsample_spec: <%s>\n\tlength: <%u>\n\tduration: <%0.1fs>\n",
+ s, " name: <%s>\n\tindex: <%i>\n\tsample_spec: <%s>\n\tlength: <%u>\n\tduration: <%0.1fs>\n\tvolume: <0x%04x>\n",
e->name,
e->index,
ss,
e->memchunk.length,
- l);
+ l,
+ e->volume);
}
}