Changeset 3585
- Timestamp:
- 07/08/09 09:30:49 (8 months ago)
- Files:
-
- jack2/trunk/jackmp/common/jack/jack.h (modified) (3 diffs)
- jack2/trunk/jackmp/doxyfile (modified) (1 diff)
- jack2/trunk/jackmp/README (modified) (2 diffs)
- jack2/trunk/jackmp/windows/Setup/src/README (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
jack2/trunk/jackmp/common/jack/jack.h
r3558 r3585 109 109 * NEW JACK CLIENTS 110 110 * 111 * @deprecated Please use jack_client_open(). 111 112 */ 112 113 jack_client_t * jack_client_new (const char *client_name); … … 213 214 * NEW JACK CLIENTS. 214 215 * 215 * It should be replace by use of @ jack_cycle_wait and @ jack_cycle_signal functions. 216 * 216 * @deprecated Please use jack_cycle_wait() and jack_cycle_signal() functions. 217 217 */ 218 218 jack_nframes_t jack_thread_wait (jack_client_t*, int status); … … 836 836 int jack_port_unset_alias (jack_port_t *port, const char *alias); 837 837 838 /* 838 /** 839 839 * Get any aliases known for @port. 840 840 * jack2/trunk/jackmp/doxyfile
r3455 r3585 305 305 # with spaces. 306 306 307 INPUT = common posix macosx macosx/coreaudio/ linux linux/alsa windows windows/portaudio common/jack/ control.h307 INPUT = common posix macosx macosx/coreaudio/ linux linux/alsa windows windows/portaudio common/jack/ 308 308 309 309 # If the value of the INPUT tag contains directories, you can use the jack2/trunk/jackmp/README
r3459 r3585 138 138 - JackRouter.dll : an ASIO/JACK driver that allows ASIO compatible applications to become JACK clients and access the JACK server. ASIO "jackified" applications appear with their names. Ableton Live, Samplitude, Reason, Arturia applications have been successfully tested. To install it, use "regsvr32 JackRouter.dll" in a terminal (use regsvr32 /u JackRouter.dll to uninstall). [VISTA special note: regsvr32 has to be used with "administrator" priviledges to properly register JackRouter.dll (Start Menu -> All Programs -> Accessories -> Right Click on Command Prompt -> Run As Administrator)]. A JackRouter.ini file is used by the driver to read parameters : an [IO] section allows to setup the number of input/output jack ports for the application and a [AUTO_CONNECT] section allows to setup jack ports autoconnection mode to machine input/output. 139 139 140 All dll are compiled in "release" mode. The "Debug" folder contains debug version of all dlls and libraries. MSVCRTD.dll and MSVCP60D.dll debug dll are also included.141 142 140 WARNING !! WARNING !! 143 141 … … 157 155 158 156 WARNING : automatic server launch is not implemented on Windows 159 160 ----------------161 Loopback driver162 ----------------163 164 An experimental loopback driver allows to manually "pipeline" applications connected in sequence, and thus parallelize sequential sub-graph. Lets say we have A ==> B graph, by using the loopback driver, it can be rewritten as : A ==> loopback driver ==> B. At each cycle, the loopback driver copy buffers received on its input ports (at the previous cycle) to its output ports. The resulting graph become parallel and thus can take profit of multi-processors machines, at each cycle A and B can be activated in parallel. Note that the loopback driver add a one buffer delay in the connection, which may be relevant in more complex graphs when having global synchronicity between clients is a desirable property.165 166 To activate loopback driver, use :167 168 - jackd (jackdmp) ... -L n ... where n is the number of input/output ports.169 157 170 158 ------------------ jack2/trunk/jackmp/windows/Setup/src/README
r3464 r3585 5 5 This installer will install everything to use Jack Audio Connection Kit (JACK) (www.jackaudio.org) on Windows. 6 6 7 =============================================8 Microsoft Runtime Libraries9 =============================================10 11 In order to use this software, you will need the Microsoft Visual C++ 2008 redistributable package. This package is freely available on the Microsoft download center. Please be sure you install the correct version (2008). This package is required by portaudio to run windows specific audio drivers (MME, DSound and ASIO).12 7 13 8 =============================================
