Enum h264_reader::avcc::ParamSetError
source · pub enum ParamSetError {
NalHeader(NalHeaderError),
IncorrectNalType {
expected: UnitType,
actual: UnitType,
},
IncompatibleSps(SeqParameterSet),
}
Variants§
NalHeader(NalHeaderError)
IncorrectNalType
IncompatibleSps(SeqParameterSet)
A sequence parameter set found within the AVC decoder config was not consistent with the settings of the decoder config itself
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ParamSetError
impl RefUnwindSafe for ParamSetError
impl Send for ParamSetError
impl Sync for ParamSetError
impl Unpin for ParamSetError
impl UnwindSafe for ParamSetError
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