#[repr(C)]pub struct moq_video_decoder_output {
pub latency_max_ms: u64,
}Expand description
Decode-side configuration the caller passes to moq_consume_video_raw.
Output is always tightly-packed I420 (see moq_video_frame); there is no
format/resolution knob yet. The struct exists so future options (a pixel
format, a target size) stay additive.
Fields§
§latency_max_ms: u64Upper bound on buffering before skipping a stalled group, in
milliseconds. Same congestion-control knob as
moq_consume_video’s max_latency_ms. 0 = skip aggressively
(the moq-mux default); set to your playout buffer for a softer skip.
Auto Trait Implementations§
impl Freeze for moq_video_decoder_output
impl RefUnwindSafe for moq_video_decoder_output
impl Send for moq_video_decoder_output
impl Sync for moq_video_decoder_output
impl Unpin for moq_video_decoder_output
impl UnsafeUnpin for moq_video_decoder_output
impl UnwindSafe for moq_video_decoder_output
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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