Struct gstreamer_audio::audio_buffer::AudioBuffer[][src]

pub struct AudioBuffer<T> { /* fields omitted */ }
This is supported on crate feature v1_16 only.

Implementations

impl<T> AudioBuffer<T>[src]

pub fn info(&self) -> &AudioInfo[src]

pub fn into_buffer(self) -> Buffer[src]

pub fn format(&self) -> AudioFormat[src]

pub fn format_info(&self) -> AudioFormatInfo[src]

pub fn channels(&self) -> u32[src]

pub fn rate(&self) -> u32[src]

pub fn layout(&self) -> AudioLayout[src]

pub fn width(&self) -> u32[src]

pub fn depth(&self) -> u32[src]

pub fn sample_stride(&self) -> u32[src]

pub fn bps(&self) -> u32[src]

pub fn bpf(&self) -> u32[src]

pub fn n_samples(&self) -> usize[src]

pub fn n_planes(&self) -> u32[src]

pub fn plane_size(&self) -> usize[src]

pub fn buffer(&self) -> &BufferRef[src]

pub fn plane_data(&self, plane: u32) -> Result<&[u8], BoolError>[src]

pub fn as_audio_buffer_ref(&self) -> AudioBufferRef<&BufferRef>[src]

pub fn as_ptr(&self) -> *const GstAudioBuffer[src]

impl AudioBuffer<Readable>[src]

pub fn from_buffer_readable(
    buffer: Buffer,
    info: &AudioInfo
) -> Result<Self, Buffer>
[src]

impl AudioBuffer<Writable>[src]

pub fn from_buffer_writable(
    buffer: Buffer,
    info: &AudioInfo
) -> Result<Self, Buffer>
[src]

pub fn buffer_mut(&mut self) -> &mut BufferRef[src]

pub fn plane_data_mut(&mut self, plane: u32) -> Result<&mut [u8], BoolError>[src]

pub fn as_mut_audio_buffer_ref(&mut self) -> AudioBufferRef<&mut BufferRef>[src]

pub fn as_mut_ptr(&mut self) -> *mut GstAudioBuffer[src]

Trait Implementations

impl<T> Debug for AudioBuffer<T>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl<T> Drop for AudioBuffer<T>[src]

fn drop(&mut self)[src]

Executes the destructor for this type. Read more

impl<T> Send for AudioBuffer<T>[src]

impl<T> Sync for AudioBuffer<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for AudioBuffer<T> where
    T: RefUnwindSafe

impl<T> Unpin for AudioBuffer<T> where
    T: Unpin

impl<T> UnwindSafe for AudioBuffer<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.