Skip to content
Snippets Groups Projects
Commit 689b81f6 authored by Stephen D's avatar Stephen D
Browse files

dc bias cleaning

parent a144e90d
No related branches found
No related tags found
No related merge requests found
Pipeline #4482 passed
use crate::codec2::Complex;
// 1 seconds @ 48KHz
// 1 second @ 48KHz
const AVERAGE_TIME: usize = 48_000;
pub struct RemoveDcBias<I: Iterator<Item = Complex>> {
......@@ -29,7 +29,7 @@ impl<I: Iterator<Item = Complex>> Iterator for RemoveDcBias<I> {
self.sum += val;
self.i += 1;
if self.i == AVERAGE_TIME {
if self.i >= AVERAGE_TIME {
self.avg = self.sum / (self.i as f32);
self.i = 0;
self.sum = Complex::zero();
......
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