Commit 45eecb92 authored by David Reid's avatar David Reid

Update features list.

parent 9f97cc69
...@@ -8,17 +8,29 @@ C/C++, single file, public domain. ...@@ -8,17 +8,29 @@ C/C++, single file, public domain.
Features Features
======== ========
- Public domain - Public domain.
- Single file - Single file.
- A very simple API - Compilable as both C and C++.
- Supports both playback and capture on _all_ backends - Easy to build.
- Automatic sample rate conversion, channel conversion, format conversion and channel mapping - Does not require linking to anything on the Windows build and only -ldl on Linux.
- Sample rate conversion is currently low quality, but a higher quality implementation is planned - The Windows build compiles clean with the default installations of modern versions of MSVC, GCC
and Clang. There is no need to download any dependencies, configure include paths nor link to
any libraries. It should Just Work.
- The header section does not include any platform specific headers.
- A very simple API.
- Transparent data structures with direct access to internal data.
- Supports both playback and capture on all backends.
- Automatic format conversion.
- Data format conversion.
- Sample rate conversion.
- Sample rate conversion is currently low quality, but a higher quality implementation is planned.
- Channel mapping/layout.
- Channel mixing (converting mono to 5.1, etc.)
Supported Platforms Supported Platforms
=================== ===================
- Windows - Windows (XP+)
- Linux - Linux
- BSD (via OSS) - BSD (via OSS)
- Android - Android
...@@ -91,6 +103,7 @@ int main(int argc, char** argv) ...@@ -91,6 +103,7 @@ int main(int argc, char** argv)
drwav_uninit(&wav); drwav_uninit(&wav);
return -4; return -4;
} }
mal_device_start(&device); mal_device_start(&device);
printf("Press Enter to quit..."); printf("Press Enter to quit...");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment