Searched refs:PackerError (Results 1 – 7 of 7) sorted by relevance
| /xiu/protocol/rtsp/src/rtp/ |
| H A D | errors.rs | 10 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 D | utils.rs | 2 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 D | rtp_h265.rs | 2 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 D | rtp_h264.rs | 2 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 D | rtp_aac.rs | 1 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 D | errors.rs | 2 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 D | rtsp_channel.rs | 1 use crate::rtp::errors::PackerError; 84 ) -> Result<(), PackerError> { in on_frame() argument
|