pub struct FilterProcAudio {
pub scene: SceneInfo,
pub object: ObjectInfo,
pub audio_object: AudioObjectInfo,
/* private fields */
}Available on crate feature
filter only.Expand description
音声フィルタ処理のための構造体。
Fields§
§scene: SceneInfoシーン情報。
object: ObjectInfoオブジェクト情報。
audio_object: AudioObjectInfo音声フィルタ特有のオブジェクト情報。
Implementations§
Source§impl FilterProcAudio
impl FilterProcAudio
Sourcepub fn get_sample_data(
&mut self,
channel: AudioChannel,
buffer: &mut [f32],
) -> usize
pub fn get_sample_data( &mut self, channel: AudioChannel, buffer: &mut [f32], ) -> usize
Sourcepub fn set_sample_data(&mut self, channel: AudioChannel, data: &[f32])
pub fn set_sample_data(&mut self, channel: AudioChannel, data: &[f32])
Trait Implementations§
Source§impl Debug for FilterProcAudio
impl Debug for FilterProcAudio
impl Send for FilterProcAudio
impl Sync for FilterProcAudio
Auto Trait Implementations§
impl Freeze for FilterProcAudio
impl RefUnwindSafe for FilterProcAudio
impl Unpin for FilterProcAudio
impl UnwindSafe for FilterProcAudio
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more