This repository has been archived on 2024-01-28. You can view files and clone it, but cannot push or open issues/pull-requests.
brd/src/xact3.rs

7 lines
342 B
Rust

/// Module for writing raw ADPCM data to a RIFF WAVE file.
///
/// The WAVE format for ADPCM is specified in the [Microsoft Multimedia Standards Update from 15
/// April 1994](https://web.archive.org/web/20120917060438if_/http://download.microsoft.com/download/9/8/6/9863C72A-A3AA-4DDB-B1BA-CA8D17EFD2D4/RIFFNEW.pdf).
mod adpcm;
pub mod xwb;