Home
last modified time | relevance | path

Searched refs:StreamEffect (Results 1 – 6 of 6) sorted by relevance

/external/adhd/audio_streams/src/
Daudio_streams.rs90 pub enum StreamEffect { enum
98 impl Default for StreamEffect { implementation
100 StreamEffect::NoEffect in default()
123 impl FromStr for StreamEffect { implementation
127 "EchoCancellation" | "aec" => Ok(StreamEffect::EchoCancellation), in from_str()
Dshm_streams.rs13 use crate::{BoxError, SampleFormat, StreamDirection, StreamEffect};
203 effects: &[StreamEffect], in new_stream() argument
310 _effects: &[StreamEffect], in new_stream() argument
455 _effects: &[StreamEffect], in new_stream() argument
/external/adhd/cras/client/cras-sys/src/
Dlib.rs28 use audio_streams::{SampleFormat, StreamDirection, StreamEffect};
625 impl From<StreamEffect> for CRAS_STREAM_EFFECT {
627 fn from(effect: StreamEffect) -> Self { in from()
629 StreamEffect::NoEffect => CRAS_STREAM_EFFECT::empty(), in from()
630 StreamEffect::EchoCancellation => CRAS_STREAM_EFFECT::APM_ECHO_CANCELLATION, in from()
635 impl<'a> FromIterator<&'a StreamEffect> for CRAS_STREAM_EFFECT {
638 I: IntoIterator<Item = &'a StreamEffect>, in from_iter()
/external/crosvm/devices/src/virtio/snd/vios_backend/
Dshm_streams.rs15 use audio_streams::{BoxError, SampleFormat, StreamDirection, StreamEffect};
88 _effects: &[StreamEffect], in new_stream() argument
/external/adhd/cras/client/libcras/src/
Dlibcras.rs132 StreamDirection, StreamEffect, StreamSource,
623 effects: &[StreamEffect], in new_stream() argument
/external/crosvm/devices/src/pci/
Dac97_bus_master.rs15 BoxError, NoopStreamControl, SampleFormat, StreamControl, StreamDirection, StreamEffect,
540 fn stream_effects(func: Ac97Function) -> Vec<StreamEffect> { in stream_effects() argument
542 Ac97Function::Microphone => vec![StreamEffect::EchoCancellation], in stream_effects()
543 _ => vec![StreamEffect::NoEffect], in stream_effects()