pub struct NalStart {
pub offset: usize,
pub len: usize,
}Available on crate feature
ingest only.Expand description
A located Annex-B start code within an H.264/H.265 bytestream.
Fields§
§offset: usizeByte offset of the start code’s leading zero.
len: usizeLength of the start code in bytes: 3 (00 00 01) or 4 (00 00 00 01).
Trait Implementations§
impl Copy for NalStart
impl Eq for NalStart
impl StructuralPartialEq for NalStart
Auto Trait Implementations§
impl Freeze for NalStart
impl RefUnwindSafe for NalStart
impl Send for NalStart
impl Sync for NalStart
impl Unpin for NalStart
impl UnsafeUnpin for NalStart
impl UnwindSafe for NalStart
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