mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 19:58:59 +00:00
avfilter/avf_showwaves: remove invalid multiplication by 2
Fixes output of average filter.
This commit is contained in:
parent
ad88cce3f8
commit
c1c7f2b61f
@ -600,7 +600,7 @@ static int push_single_pic(AVFilterLink *outlink)
|
||||
switch (showwaves->filter_mode) {
|
||||
case FILTER_AVERAGE:
|
||||
for (ch = 0; ch < nb_channels; ch++)
|
||||
sum[ch] += abs(p[ch + i*nb_channels]) << 1;
|
||||
sum[ch] += abs(p[ch + i*nb_channels]);
|
||||
break;
|
||||
case FILTER_PEAK:
|
||||
for (ch = 0; ch < nb_channels; ch++)
|
||||
|
Loading…
Reference in New Issue
Block a user