Skip to content

Commit

Permalink
Add README.
Browse files Browse the repository at this point in the history
  • Loading branch information
dechamps committed Feb 16, 2014
1 parent 399d2b8 commit 5ab7cdd
Showing 1 changed file with 142 additions and 0 deletions.
142 changes: 142 additions & 0 deletions README.md
@@ -0,0 +1,142 @@
# ASIOBridge README
Author: Etienne Dechamps <etienne@edechamps.fr>
Website: https://github.com/dechamps/ASIOBridge
License: General Public License, version 3

## DESCRIPTION

Background: http://en.wikipedia.org/wiki/Audio_Stream_Input/Output

ASIOBridge is an universal ASIO driver, meaning that it is not tied to
specific audio hardware. Other examples of universal ASIO drivers
include ASIO4ALL, ASIO2KS, ASIO2WASAPI. Universal ASIO drivers use
hardware-agnostic audio interfaces provided by the operating system to
produce and consume sound. The typical use case for such a driver is
to make ASIO usable with audio hardware that doesn't come with its own
ASIO drivers.

While ASIO4ALL and ASIO2KS use a low-level Windows audio API known as
"WDM-KS" (also called "DirectKS", "Kernel Streaming") to operate, and
ASIO2WASAPI uses WASAPI (in exclusive mode), ASIOBridge uses an
intermediate library called PortAudio that itself supports a large
number of operating system sound APIs, including MME, DirectSound,
WDM-KS, as well as the modern WASAPI interface that was released with
Windows Vista (ironically, PortAudio can use ASIO as well, nicely
closing the circle). Thus ASIOBridge can be used to interface with any
sound API available with your system. At least that's the theory; in
practice this is a very early version of ASIOBridge that doesn't have a
configuration interface yet, so it will simply default to using WASAPI
(in shared mode, *not* in exclusive mode) on most systems.

PortAudio: http://www.portaudio.com/

That being said, even this early release could be useful to some people
since it explictly opens the audio device in normal, shared mode like
any other application, which makes it an interesting alternative to
ASIO4ALL/ASIO2KS/ASIO2WASAPI, as these drivers always open devices in
exclusive mode without giving you a choice.

One interesting use case of ASIOBridge is that it allows the use of
RoomEQWizard while being able to choose the output channel on a 5.1/7.1
system but *without* bypassing the Windows audio processing pipeline,
which can be extremely useful in some scenarios. That's what I'm using
it for.

ASIOBridge should be able to run on any version of Microsoft Windows,
even very old ones, at least in theory.

## HOW TO USE

Just install it and ASIOBridge should magically appear in the ASIO
driver list in any ASIO-enabled application. There is no configuration
interface (see "caveats" below).

To uninstall ASIOBridge, just use the Windows "add/remove programs"
control panel.

If you don't want to use the installer, you can install it manually by
simply registering the DLL:

regsvr32 ASIOBridge.dll

Use the `/u` switch to unregister.

## LIMITATIONS AND CAVEATS

This is an early release, so there are lots of them.

This a very early version of ASIOBridge developed over a single
week-end. It has not been tested in any extensive way, and is certainly
not free from bugs and crashes.

ASIOBridge doesn't yet comes with a configuration interface ("control
panel" in ASIO terminology). The main reason is because programming GUIs
takes a lot of time that I don't have (especially since I have zero
experience in GUI programming). This means that you are forced to use
ASIOBridge defaults when it comes to system API and options, device
selection, and buffer size. These defaults are as follows:
- System API is forced to WASAPI, or if it's not available (pre-Vista
OS), DirectSound. Note that WASAPI is used in *shared* mode, not in
exclusive mode, so it behaves much like a typical Windows
application.
- ASIOBridge selects the default audio devices as configured in the
Windows audio control panel.
- Preferred buffer size is hardcoded to 1024 samples (21.3 ms at
48000Hz). This is purely arbitrary.
Note that it is possible (and relatively easy) to change these settings
by manually editing the source code and recompiling ASIOBridge. Not
ideal, I know. Patches welcome.

If you are using different hardware devices for input and output, each
with its own hardware clock, you are likely to end up with glitches
sooner or later during playback. How soon depends on the amount of
clock drift between the two hardware devices. Note that this is
basically a fact of life and is a problem with all audio APIs and
drivers; the only way around it is to compensate the clock dift on the
fly using sample rate conversion, but that's much more complicated.

WASAPI (at least on my test system) seems to require that the sample
rate used by the application matches the sample rate configured for the
device (which is configurable in the Windows audio control panel).
Corollary: if you use ASIO in both directions, your input device's
sample rate need to match the output device's, else ASIOBridge will not
return any usable sample rates. In some ways this could be considered a
feature since it guarantees that no unwanted sample rate conversions
will take place.

ASIOBridge has not been designed with latency in mind. That being said,
the current version should not add any latency on top of PortAudio
itself. The thing is, due to the way ASIO works (static buffer sizes),
PortAudio sometimes has no choice but to add additional buffering (which
adds latency) in order to meet the requirements of both ASIOBridge and
the system API it's using.

If you are not using WASAPI, ASIOBridge will be unable to display the
channel names (i.e. "Surround Left", etc.) in the channel list. That's
a limitation of PortAudio.

ASIOBridge is Windows-only for now. That could change in the future, as
PortAudio itself is cross-platform.

ASIOBridge is 32-bit only for now. Porting it to 64-bit is
straightforward, I just haven't gotten around to doing it yet.

## REPORTING ISSUES

Just use the GitHub issue tracker:
https://github.com/dechamps/ASIOBridge/issues

## DEVELOPER INFORMATION

ASIOBridge currently uses the Microsoft Visual C++ 2010 toolchain,
though it should work just fine with any later version. You will need
the following dependencies:
- ASIO SDK (include only):
http://www.steinberg.net/en/company/developer.html
- PortAudio (include and link):
http://www.portaudio.com/download.html

The installer can be built using Inno Setup:
http://www.jrsoftware.org/isdl.php You will need to put
the PortAudio DLL and the MSVC 2010 runtime DLLs in the redist/ folder
first.

0 comments on commit 5ab7cdd

Please sign in to comment.