Changeset 3585

Show
Ignore:
Timestamp:
07/08/09 09:30:49 (8 months ago)
Author:
sletz
Message:

Correct documentation generation and readme files.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • jack2/trunk/jackmp/common/jack/jack.h

    r3558 r3585  
    109109*  NEW JACK CLIENTS 
    110110* 
     111* @deprecated Please use jack_client_open(). 
    111112*/ 
    112113jack_client_t * jack_client_new (const char *client_name); 
     
    213214 *  NEW JACK CLIENTS. 
    214215 * 
    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. 
    217217 */ 
    218218jack_nframes_t jack_thread_wait (jack_client_t*, int status); 
     
    836836int jack_port_unset_alias (jack_port_t *port, const char *alias); 
    837837 
    838 /* 
     838/** 
    839839 * Get any aliases known for @port. 
    840840 * 
  • jack2/trunk/jackmp/doxyfile

    r3455 r3585  
    305305# with spaces. 
    306306 
    307 INPUT    = common posix macosx macosx/coreaudio/ linux linux/alsa windows windows/portaudio common/jack/control.h 
     307INPUT    = common posix macosx macosx/coreaudio/ linux linux/alsa windows windows/portaudio common/jack/ 
    308308 
    309309# If the value of the INPUT tag contains directories, you can use the  
  • jack2/trunk/jackmp/README

    r3459 r3585  
    138138- 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. 
    139139 
    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  
    142140WARNING !! WARNING !! 
    143141 
     
    157155 
    158156WARNING : automatic server launch is not implemented on Windows 
    159  
    160 ---------------- 
    161 Loopback driver 
    162 ---------------- 
    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. 
    169157 
    170158------------------ 
  • jack2/trunk/jackmp/windows/Setup/src/README

    r3464 r3585  
    55This installer will install everything to use Jack Audio Connection Kit (JACK) (www.jackaudio.org) on Windows. 
    66 
    7 ============================================= 
    8 Microsoft Runtime Libraries 
    9 ============================================= 
    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). 
    127 
    138=============================================