xaac-rs 0.1.0

High-level Rust AAC/xHE-AAC encoder and decoder bindings built on libxaac
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod decoder;
mod encoder;
mod error;
mod ffi;
mod util;

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