[pulseaudio-discuss] [PATCH 5/6] cli: Show card ports and jack detection status
Maarten Bosmans
mkbosmans at gmail.com
Fri Oct 28 01:08:31 PDT 2011
2011/10/27 David Henningsson <david.henningsson at canonical.com>:
> Expose the new stuff through pacmd.
Can you also make it available in the pactl output?
> Signed-off-by: David Henningsson <david.henningsson at canonical.com>
> ---
> src/pulsecore/cli-text.c | 48 +++++++++++++++++++++++++++++----------------
> 1 files changed, 31 insertions(+), 17 deletions(-)
>
> diff --git a/src/pulsecore/cli-text.c b/src/pulsecore/cli-text.c
> index 5498744..2253635 100644
> --- a/src/pulsecore/cli-text.c
> +++ b/src/pulsecore/cli-text.c
> @@ -102,6 +102,33 @@ char *pa_client_list_to_string(pa_core *c) {
> return pa_strbuf_tostring_free(s);
> }
>
> +static const char *port_available_to_string(pa_port_available_t a) {
> + switch (a) {
> + case PA_PORT_AVAILABLE_UNKNOWN:
> + return "unknown";
> + case PA_PORT_AVAILABLE_NO:
> + return "no";
> + case PA_PORT_AVAILABLE_YES:
> + return "yes";
> + default:
> + return "invalid"; /* Should never happen! */
In general we use pa_assert_not_reached(). If that's applicable here
too, then the comment is not necessary anymore.
Maarten
More information about the pulseaudio-discuss
mailing list