it works!!

This commit is contained in:
Breval Ferrari 2024-07-10 18:58:11 +02:00
parent 14c98f484b
commit 5c2607b574
No known key found for this signature in database
GPG key ID: CEAB625B75A836B2
9 changed files with 37 additions and 67 deletions

View file

@ -11,4 +11,4 @@ keywords.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
fundsp = { workspace = true }
dasp_sample = { workspace = true }
num-traits = { workspace = true }

View file

@ -1,3 +0,0 @@
pub mod samples;
pub type Byte = u8;

View file

@ -1,6 +0,0 @@
use super::Byte;
mod from;
mod into;
pub use into::BytesToSample;

View file

@ -1 +0,0 @@

View file

@ -1,51 +0,0 @@
use std::{
array, mem,
ops::{BitOr, Shl},
};
use dasp_sample::{FromSample, Sample, U24, U48};
use fundsp::Real;
use super::Byte;
pub trait BytesToSample<Ir, It, Ii>
where
Self: IntoIterator<Item = It, IntoIter = Ii> + Sized,
Ii: Iterator<Item = It>,
Ir: FromSample<It>
+ Sample
+ Default
+ From<u8>
+ Shl<Ir, Output = Ir>
+ BitOr<Ir, Output = Ir>,
It: Sample,
{
fn to_sample<S>(self) -> S
where
S: Real + Sample + FromSample<Ir>,
{
self.into_iter()
.map(|it| Ir::from_sample(it))
.reduce(|acc, ir| (acc << Ir::from(mem::size_of::<It>() as u8 * 8u8)) | ir)
.unwrap()
.to_sample()
}
}
macro_rules! impl_bts_for_array_of {
($($N:expr, $Ir:ty);*) =>
{
$(
impl BytesToSample<$Ir, Byte, array::IntoIter<Byte, $N>> for [Byte; $N] {}
)*
}
}
impl_bts_for_array_of! {
1, u8;
2, u16;
3, U24;
4, u32;
6, U48;
8, u64
}

View file

@ -1 +1 @@
pub mod convert;