adts-reader

A Rust parser for the Audio Data Transport Stream framing format used to carry encoded AAC audio data.

crates.io version Documentation

👉 NB This is not an AAC decoder, nor is it able to parse the syntax of the AAC bitstream within the ADTS payload.

Calling code should, - Provide an implementation of AdtsConsumer which will recieve callbacks as ADTS frame payloads are found - Pass buffers containing ADTS data into the AdtsParser::push() method

Incremental parsing

The byte slice passed to push() need not end exactly at the boundry of an ADTS frame. Partial ADTS data remaining at the end of the given slice will be buffered internally in the parser, and the continuation of the ADTS data must be provided in the subsequent call to push(). This construction is intended to make it convinient to pass payloads of the individual MPEG Transport Stream packets in which ADTS data is commonly embedded, without having to pay the cost of reassembling entire PES packets.

Encoder configuration

ADTS frames include header data indicating the AAC encoder configuration, which will be made available to the calling code through the provided implementation of AdtsConsumer::new_config().

Configuration data is provided at stream start, and to simplify calling code the parser will only call AdtsConsumer::new_config() again if and when the audio configuration is found to change.

Supported ADTS syntax