gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

README.txt (2035B)


      1 README for PABLIO
      2 Portable Audio Blocking I/O Library
      3 Author: Phil Burk
      4 
      5 PABLIO is a simplified interface to PortAudio that provides
      6 read/write style blocking I/O.
      7 
      8 PABLIO is DEPRECATED. We recommend that people use the blocking I/O calls
      9 that are now part of the PortAudio API. These are Pa_ReadStream() and
     10 Pa_WriteStream().
     11 
     12 http://portaudio.com/docs/v19-doxydocs/blocking_read_write.html
     13 
     14 /*
     15  * More information on PortAudio at: http://www.portaudio.com
     16  * Copyright (c) 1999-2000 Phil Burk
     17  *
     18  * Permission is hereby granted, free of charge, to any person obtaining
     19  * a copy of this software and associated documentation files
     20  * (the "Software"), to deal in the Software without restriction,
     21  * including without limitation the rights to use, copy, modify, merge,
     22  * publish, distribute, sublicense, and/or sell copies of the Software,
     23  * and to permit persons to whom the Software is furnished to do so,
     24  * subject to the following conditions:
     25  *
     26  * The above copyright notice and this permission notice shall be
     27  * included in all copies or substantial portions of the Software.
     28  *
     29  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
     30  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
     31  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
     32  * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
     33  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
     34  * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
     35  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
     36  */
     37 
     38 /*
     39  * The text above constitutes the entire PortAudio license; however, 
     40  * the PortAudio community also makes the following non-binding requests:
     41  *
     42  * Any person wishing to distribute modifications to the Software is
     43  * requested to send the modifications to the original developer so that
     44  * they can be incorporated into the canonical version. It is also 
     45  * requested that these non-binding requests be included along with the 
     46  * license above.
     47  */
     48 
     49