truehd 0.3.1

Research implementation of Dolby TrueHD parser/decoder
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Utility functions and supporting infrastructure.
//!
//! Provides bitstream I/O, CRC validation, Huffman decoding, error handling,
//! buffer management, and other supporting functionality for processing.

pub mod bitstream_io;
pub mod buffer_pool;
pub mod crc;
pub mod dither;
pub mod errors;
pub mod timing;