openipc-video 0.1.40

Low-latency platform video decoding for OpenIPC applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Codec framing and decoder configuration independent of any platform API.

mod access_unit;
/// Split and convert Annex-B byte streams without interpreting codec syntax.
pub mod annex_b;
/// H.264 parameter-set configuration types.
pub mod h264;
/// H.265 parameter-set configuration types.
pub mod h265;

pub use access_unit::{CodecConfigTracker, ConfigUpdate};
pub use h264::H264Config;
pub use h265::H265Config;