Skip to content
Snippets Groups Projects
Commit 6344700e authored by Rafaël Carré's avatar Rafaël Carré
Browse files

audiobargraph_a: compute maximum value only when using it

parent 93f0a6ce
No related branches found
No related tags found
No related merge requests found
......@@ -175,22 +175,23 @@ static block_t *DoWork( filter_t *p_filter, block_t *p_in_buf )
i_value[i] = 0.;
/* 1 - Compute the peak values */
float max = 0.0;
for (size_t i = 0; i < p_in_buf->i_nb_samples; i++) {
for (size_t i = 0; i < p_in_buf->i_nb_samples; i++)
for (int j = 0; j<nbChannels; j++) {
float ch = (*p_sample++);
float ch = *p_sample++;
if (ch > i_value[j])
i_value[j] = ch;
if (ch > max)
max = ch;
}
}
max *= max;
if (p_sys->silence) {
/* 2 - store the new value */
ValueDate_t *new = xmalloc(sizeof(*new));
new->value = max;
new->value = 0.0;
for (int j = 0; j<nbChannels; j++) {
float ch = i_value[j];
if (ch > new->value)
new->value = ch;
}
new->value *= new->value;
new->date = p_in_buf->i_pts;
new->next = NULL;
if (p_sys->last != NULL)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment