pub enum H264ParserError {
GapsInFrameNumNotSupported,
FieldsNotSupported,
NalHeaderParseError(NalHeaderError),
SpsParseError(SpsError),
PpsParseError(PpsError),
SliceParseError(SliceHeaderError),
}👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
Variants§
GapsInFrameNumNotSupported
👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
FieldsNotSupported
👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
NalHeaderParseError(NalHeaderError)
👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
SpsParseError(SpsError)
👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
PpsParseError(PpsError)
👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
SliceParseError(SliceHeaderError)
👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
Trait Implementations§
Source§impl Debug for H264ParserError
impl Debug for H264ParserError
Source§impl Display for H264ParserError
impl Display for H264ParserError
Source§impl Error for H264ParserError
impl Error for H264ParserError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<H264ParserError> for DecoderError
impl From<H264ParserError> for DecoderError
Source§fn from(source: H264ParserError) -> Self
fn from(source: H264ParserError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for H264ParserError
impl !RefUnwindSafe for H264ParserError
impl Send for H264ParserError
impl Sync for H264ParserError
impl Unpin for H264ParserError
impl UnsafeUnpin for H264ParserError
impl !UnwindSafe for H264ParserError
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