pub struct StereoPacketPredictions {
pub mid: Vec<SilkFrameDecoded>,
pub side: Vec<Option<SilkFrameDecoded>>,
}Expand description
The per-frame predictions returned by
encode_silk_only_packet_stereo: what a fresh
crate::decoder::OpusDecoder will reconstruct for each channel.
Fields§
§mid: Vec<SilkFrameDecoded>One decoded mid frame per 20 ms interval.
side: Vec<Option<SilkFrameDecoded>>One decoded side frame per interval; None where the side
channel is not coded (§4.2.7.2 mid-only).
Trait Implementations§
Source§impl Clone for StereoPacketPredictions
impl Clone for StereoPacketPredictions
Source§fn clone(&self) -> StereoPacketPredictions
fn clone(&self) -> StereoPacketPredictions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for StereoPacketPredictions
impl RefUnwindSafe for StereoPacketPredictions
impl Send for StereoPacketPredictions
impl Sync for StereoPacketPredictions
impl Unpin for StereoPacketPredictions
impl UnsafeUnpin for StereoPacketPredictions
impl UnwindSafe for StereoPacketPredictions
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