decimation

This commit is contained in:
2026-06-12 15:29:04 +02:00
parent b4b2845321
commit 00a93527de
3 changed files with 32 additions and 13 deletions

View File

@ -11,6 +11,14 @@ pub struct IqChunk {
pub samples: Vec<IqSample>,
}
impl IqChunk {
pub fn new() -> Self {
IqChunk {
samples: Vec::<IqSample>::new(),
}
}
}
pub struct FileSource {
// Buffer
pub reader: BufReader<File>,