All of lore.kernel.org
 help / color / mirror / Atom feed
From: folkert <folkert@vanheusden.com>
To: sujith kumar reddy <sujithreddy6192@gmail.com>
Cc: alsa-devel@alsa-project.org
Subject: Re: arecord is failing with -V stereo
Date: Mon, 23 Aug 2021 19:03:32 +0200	[thread overview]
Message-ID: <20210823170332.GD890690@belle.intranet.vanheusden.com> (raw)
In-Reply-To: <CAAd2w=Z4rG1UwA6ELzqwr_0TXjQmD0T1izonAJk9-32TSzGchQ@mail.gmail.com>

>         const int bar_length = 35;
>         char line[80];
...
>                 if (p > bar_length)
>                         p = bar_length;
>                 if (c)
>                         memset(line + bar_length + 6 + 1, '#', p);
> ----------------//this is the line where it is crashing.here p value is
> becoming negative at c=1.As we see if we change the p value to bar_length
> it works fine ..As it is a player issue not a driver issue.

This is puzzling.
bar_length + 6 + 1 + p and thus 35 + 6 + 1 + 35 is max 77, that fits
easlity in 80.

But wait:

                        line[bar_length - p - 1] = '+';

p is max bar_length, so we would end up putting '+' in line[-1]

Can you try this?


diff --git a/aplay/aplay.c b/aplay/aplay.c
index cc51dcb..9cfd52c 100644
--- a/aplay/aplay.c
+++ b/aplay/aplay.c
@@ -1764,7 +1764,7 @@ static void print_vu_meter_stereo(int *perc, int *maxperc)
 			p = bar_length;
 		if (c)
 			line[bar_length + 6 + 1 + p] = '+';
-		else
+		else if (p < bar_length)
 			line[bar_length - p - 1] = '+';
 		if (ABS(maxperc[c]) > 99)
 			sprintf(tmp, "MAX");

  reply	other threads:[~2021-08-23 17:04 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-19 18:04 arecord is failing with -V stereo sujith kumar reddy
2021-08-19 18:34 ` folkert
2021-08-19 18:43   ` sujith kumar reddy
2021-08-19 19:06     ` folkert
2021-08-23 16:31       ` sujith kumar reddy
2021-08-23 17:03         ` folkert [this message]
2021-08-23 18:44           ` sujith kumar reddy
2021-08-23 18:47             ` folkert
2021-08-23 19:06               ` sujith kumar reddy
2021-08-23 19:08                 ` folkert
2021-08-23 19:33                   ` sujith kumar reddy
2021-08-23 20:16                     ` folkert
2021-08-24  1:15                       ` sujith kumar reddy
2021-08-24  6:11                         ` sujith kumar reddy
2021-08-24  8:12                 ` Takashi Iwai
2021-08-24  9:19                   ` sujith kumar reddy
2021-08-24  9:50                     ` Takashi Iwai
  -- strict thread matches above, loose matches on Subject: below --
2021-08-17  8:38 sujith kumar reddy

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210823170332.GD890690@belle.intranet.vanheusden.com \
    --to=folkert@vanheusden.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=sujithreddy6192@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.