more wire format specs

This commit is contained in:
TerraMaster85 2024-12-14 12:50:49 -05:00
parent c47228e4d9
commit cf99912ffe

View file

@ -1,7 +1,11 @@
pub enum SpecialCapability {
pub StereoOut = 1,
pub StereoIn = 2,
pub Telephone = 3,
pub Typewriter = 4,
pub IpDce = 5,
pub Telephone = 1,
pub Typewriter = 2,
pub IpDce = 3,
pub EthernetDce = 4,
}
pub struct ChannelCapabilities {
pub channels: usize
pub sample_rate: (u64, Option<u64>),
}