Enum h264_reader::avcc::AvccError
source · pub enum AvccError {
NotEnoughData {
expected: usize,
actual: usize,
},
UnsupportedConfigurationVersion(u8),
ParamSet(ParamSetError),
Sps(SpsError),
Pps(PpsError),
}
Variants§
NotEnoughData
UnsupportedConfigurationVersion(u8)
The AvcDecoderConfigurationRecord used a version number other than 1
.
ParamSet(ParamSetError)
Sps(SpsError)
Pps(PpsError)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AvccError
impl !RefUnwindSafe for AvccError
impl Send for AvccError
impl Sync for AvccError
impl Unpin for AvccError
impl !UnwindSafe for AvccError
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