enum OutputQueueState {
AwaitingBufferCount,
Decoding,
Drc,
}Expand description
The state for the output queue containing the buffers that will receive the decoded data.
Variants§
AwaitingBufferCount
Waiting for the client to call set_output_buffer_count.
Decoding
Codec is capable of decoding frames.
Drc
Dynamic Resolution Change - we can still accept buffers in the old format, but are waiting for new parameters before doing any decoding.
Auto Trait Implementations§
impl Freeze for OutputQueueState
impl RefUnwindSafe for OutputQueueState
impl Send for OutputQueueState
impl Sync for OutputQueueState
impl Unpin for OutputQueueState
impl UnwindSafe for OutputQueueState
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