* [PATCH] amixer: fix indentation when printing container TLV contents
@ 2013-10-01 20:46 Anssi Hannula
2013-10-02 15:36 ` Takashi Iwai
0 siblings, 1 reply; 2+ messages in thread
From: Anssi Hannula @ 2013-10-01 20:46 UTC (permalink / raw)
To: Takashi Iwai; +Cc: alsa-devel
decode_tlv() adds indentation in the beginning, with the expectation
that the TLV will be printed on the line afterwards in a switch-case.
However, in the case of a container TLV the switch-case simply adds
another level of indentation and calls decode_tlv() for the inner TLVs.
This causes the first inner TLV to be printed with too much indentation
and double '|'.
Fix that by printing "container" and a newline for container TLVs, so
that the result is as follows:
: values=0,0,0,0,0,0,0,0
| container
| chmap-variable=FL,FR
| chmap-variable=FL,FR,LFE
| chmap-variable=FL,FR,FC
Signed-off-by: Anssi Hannula <anssi.hannula@iki.fi>
---
amixer/amixer.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/amixer/amixer.c b/amixer/amixer.c
index b83b0c3..cf82892 100644
--- a/amixer/amixer.c
+++ b/amixer/amixer.c
@@ -460,6 +460,7 @@ static void decode_tlv(unsigned int spaces, unsigned int *tlv, unsigned int tlv_
}
switch (type) {
case SND_CTL_TLVT_CONTAINER:
+ printf("container\n");
size += sizeof(unsigned int) -1;
size /= sizeof(unsigned int);
while (idx < size) {
--
1.8.1.5
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] amixer: fix indentation when printing container TLV contents
2013-10-01 20:46 [PATCH] amixer: fix indentation when printing container TLV contents Anssi Hannula
@ 2013-10-02 15:36 ` Takashi Iwai
0 siblings, 0 replies; 2+ messages in thread
From: Takashi Iwai @ 2013-10-02 15:36 UTC (permalink / raw)
To: Anssi Hannula; +Cc: alsa-devel
At Tue, 1 Oct 2013 23:46:53 +0300,
Anssi Hannula wrote:
>
> decode_tlv() adds indentation in the beginning, with the expectation
> that the TLV will be printed on the line afterwards in a switch-case.
>
> However, in the case of a container TLV the switch-case simply adds
> another level of indentation and calls decode_tlv() for the inner TLVs.
> This causes the first inner TLV to be printed with too much indentation
> and double '|'.
>
> Fix that by printing "container" and a newline for container TLVs, so
> that the result is as follows:
> : values=0,0,0,0,0,0,0,0
> | container
> | chmap-variable=FL,FR
> | chmap-variable=FL,FR,LFE
> | chmap-variable=FL,FR,FC
>
> Signed-off-by: Anssi Hannula <anssi.hannula@iki.fi>
Thanks, applied now.
Takashi
> ---
> amixer/amixer.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/amixer/amixer.c b/amixer/amixer.c
> index b83b0c3..cf82892 100644
> --- a/amixer/amixer.c
> +++ b/amixer/amixer.c
> @@ -460,6 +460,7 @@ static void decode_tlv(unsigned int spaces, unsigned int *tlv, unsigned int tlv_
> }
> switch (type) {
> case SND_CTL_TLVT_CONTAINER:
> + printf("container\n");
> size += sizeof(unsigned int) -1;
> size /= sizeof(unsigned int);
> while (idx < size) {
> --
> 1.8.1.5
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-10-02 15:34 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-01 20:46 [PATCH] amixer: fix indentation when printing container TLV contents Anssi Hannula
2013-10-02 15:36 ` Takashi Iwai
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).