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 \
bin/paqa_errs \
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 \
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
/** @file pa_devs.c
- @ingroup test_src
+ @ingroup examples_src
@brief List available devices, including device information.
@author Phil Burk http://www.softsynth.com
/** @file pa_fuzz.c
- @ingroup test_src
+ @ingroup examples_src
@brief Distort input like a fuzz box.
@author Phil Burk http://www.softsynth.com
*/
-/** @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>
-/** @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
-/** @file patest_read_write_wire.c\r
- @ingroup test_src\r
+/** @file paex_read_write_wire.c\r
+ @ingroup examples_src\r
@brief Tests full duplex blocking I/O by passing input straight to output.\r
@author Bjorn Roche. XO Audio LLC for Z-Systems Engineering.\r
@author based on code by: Phil Burk http://www.softsynth.com\r
-/** @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
*/
-/** @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
*/
-/** @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>
-/** @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>
-/** @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>