Home
last modified time | relevance | path

Searched defs:StreamInfoSnapshot (Results 1 – 2 of 2) sorted by relevance

/external/crosvm/devices/src/virtio/snd/common_backend/
Dstream_info.rs137 pub struct StreamInfoSnapshot { struct
138 pub(crate) channels: u8,
139 pub(crate) format: SampleFormat,
140 pub(crate) frame_rate: u32,
141 buffer_bytes: usize,
142 pub(crate) period_bytes: usize,
143 direction: u8, // VIRTIO_SND_D_*
144 pub state: u32, // VIRTIO_SND_R_PCM_SET_PARAMS -> VIRTIO_SND_R_PCM_STOP, or 0 (uninitialized)
145 effects: Vec<StreamEffect>,
146 pub just_reset: bool,
[all …]
Dmod.rs591 streams_state: Option<Vec<StreamInfoSnapshot>>, in run_worker()