pub struct BitReader<R: BufRead + Clone> { /* private fields */ }Expand description
Reads H.264 bitstream syntax elements from an RBSP representation (no NAL header byte or emulation prevention three bytes).
Implementations§
Trait Implementations§
Source§impl<R: BufRead + Clone> BitRead for BitReader<R>
impl<R: BufRead + Clone> BitRead for BitReader<R>
Source§fn read_ue(&mut self, name: &'static str) -> Result<u32, BitReaderError>
fn read_ue(&mut self, name: &'static str) -> Result<u32, BitReaderError>
Reads an unsigned Exp-Golomb-coded value, as defined in the H.264 spec.
Source§fn read_se(&mut self, name: &'static str) -> Result<i32, BitReaderError>
fn read_se(&mut self, name: &'static str) -> Result<i32, BitReaderError>
Reads a signed Exp-Golomb-coded value, as defined in the H.264 spec.
Source§fn read_bool(&mut self, name: &'static str) -> Result<bool, BitReaderError>
fn read_bool(&mut self, name: &'static str) -> Result<bool, BitReaderError>
Reads a single bit, as in [
crate::bitstream_io::read::BitRead::read_bool].Source§fn read<U: Numeric>(
&mut self,
bit_count: u32,
name: &'static str,
) -> Result<U, BitReaderError>
fn read<U: Numeric>( &mut self, bit_count: u32, name: &'static str, ) -> Result<U, BitReaderError>
Reads an unsigned value from the bitstream with the given number of bytes, as in
crate::bitstream_io::read::BitRead::read.Source§fn read_to<V: Primitive>(
&mut self,
name: &'static str,
) -> Result<V, BitReaderError>
fn read_to<V: Primitive>( &mut self, name: &'static str, ) -> Result<V, BitReaderError>
Reads a whole value from the bitstream whose size is equal to its byte size, as in
crate::bitstream_io::read::BitRead::read_to.Source§fn skip(
&mut self,
bit_count: u32,
name: &'static str,
) -> Result<(), BitReaderError>
fn skip( &mut self, bit_count: u32, name: &'static str, ) -> Result<(), BitReaderError>
Skips the given number of bits in the bitstream, as in
crate::bitstream_io::read::BitRead::skip.Source§fn has_more_rbsp_data(
&mut self,
name: &'static str,
) -> Result<bool, BitReaderError>
fn has_more_rbsp_data( &mut self, name: &'static str, ) -> Result<bool, BitReaderError>
Returns true if positioned before the RBSP trailing bits. Read more
Source§fn finish_rbsp(self) -> Result<(), BitReaderError>
fn finish_rbsp(self) -> Result<(), BitReaderError>
Consumes the reader, returning error if it’s not positioned at the RBSP trailing bits.
Source§fn finish_sei_payload(self) -> Result<(), BitReaderError>
fn finish_sei_payload(self) -> Result<(), BitReaderError>
Consumes the reader, returning error if this
sei_payload message is unfinished. Read moreAuto Trait Implementations§
impl<R> Freeze for BitReader<R>where
R: Freeze,
impl<R> RefUnwindSafe for BitReader<R>where
R: RefUnwindSafe,
impl<R> Send for BitReader<R>where
R: Send,
impl<R> Sync for BitReader<R>where
R: Sync,
impl<R> Unpin for BitReader<R>where
R: Unpin,
impl<R> UnwindSafe for BitReader<R>where
R: UnwindSafe,
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