Home
last modified time | relevance | path

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

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