pub(crate) struct MediaElementSourceNode {
channel_info: ChannelInfo,
renderer: Arc<Mutex<dyn AudioRenderer>>,
buffers: Arc<Mutex<Vec<Vec<f32>>>>,
playback_offset: usize,
}
Fields§
§channel_info: ChannelInfo
§renderer: Arc<Mutex<dyn AudioRenderer>>
§buffers: Arc<Mutex<Vec<Vec<f32>>>>
§playback_offset: usize
Implementations§
source§impl MediaElementSourceNode
impl MediaElementSourceNode
pub fn new(channel_info: ChannelInfo) -> Self
pub fn handle_message(&mut self, message: MediaElementSourceNodeMessage, _: f32)
Trait Implementations§
source§impl AudioNodeCommon for MediaElementSourceNode
impl AudioNodeCommon for MediaElementSourceNode
fn channel_info(&self) -> &ChannelInfo
fn channel_info_mut(&mut self) -> &mut ChannelInfo
source§impl AudioNodeEngine for MediaElementSourceNode
impl AudioNodeEngine for MediaElementSourceNode
fn node_type(&self) -> AudioNodeType
fn process(&mut self, inputs: Chunk, _info: &BlockInfo) -> Chunk
fn input_count(&self) -> u32
source§fn message_specific(&mut self, msg: AudioNodeMessage, sample_rate: f32)
fn message_specific(&mut self, msg: AudioNodeMessage, sample_rate: f32)
Messages specific to this node
fn message(&mut self, msg: AudioNodeMessage, sample_rate: f32)
fn output_count(&self) -> u32
source§fn channel_count(&self) -> u8
fn channel_count(&self) -> u8
Number of input channels for each input port
fn channel_count_mode(&self) -> ChannelCountMode
fn channel_interpretation(&self) -> ChannelInterpretation
fn set_channel_interpretation(&mut self, i: ChannelInterpretation)
fn set_channel_count(&mut self, c: u8)
fn set_channel_count_mode(&mut self, m: ChannelCountMode)
source§fn destination_data(&mut self) -> Option<Chunk>
fn destination_data(&mut self) -> Option<Chunk>
If we’re the destination node, extract the contained data
fn get_param(&mut self, _: ParamType) -> &mut Param
fn set_listenerdata(&mut self, _: Block)
Auto Trait Implementations§
impl Freeze for MediaElementSourceNode
impl RefUnwindSafe for MediaElementSourceNode
impl Send for MediaElementSourceNode
impl Sync for MediaElementSourceNode
impl Unpin for MediaElementSourceNode
impl UnwindSafe for MediaElementSourceNode
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