xaac-rs 0.2.0

High-level Rust AAC/xHE-AAC encoder and decoder bindings built on libxaac
Documentation
mod decoder;
mod encoder;
mod error;
mod ffi;
#[cfg(feature = "python")]
mod python;
mod util;

pub use decoder::{
    ChannelMode, DecodeProgress, DecodeStatus, DecodedFrame, Decoder, DecoderConfig,
    DecoderDrcConfig, DecoderTransport, DrcEffectType, ProfileHint, RawStreamConfig, SbrMode,
    StreamInfo,
};
pub use encoder::{
    EncodedFrame, EncodedPacket, Encoder, EncoderConfig, EncoderDrcConfig, InverseQuantizationMode,
    OutputFormat, Profile, UsacCodecMode, UsacFrameLengthIndex,
};
pub use error::{Error, Result};
pub use util::VersionInfo;