pub struct SilkDecoderControl {
pub pitch_l: [i32; 4],
pub gains_q16: [i32; 4],
pub pred_coef_q12: [[i16; 16]; 2],
pub ltp_coef_q14: [i16; 20],
pub ltp_scale_q14: i32,
}Fields§
§pitch_l: [i32; 4]§gains_q16: [i32; 4]§pred_coef_q12: [[i16; 16]; 2]§ltp_coef_q14: [i16; 20]§ltp_scale_q14: i32Implementations§
Trait Implementations§
Source§impl Clone for SilkDecoderControl
impl Clone for SilkDecoderControl
Source§fn clone(&self) -> SilkDecoderControl
fn clone(&self) -> SilkDecoderControl
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for SilkDecoderControl
impl Default for SilkDecoderControl
Source§fn default() -> SilkDecoderControl
fn default() -> SilkDecoderControl
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SilkDecoderControl
impl RefUnwindSafe for SilkDecoderControl
impl Send for SilkDecoderControl
impl Sync for SilkDecoderControl
impl Unpin for SilkDecoderControl
impl UnsafeUnpin for SilkDecoderControl
impl UnwindSafe for SilkDecoderControl
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