pub trait IntoNativeSample: Copy + Default + Sync + 'static {
    fn to_f16(&self) -> f16;
    fn to_f32(&self) -> f32;
    fn to_u32(&self) -> u32;
}
Expand description

Convert any type into one of the supported sample types. Should be compiled to a no-op where the file contains the predicted sample type

Required Methods

Convert this sample to an f16, trying to represent the same numerical value.

Convert this sample to an f32, trying to represent the same numerical value.

Convert this sample to an u16, trying to represent the same numerical value.

Implementations on Foreign Types

Implementors