Please review the pull request #82.
https://github.com/wahjam/wahjam/pull/82 was opened by (stefanha): Choose best available host API on first start
Some more information about the pull request:
Opened: 2013-02-02T14:20:56Z
Based on: wahjam:master (bb795abcb45f0803d8ebf0b5c55a0c92e75381b7)
Requested merge: stefanha:choose-default-host-api (65534964fd13e66816940214033301bab2cd80a4)
Description:
Users are often confused between the different audio host APIs available
on their platforms (e.g. WinMME, DirectSound, WDMKS, WASAPI, ASIO).
They may choose an API with poor latency and get a poor playing
experience.
Pick the default host API on behalf of the user. This way most users
automatically see the best host API for their platform. The list of
host APIs is prioritized as follows:
Windows: WinMME < DirectSound < WASAPI < WDMKS < ASIO
Linux: OSS < ALSA < JACK
Mac: SoundManager < CoreAudio
Note that although WASAPI is a newer API than WDMKS, in my testing WDMKS
has worked more reliably.
Also note that JACK only appears on Linux if the JACK daemon is running.
Therefore users typically see ALSA by default (which is a fair choice)
but JACK will take priority if the daemon is running (which is usually
what the user expects).
Signed-off-by: Stefan Hajnoczi &
lt;stef...@gmail.com>
Thanks.