From 6342053b34ab2f8addd2ed74cd965ec794ee50d4 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 24 Dec 2008 00:45:06 +0100 Subject: Add new API functions pa_volume_snprint() and pa_sw_volume_snprint_dB() --- src/pulse/volume.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'src/pulse/volume.h') diff --git a/src/pulse/volume.h b/src/pulse/volume.h index 75051af5..5815c906 100644 --- a/src/pulse/volume.h +++ b/src/pulse/volume.h @@ -150,6 +150,26 @@ char *pa_cvolume_snprint(char *s, size_t l, const pa_cvolume *c); /** Pretty print a volume structure but show dB values. \since 0.9.13 */ char *pa_sw_cvolume_snprint_dB(char *s, size_t l, const pa_cvolume *c); +/** Maximum length of the strings returned by + * pa_volume_snprint(). Please note that this value can change with + * any release without warning and without being considered API or ABI + * breakage. You should not use this definition anywhere where it + * might become part of an ABI. \since 0.9.14 */ +#define PA_VOLUME_SNPRINT_MAX 10 + +/** Pretty print a volume \since 0.9.14 */ +char *pa_volume_snprint(char *s, size_t l, pa_volume_t v); + +/** Maximum length of the strings returned by + * pa_volume_snprint_dB(). Please note that this value can change with + * any release without warning and without being considered API or ABI + * breakage. You should not use this definition anywhere where it + * might become part of an ABI. \since 0.9.14 */ +#define PA_SW_VOLUME_SNPRINT_DB_MAX 10 + +/** Pretty print a volume but show dB values. \since 0.9.14 */ +char *pa_sw_volume_snprint_dB(char *s, size_t l, pa_volume_t v); + /** Return the average volume of all channels */ pa_volume_t pa_cvolume_avg(const pa_cvolume *a) PA_GCC_PURE; -- cgit