Skip to main content

xaac_rs/
lib.rs

1mod decoder;
2mod encoder;
3mod error;
4mod ffi;
5#[cfg(feature = "python")]
6mod python;
7mod util;
8
9pub use decoder::{
10    ChannelMode, DecodeProgress, DecodeStatus, DecodedFrame, Decoder, DecoderConfig,
11    DecoderDrcConfig, DecoderTransport, DrcEffectType, ProfileHint, RawStreamConfig, SbrMode,
12    StreamInfo,
13};
14pub use encoder::{
15    EncodedFrame, EncodedPacket, Encoder, EncoderConfig, EncoderDrcConfig, InverseQuantizationMode,
16    OutputFormat, Profile, UsacCodecMode, UsacFrameLengthIndex,
17};
18pub use error::{Error, Result};
19pub use util::VersionInfo;