moved example programs from test folder to examples folder
This commit is contained in:
parent
4512b4dc09
commit
57dd0b608f
13 changed files with 28 additions and 29 deletions
19
Makefile.in
19
Makefile.in
|
|
@ -68,7 +68,15 @@ LOOPBACK_OBJS = \
|
|||
qa/loopback/src/paqa.o
|
||||
|
||||
EXAMPLES = \
|
||||
bin/paex_sine
|
||||
bin/pa_devs \
|
||||
bin/pa_fuzz \
|
||||
bin/paex_pink \
|
||||
bin/paex_read_write_wire \
|
||||
bin/paex_record \
|
||||
bin/paex_saw \
|
||||
bin/paex_sine \
|
||||
bin/paex_write_sine \
|
||||
bin/paex_write_sine_nonint
|
||||
|
||||
TESTS = \
|
||||
bin/paqa_devs \
|
||||
|
|
@ -88,13 +96,8 @@ TESTS = \
|
|||
bin/patest_mono \
|
||||
bin/patest_multi_sine \
|
||||
bin/patest_out_underflow \
|
||||
bin/patest_pink \
|
||||
bin/patest_prime \
|
||||
bin/patest_read_record \
|
||||
bin/patest_read_write_wire \
|
||||
bin/patest_record \
|
||||
bin/patest_ringmix \
|
||||
bin/patest_saw \
|
||||
bin/patest_sine8 \
|
||||
bin/patest_sine_channelmaps \
|
||||
bin/patest_sine_formats \
|
||||
|
|
@ -107,10 +110,6 @@ TESTS = \
|
|||
bin/patest_two_rates \
|
||||
bin/patest_underflow \
|
||||
bin/patest_wire \
|
||||
bin/patest_write_sine \
|
||||
bin/patest_write_sine_nonint \
|
||||
bin/pa_devs \
|
||||
bin/pa_fuzz \
|
||||
bin/pa_minlat
|
||||
|
||||
# Most of these don't compile yet. Put them in TESTS, above, if
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/** @file pa_devs.c
|
||||
@ingroup test_src
|
||||
@ingroup examples_src
|
||||
@brief List available devices, including device information.
|
||||
@author Phil Burk http://www.softsynth.com
|
||||
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
/** @file pa_fuzz.c
|
||||
@ingroup test_src
|
||||
@ingroup examples_src
|
||||
@brief Distort input like a fuzz box.
|
||||
@author Phil Burk http://www.softsynth.com
|
||||
*/
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
/** @file pa_test_mono_asio_channel_select.c
|
||||
@ingroup test_src
|
||||
/** @file paex_mono_asio_channel_select.c
|
||||
@ingroup examples_src
|
||||
@brief Play a monophonic sine wave on a specific ASIO channel.
|
||||
@author Ross Bencina <rossb@audiomulch.com>
|
||||
@author Phil Burk <philburk@softsynth.com>
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
/** @file patest_pink.c
|
||||
@ingroup test_src
|
||||
/** @file paex_pink.c
|
||||
@ingroup examples_src
|
||||
@brief Generate Pink Noise using Gardner method.
|
||||
|
||||
Optimization suggested by James McCartney uses a tree
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
/** @file patest_read_write_wire.c
|
||||
@ingroup test_src
|
||||
/** @file paex_read_write_wire.c
|
||||
@ingroup examples_src
|
||||
@brief Tests full duplex blocking I/O by passing input straight to output.
|
||||
@author Bjorn Roche. XO Audio LLC for Z-Systems Engineering.
|
||||
@author based on code by: Phil Burk http://www.softsynth.com
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
/** @file patest_record.c
|
||||
@ingroup test_src
|
||||
/** @file paex_record.c
|
||||
@ingroup examples_src
|
||||
@brief Record input into an array; Save array to a file; Playback recorded data.
|
||||
@author Phil Burk http://www.softsynth.com
|
||||
*/
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
/** @file patest_saw.c
|
||||
@ingroup test_src
|
||||
/** @file paex_saw.c
|
||||
@ingroup examples_src
|
||||
@brief Play a simple (aliasing) sawtooth wave.
|
||||
@author Phil Burk http://www.softsynth.com
|
||||
*/
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
/** @file patest_sine.c
|
||||
@ingroup test_src
|
||||
/** @file paex_sine.c
|
||||
@ingroup examples_src
|
||||
@brief Play a sine wave for several seconds.
|
||||
@author Ross Bencina <rossb@audiomulch.com>
|
||||
@author Phil Burk <philburk@softsynth.com>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/** @file patest_write_sine.c
|
||||
@ingroup test_src
|
||||
/** @file paex_write_sine.c
|
||||
@ingroup examples_src
|
||||
@brief Play a sine wave for several seconds using the blocking API (Pa_WriteStream())
|
||||
@author Ross Bencina <rossb@audiomulch.com>
|
||||
@author Phil Burk <philburk@softsynth.com>
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
/** @file patest_write_sine_nonint.c
|
||||
@ingroup test_src
|
||||
/** @file paex_write_sine_nonint.c
|
||||
@ingroup examples_src
|
||||
@brief Play a non-interleaved sine wave using the blocking API (Pa_WriteStream())
|
||||
@author Ross Bencina <rossb@audiomulch.com>
|
||||
@author Phil Burk <philburk@softsynth.com>
|
||||
Loading…
Reference in a new issue