Searched refs:UnPackerError (Results 1 – 9 of 9) sorted by relevance
| /xiu/protocol/rtsp/src/rtp/ |
| H A D | errors.rs | 55 pub struct UnPackerError { struct 67 impl From<BytesReadError> for UnPackerError { implementation 69 UnPackerError { in from() 75 impl From<BytesWriteError> for UnPackerError { implementation 77 UnPackerError { in from() 83 impl fmt::Display for UnPackerError { implementation 89 impl Fail for UnPackerError { implementation
|
| H A D | rtp_h264.rs | 3 use super::errors::UnPackerError; 163 fn unpack(&mut self, reader: &mut BytesReader) -> Result<(), UnPackerError> { in unpack() argument 210 ) -> Result<(), UnPackerError> { in unpack_single() argument 268 ) -> Result<(), UnPackerError> { in unpack_fu() argument 348 ) -> Result<(), UnPackerError> { in unpack_stap() argument 432 ) -> Result<(), UnPackerError> { in unpack_mtap() argument
|
| H A D | rtp_h265.rs | 3 use super::errors::UnPackerError; 182 fn unpack(&mut self, reader: &mut BytesReader) -> Result<(), UnPackerError> { in unpack() argument 221 fn unpack_single(&mut self, payload: BytesMut) -> Result<(), UnPackerError> { in unpack_single() argument 259 fn unpack_ap(&mut self, rtp_payload: BytesMut) -> Result<(), UnPackerError> { in unpack_ap() argument 322 fn unpack_fu(&mut self, rtp_payload: BytesMut) -> Result<(), UnPackerError> { in unpack_fu() argument
|
| H A D | utils.rs | 3 use super::errors::UnPackerError; 26 pub type OnFrameFn = Box<dyn Fn(FrameData) -> Result<(), UnPackerError> + Send + Sync>; 63 fn unpack(&mut self, reader: &mut BytesReader) -> Result<(), UnPackerError>; in unpack() argument
|
| H A D | rtp_aac.rs | 2 use super::errors::UnPackerError; 118 fn unpack(&mut self, reader: &mut BytesReader) -> Result<(), UnPackerError> { in unpack() argument
|
| /xiu/protocol/rtsp/src/session/ |
| H A D | errors.rs | 2 crate::rtp::errors::{PackerError, UnPackerError}, 28 UnPackerError(#[cause] UnPackerError), enumerator 83 impl From<UnPackerError> for SessionError { 84 fn from(error: UnPackerError) -> Self { in from() 86 value: SessionErrorValue::UnPackerError(error), in from()
|
| H A D | mod.rs | 37 use super::rtp::errors::UnPackerError; 302 move |msg: FrameData| -> Result<(), UnPackerError> { in handle_announce()
|
| /xiu/protocol/rtsp/src/ |
| H A D | rtsp_track.rs | 5 use crate::rtp::errors::UnPackerError; 117 pub async fn on_rtp(&mut self, reader: &mut BytesReader) -> Result<(), UnPackerError> { in on_rtp() argument
|
| H A D | rtsp_channel.rs | 2 use crate::rtp::errors::UnPackerError; 72 pub fn on_packet(&mut self, reader: &mut BytesReader) -> Result<(), UnPackerError> { in on_packet() argument
|