Home
last modified time | relevance | path

Searched refs:get_current_bytes (Results 1 – 7 of 7) sorted by relevance

/xiu/library/bytesio/src/
H A Dbits_writer.rs115 pub fn get_current_bytes(&self) -> BytesMut { in get_current_bytes() method
116 self.writer.get_current_bytes() in get_current_bytes()
149 let byte = bit_writer.get_current_bytes(); in test_write_bit()
171 let byte = bit_writer.get_current_bytes(); in test_write_n_bits()
195 let byte = bit_writer.get_current_bytes(); in test_bits_aligment_8()
H A Dbytes_writer.rs133 pub fn get_current_bytes(&self) -> BytesMut { in get_current_bytes() method
/xiu/protocol/rtmp/src/amf0/
H A Damf0_writer.rs118 pub fn get_current_bytes(&mut self) -> BytesMut { in get_current_bytes() method
119 self.writer.get_current_bytes() in get_current_bytes()
/xiu/library/container/mpegts/src/
H A Dpat.rs79 let crc32_value = crc32::gen_crc32(0xffffffff, self.bytes_writer.get_current_bytes()); in write()
H A Dpmt.rs105 let crc32_value = crc32::gen_crc32(0xffffffff, self.bytes_writer.get_current_bytes()); in write()
/xiu/library/container/flv/src/
H A Dmpeg4_avc.rs248 .prepend(&self.mpeg4_avc.pps_annexb_data.get_current_bytes()[..])?; in h264_mp4toannexb()
250 .prepend(&self.mpeg4_avc.sps_annexb_data.get_current_bytes()[..])?; in h264_mp4toannexb()
/xiu/protocol/rtmp/src/handshake/
H A Dhandshake_server.rs255 data.extend_from_slice(&writer.get_current_bytes()[..1504]); in write_s2()