Fix DC bin skipping being off by one
This commit is contained in:
parent
dffc169c99
commit
74b33af7d7
|
@ -395,7 +395,7 @@ impl Plugin for SpectralCompressor {
|
||||||
channel_idx,
|
channel_idx,
|
||||||
&self.params,
|
&self.params,
|
||||||
overlap_times,
|
overlap_times,
|
||||||
highest_dcish_bin_idx,
|
highest_dcish_bin_idx + 1,
|
||||||
);
|
);
|
||||||
|
|
||||||
// The DC and other low frequency bins doesn't contain much semantic meaning anymore
|
// The DC and other low frequency bins doesn't contain much semantic meaning anymore
|
||||||
|
|
Loading…
Reference in a new issue