Home
last modified time | relevance | path

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

/xiu/protocol/rtsp/src/rtp/
H A Derrors.rs10 pub struct PackerError { struct
14 impl Fail for PackerError { implementation
24 impl fmt::Display for PackerError { implementation
38 impl From<BytesReadError> for PackerError { implementation
40 PackerError { in from()
46 impl From<BytesWriteError> for PackerError { implementation
48 PackerError { in from()
H A Dutils.rs2 use super::errors::PackerError;
34 ) -> Pin<Box<dyn Future<Output = Result<(), PackerError>> + Send + 'static>>
50 async fn pack(&mut self, nalus: &mut BytesMut, timestamp: u32) -> Result<(), PackerError>; in pack() argument
58 async fn pack_nalu(&mut self, nalu: BytesMut) -> Result<(), PackerError>; in pack_nalu() argument
84 ) -> Result<(), PackerError> { in split_annexb_and_process() argument
H A Drtp_h265.rs2 use super::errors::PackerError;
55 pub async fn pack_fu(&mut self, nalu: BytesMut) -> Result<(), PackerError> { in pack_fu() argument
123 pub async fn pack_single(&mut self, nalu: BytesMut) -> Result<(), PackerError> { in pack_single() argument
143 async fn pack(&mut self, nalus: &mut BytesMut, timestamp: u32) -> Result<(), PackerError> { in pack() argument
161 async fn pack_nalu(&mut self, nalu: BytesMut) -> Result<(), PackerError> { in pack_nalu() argument
H A Drtp_h264.rs2 use super::errors::PackerError;
55 pub async fn pack_fu_a(&mut self, nalu: BytesMut) -> Result<(), PackerError> { in pack_fu_a() argument
101 pub async fn pack_single(&mut self, nalu: BytesMut) -> Result<(), PackerError> { in pack_single() argument
124 async fn pack(&mut self, nalus: &mut BytesMut, timestamp: u32) -> Result<(), PackerError> { in pack() argument
143 async fn pack_nalu(&mut self, nalu: BytesMut) -> Result<(), PackerError> { in pack_nalu() argument
H A Drtp_aac.rs1 use super::errors::PackerError;
56 async fn pack(&mut self, data: &mut BytesMut, timestamp: u32) -> Result<(), PackerError> { in pack() argument
/xiu/protocol/rtsp/src/session/
H A Derrors.rs2 crate::rtp::errors::{PackerError, UnPackerError},
34 PackerError(#[cause] PackerError), enumerator
75 impl From<PackerError> for SessionError {
76 fn from(error: PackerError) -> Self { in from()
78 value: SessionErrorValue::PackerError(error), in from()
/xiu/protocol/rtsp/src/
H A Drtsp_channel.rs1 use crate::rtp::errors::PackerError;
84 ) -> Result<(), PackerError> { in on_frame() argument