]> Repos - portaudio/commitdiff
Fix user-facing and non-user-facing typos
authorluz paz <luzpaz@users.noreply.github.com>
Fri, 11 Dec 2020 12:37:23 +0000 (07:37 -0500)
committerluz paz <luzpaz@users.noreply.github.com>
Sat, 12 Dec 2020 01:24:05 +0000 (20:24 -0500)
Found via `codespell v2.1.dev0`

116 files changed:
README.md
aclocal.m4
bindings/cpp/ChangeLog
bindings/cpp/aclocal.m4
bindings/cpp/build/gnu/config.guess
bindings/cpp/example/devs.cxx
bindings/cpp/example/sine.cxx
bindings/cpp/include/portaudiocpp/AsioDeviceAdapter.hxx
bindings/cpp/include/portaudiocpp/Device.hxx
bindings/cpp/include/portaudiocpp/Exception.hxx
bindings/cpp/include/portaudiocpp/HostApi.hxx
bindings/cpp/include/portaudiocpp/PortAudioCpp.hxx
bindings/cpp/include/portaudiocpp/Stream.hxx
bindings/cpp/include/portaudiocpp/System.hxx
bindings/cpp/source/portaudiocpp/StreamParameters.cxx
bindings/java/jportaudio/jtests/com/portaudio/TestBasic.java
build/msvc/readme.txt
doc/src/api_overview.dox
doc/src/tutorial/compile_cmake.dox
doc/src/tutorial/compile_linux.dox
doc/src/tutorial/start_stop_abort.dox
examples/pa_fuzz.c
examples/paex_mono_asio_channel_select.c
examples/paex_ocean_shore.c
examples/paex_pink.c
examples/paex_read_write_wire.c
examples/paex_record.c
examples/paex_record_file.c
examples/paex_saw.c
examples/paex_sine.c
examples/paex_sine_c++.cpp
examples/paex_wmme_ac3.c
examples/paex_wmme_surround.c
examples/paex_write_sine.c
examples/paex_write_sine_nonint.c
include/pa_asio.h
include/pa_mac_core.h
include/pa_win_wasapi.h
include/pa_win_wmme.h
ltmain.sh
pablio/test_rw.c
pablio/test_rw_echo.c
pablio/test_w_saw.c
pablio/test_w_saw8.c
qa/loopback/src/audio_analyzer.h
qa/loopback/src/paqa.c
qa/loopback/src/paqa_tools.c
src/common/pa_allocation.h
src/common/pa_converters.c
src/common/pa_converters.h
src/common/pa_endianness.h
src/common/pa_front.c
src/common/pa_process.h
src/common/pa_util.h
src/hostapi/alsa/pa_linux_alsa.c
src/hostapi/asio/pa_asio.cpp
src/hostapi/coreaudio/notes.txt
src/hostapi/coreaudio/pa_mac_core.c
src/hostapi/coreaudio/pa_mac_core_blocking.c
src/hostapi/coreaudio/pa_mac_core_utilities.c
src/hostapi/coreaudio/pa_mac_core_utilities.h
src/hostapi/dsound/pa_win_ds.c
src/hostapi/dsound/pa_win_ds_dynlink.c
src/hostapi/dsound/pa_win_ds_dynlink.h
src/hostapi/oss/pa_unix_oss.c
src/hostapi/skeleton/pa_hostapi_skeleton.c
src/hostapi/wasapi/mingw-include/ksproxy.h
src/hostapi/wasapi/pa_win_wasapi.c
src/hostapi/wdmks/pa_win_wdmks.c
src/hostapi/wdmks/readme.txt
src/hostapi/wmme/pa_win_wmme.c
src/os/unix/pa_unix_util.h
src/os/win/pa_win_waveformat.c
src/os/win/pa_win_wdmks_utils.h
src/os/win/pa_x86_plain_converters.c
test/pa_minlat.c
test/patest1.c
test/patest_buffer.c
test/patest_callbackstop.c
test/patest_clip.c
test/patest_dither.c
test/patest_dsound_low_level_latency_params.c
test/patest_dsound_surround.c
test/patest_hang.c
test/patest_in_overflow.c
test/patest_jack_wasapi.c
test/patest_latency.c
test/patest_leftright.c
test/patest_longsine.c
test/patest_many.c
test/patest_maxsines.c
test/patest_mono.c
test/patest_multi_sine.c
test/patest_out_underflow.c
test/patest_prime.c
test/patest_read_record.c
test/patest_sine8.c
test/patest_sine_channelmaps.c
test/patest_sine_formats.c
test/patest_sine_srate.c
test/patest_sine_time.c
test/patest_start_stop.c
test/patest_stop.c
test/patest_stop_playout.c
test/patest_suggested_vs_streaminfo_latency.c
test/patest_sync.c
test/patest_timing.c
test/patest_toomanysines.c
test/patest_two_rates.c
test/patest_underflow.c
test/patest_unplug.c
test/patest_wire.c
test/patest_wmme_find_best_latency_params.c
test/patest_wmme_low_level_latency_params.c
test/patest_write_stop.c
test/patest_write_stop_hang_illegal.c

index 74cfe6f5d8ffba057c7ba7caf3660d7f65ae1652..bf48975f507ca3dc7f8e16b0bbcb4ebb159e30e2 100644 (file)
--- a/README.md
+++ b/README.md
@@ -25,7 +25,7 @@ Please feel free to join. See http://www.portaudio.com for details.
 ## Important Files and Folders:
 
     include/portaudio.h     = header file for PortAudio API. Specifies API.    
-    src/common/             = platform independant code, host independant 
+    src/common/             = platform independent code, host independent 
                               code for all implementations.
     src/os                  = os specific (but host api neutral) code
     src/hostapi             = implementations for different host apis
@@ -58,5 +58,5 @@ Please feel free to join. See http://www.portaudio.com for details.
     test/patest_record.c   = record and playback some audio
     test/patest_maxsines.c = how many sine waves can we play? Tests Pa_GetCPULoad().
     test/patest_sine.c     = output a sine wave in a simple PA app
-    test/patest_sync.c     = test syncronization of audio and video
+    test/patest_sync.c     = test synchronization of audio and video
     test/patest_wire.c     = pass input to output, wire simulator
index 85326befb65bcbd498615784944103a6cae0f6cc..f6850af1201050ff669a187dd37bc8eff1c0bac0 100644 (file)
@@ -649,7 +649,7 @@ configured by $[0], generated by m4_PACKAGE_STRING.
 
 Copyright (C) 2011 Free Software Foundation, Inc.
 This config.lt script is free software; the Free Software Foundation
-gives unlimited permision to copy, distribute and modify it."
+gives unlimited permission to copy, distribute and modify it."
 
 while test $[#] != 0
 do
@@ -8669,7 +8669,7 @@ fi[]dnl
 # to PKG_CHECK_MODULES(), but does not set variables or print errors.
 #
 # Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
-# only at the first occurence in configure.ac, so if the first place
+# only at the first occurrence in configure.ac, so if the first place
 # it's called might be skipped (such as if it is within an "if", you
 # have to call PKG_CHECK_EXISTS manually
 # --------------------------------------------------------------
index 6b0b02700d9aa43a94ffed18a8f28c5c824948d1..1e96618ec6be3a8c2fec8400caca386c27b68d7d 100644 (file)
@@ -12,7 +12,7 @@ PortAudioCpp v19 revision 15 (unknown release date):
 
        mblaauw:
        - Changed some exception handling code in HostApi's constructor.
-       - Added accessors to PortAudio PaStream from PortAudioCpp Stream (their absense being pointed out
+       - Added accessors to PortAudio PaStream from PortAudioCpp Stream (their absence being pointed out
        by Tom Jordan).
        - Fixed a bug/typo in MemFunToCallbackInterfaceAdapter::init() thanks to Fredrik Viklund.
        - Fixed issue with concrete Stream classes possibly throwing an exception and fixed documentation w.r.t. this.
@@ -37,14 +37,14 @@ PortAudioCpp v19 revision 13 03/10/19:
        the std::exception base class's what() member function (which had throw(), i.e. no-throw guarantee).
        - Changed the iterators so that they have a set of public typedefs instead of deriving the C++ standard 
        library std::iterator<> struct. G++ 2.95 doesn't support std::exception<> and composition-by-aggregation 
-       is prefered over composition-by-inheritance in this case.
+       is preferred over composition-by-inheritance in this case.
        - Changed some minor things to avoid G++ warning messages.
 
        mblaauw:
        - Renamed this file (/WHATSNEW.txt) to /CHANGELOG.
        - Renamed /PA_ISSUES.txt to /PA_ISSUES.
        - Added /INSTALL file with some build info for GNU/Linux and VC6.
-       - Added MSVC 6.0 projects for building PortAudioCpp as a staticly or dynamically linkable library.
+       - Added MSVC 6.0 projects for building PortAudioCpp as a statically or dynamically linkable library.
        - Moved build files to /build/(gnu/ or vc6/).
        - Moved Doxygen configuration files to /doc/ and output to /doc/api_reference/.
        - Added a /doc/README with some info how to generate Doxygen documentation.
@@ -82,7 +82,7 @@ PortAudioCpp v19 revision 09 03/06/25:
        mblaauw:
        - Changed some things in SingleDirectionStreamParameters to ease it's usage.
        - Placed all SingleDirectionStreamParameters stuff into a separate file.
-       + Totally redid the callback stuff, now it's less ackward and supports C++ functions.
+       + Totally redid the callback stuff, now it's less awkward and supports C++ functions.
 
 PortAudioCpp v19 revision 08 03/06/20:
 
index 68c908fbabe0071210813dc8c9183e6a01e1c8e9..f5dec8f78e0e919d23a27f74c206f393628af5c3 100644 (file)
@@ -657,7 +657,7 @@ configured by $[0], generated by m4_PACKAGE_STRING.
 
 Copyright (C) 2011 Free Software Foundation, Inc.
 This config.lt script is free software; the Free Software Foundation
-gives unlimited permision to copy, distribute and modify it."
+gives unlimited permission to copy, distribute and modify it."
 
 while test $[#] != 0
 do
index 297e5c30f41b65e95341322c77994c4d1d447134..d5128acaf109e638a025c86cfdf17c453b4339c1 100644 (file)
Binary files a/bindings/cpp/build/gnu/config.guess and b/bindings/cpp/build/gnu/config.guess differ
index 31a560f884e6cd3322d78e2f43b64c2a23af3054..5ef4cab5cc9fdfbdbbd7acdfb4bf529e8c673786 100644 (file)
@@ -158,19 +158,19 @@ int main(int, char*[])
        }
        catch (const portaudio::PaException &e)
        {
-               std::cout << "A PortAudio error occured: " << e.paErrorText() << std::endl;
+               std::cout << "A PortAudio error occurred: " << e.paErrorText() << std::endl;
        }
        catch (const portaudio::PaCppException &e)
        {
-               std::cout << "A PortAudioCpp error occured: " << e.what() << std::endl;
+               std::cout << "A PortAudioCpp error occurred: " << e.what() << std::endl;
        }
        catch (const std::exception &e)
        {
-               std::cout << "A generic exception occured: " << e.what() << std::endl;
+               std::cout << "A generic exception occurred: " << e.what() << std::endl;
        }
        catch (...)
        {
-               std::cout << "An unknown exception occured." << std::endl;
+               std::cout << "An unknown exception occurred." << std::endl;
        }
 
        return 0;
index 0676e3e76ca5c39f7c60e2ae4d92eff14d7d500f..0c772e6eaec2492d47d3c8e1451ba4f6f3329b12 100644 (file)
@@ -116,19 +116,19 @@ int main(int, char *[])
        }
        catch (const portaudio::PaException &e)
        {
-               std::cout << "A PortAudio error occured: " << e.paErrorText() << std::endl;
+               std::cout << "A PortAudio error occurred: " << e.paErrorText() << std::endl;
        }
        catch (const portaudio::PaCppException &e)
        {
-               std::cout << "A PortAudioCpp error occured: " << e.what() << std::endl;
+               std::cout << "A PortAudioCpp error occurred: " << e.what() << std::endl;
        }
        catch (const std::exception &e)
        {
-               std::cout << "A generic exception occured: " << e.what() << std::endl;
+               std::cout << "A generic exception occurred: " << e.what() << std::endl;
        }
        catch (...)
        {
-               std::cout << "An unknown exception occured." << std::endl;
+               std::cout << "An unknown exception occurred." << std::endl;
        }
 
        return 0;
index 26957c4f35bff5b88440cca0b00cc17273db7cce..59f6095c6d497bb9341cd61b7e7aa10f1edea679 100644 (file)
@@ -11,7 +11,7 @@ namespace portaudio
        //////
        /// @brief Adapts the given Device to an ASIO specific extension.
        ///
-       /// Deleting the AsioDeviceAdapter does not affect the underlaying 
+       /// Deleting the AsioDeviceAdapter does not affect the underlying 
        /// Device.
        //////
        class AsioDeviceAdapter
index 3c6c3c0c74f64737ea313eff440a8fec1c962908..05995828e4a1a80ff3b4bd66cf4873700a5dbdc6 100644 (file)
@@ -41,7 +41,7 @@ namespace portaudio
        {
        public:
                // query info: name, max in channels, max out channels, 
-               // default low/hight input/output latency, default sample rate
+               // default low/high input/output latency, default sample rate
                PaDeviceIndex index() const;
                const char *name() const;
                int maxInputChannels() const;
index f5249c97942832ffe6733da0ebf8a8a5b110e92d..02d36b213f0bc756ec053620a714dcff73334e1e 100644 (file)
@@ -36,7 +36,7 @@ namespace portaudio
        /// other code.
        ///
        /// To know what exceptions each function may throw, look up 
-       /// the errors that can occure in the PortAudio documentation 
+       /// the errors that can occur in the PortAudio documentation 
        /// for the equivalent functions.
        ///
        /// Some functions are likely to throw an exception (such as 
index ce397ca6c75266cd25f5e5e9500b2bcf050e9b56..113558c47605e8bb90e5ce25a290867cd3419311 100644 (file)
@@ -28,7 +28,7 @@ namespace portaudio
        /// A single System can support multiple HostApi's each one typically having 
        /// a set of Devices using that HostApi (usually driver type). All Devices in 
        /// the HostApi can be enumerated and the default input/output Device for this 
-       /// HostApi can be retreived.
+       /// HostApi can be retrieved.
        //////
        class HostApi
        {
index 96df96e724859157bb2301f2941f48505aae04a9..1165550bd2b98f27acfb8fd429f08266bd73f461 100644 (file)
@@ -50,7 +50,7 @@
 ///   Other platforms should be easily supported as PortAudioCpp is platform-independent and (reasonably) C++ standard compliant.
 /// </p>
 /// <p>
-///   This documentation mainly provides information specific to PortAudioCpp. For a more complete explaination of all of the 
+///   This documentation mainly provides information specific to PortAudioCpp. For a more complete explanation of all of the 
 ///   concepts used, please consult the PortAudio documentation.
 /// </p>
 /// <p>
index 1aed747e5f689ff5fe9f4cba572907e4fa8d3eed..a73193006ae32f4097feab42cd1ef9cb30bd6fa4 100644 (file)
@@ -29,7 +29,7 @@ namespace portaudio
        /// clients need to explicitly call close() to ensure the stream closed successfully.
        ///
        /// The Stream object can be used to manipulate the Stream's state. Also, time-constant 
-       /// and time-varying information about the Stream can be retreived.
+       /// and time-varying information about the Stream can be retrieved.
        //////
        class Stream
        {
index d5ff9dd2b3c031403a1eb271f68e14e113c84abf..a159dc34471786fa5fff638a62e77bd4c70f9175 100644 (file)
@@ -26,7 +26,7 @@ namespace portaudio
        /// @brief System singleton which represents the PortAudio system.
        ///
        /// The System is used to initialize/terminate PortAudio and provide 
-       /// a single acccess point to the PortAudio System (instance()).
+       /// a single access point to the PortAudio System (instance()).
        /// It can be used to iterate through all HostApi 's in the System as 
        /// well as all devices in the System. It also provides some utility 
        /// functionality of PortAudio.
index 5b9e89716a2f472e5be4844183ed07384051ddf0..5857710b64e371b0022647ea0f356b655360e368 100644 (file)
@@ -39,7 +39,7 @@ namespace portaudio
        //////
        /// Sets the requested sample rate. If this sample rate isn't supported by the hardware, the 
        /// Stream will fail to open. The real-life sample rate used might differ slightly due to 
-       /// imperfections in the sound card hardware; use Stream::sampleRate() to retreive the 
+       /// imperfections in the sound card hardware; use Stream::sampleRate() to retrieve the 
        /// best known estimate for this value.
        //////
        void StreamParameters::setSampleRate(double sampleRate)
index b05750d7c6e6d2a59c069a4ba39745eabd4f3d9e..43b8fa7b16eda0c9cd75be87f6957317b9e8a175 100644 (file)
@@ -219,7 +219,7 @@ public class TestBasic extends TestCase
                        e.printStackTrace();
                }
 
-               assertTrue( "caught no expection", (caught != null) );
+               assertTrue( "caught no exception", (caught != null) );
                assertTrue( "exception should say stream is stopped", caught
                                .getMessage().contains( "stopped" ) );
 
@@ -233,7 +233,7 @@ public class TestBasic extends TestCase
                        caught = e;
                        e.printStackTrace();
                }
-               assertTrue( "caught no expection", (caught != null) );
+               assertTrue( "caught no exception", (caught != null) );
                assertTrue( "exception should say stream is stopped", caught
                                .getMessage().contains( "null" ) );
 
@@ -251,7 +251,7 @@ public class TestBasic extends TestCase
                        e.printStackTrace();
                }
 
-               assertTrue( "caught no expection", (caught != null) );
+               assertTrue( "caught no exception", (caught != null) );
                assertTrue( "exception should say tried to", caught.getMessage()
                                .contains( "Tried to write short" ) );
 
index 5fe5e28cdccfb77a022aa59a9773aca00de70439..07421ff2d0637eaa5aa4891d47ca5f98a64153a2 100644 (file)
@@ -24,7 +24,7 @@ This DLL contains all 5 current Win32 PA APIS (MME/DS/ASIO/WASAPI/WDMKS)
   Service pack 5:         
      Latest known URL:  
      http://msdn2.microsoft.com/en-us/vstudio/aa718363.aspx 
-        Yes there EXISTS a service pack 6 , but the processor pack (below) isnt compatible with it.
+        Yes there EXISTS a service pack 6 , but the processor pack (below) isn't compatible with it.
         
   Processor Pack(only works with above SP5)
      Latest known URL:
index 98a0dbdddbc19bb61be8a39784f956e33fcedc8c..e5704ce737df672922bde5d6f1bbf249ca65f5e7 100644 (file)
@@ -112,7 +112,7 @@ Many of the tests in the /tests directory of the PortAudio distribution implemen
 
 @subsection read_write_io_method The Read/Write I/O Method
 
-As an alternative to the callback I/O method, PortAudio provides a synchronous read/write interface for acquiring and playing audio. This can be useful for applications that don't require the lowest possibly latency, or don't warrant the increased complexity of synchronising with an asynchronous callback funciton. This I/O method is also useful when calling PortAudio from programming languages that don't support asynchronous callbacks. 
+As an alternative to the callback I/O method, PortAudio provides a synchronous read/write interface for acquiring and playing audio. This can be useful for applications that don't require the lowest possibly latency, or don't warrant the increased complexity of synchronising with an asynchronous callback function. This I/O method is also useful when calling PortAudio from programming languages that don't support asynchronous callbacks. 
 
 To open a Stream in read/write mode you pass a NULL stream callback function pointer to Pa_OpenStream().
 
index ab2a239404f3775adce906285d8e5756b7ad9795..8db400e7686cadfb8eaab07e56afbf72ee508c6d 100644 (file)
@@ -23,7 +23,7 @@ The "-G" option specifies the type of build metadata which will be generated. Yo
 
 "make install" should install the same set of files that are installed using the usual configure script included with PortAudio along with a few extra files (similar to pkg-config metadata files) which make it easier for other CMake projects to use the installed libraries.
 
-On Windows, you can use CMake to generate Visual Studio project files which can be used to create the PortAudio libraries. The following serves as an example (and should be done from a directory outside the PortAudio tree) which will create Visual Studio 2015 project files targetting a 64-bit build:
+On Windows, you can use CMake to generate Visual Studio project files which can be used to create the PortAudio libraries. The following serves as an example (and should be done from a directory outside the PortAudio tree) which will create Visual Studio 2015 project files targeting a 64-bit build:
 
     C:\PABUILD> cmake {portaudio path} -G "Visual Studio 14 2015 Win64"
 
index e227d759a367d5e8194da7b852b31ee0c5e29b95..2c993ca83ef0183bbc4bfb44d645fa572f96210c 100644 (file)
@@ -47,7 +47,7 @@ On some systems you may need to use:
 cp /usr/local/lib/libportaudio.a /YOUR/PROJECT/DIR
 @endcode
 
-You may also need to copy portaudio.h, located in the include/ directory of PortAudio into your project. Note that you will usually need to link with the approriate libraries that you used, such as ALSA and JACK, as well as with librt and libpthread. For example:
+You may also need to copy portaudio.h, located in the include/ directory of PortAudio into your project. Note that you will usually need to link with the appropriate libraries that you used, such as ALSA and JACK, as well as with librt and libpthread. For example:
 
 @code
 gcc main.c libportaudio.a -lrt -lm -lasound -ljack -pthread -o YOUR_BINARY
index 6d4f777523d6e681095a2c76cf03bcfe28cf1c1c..0ddb4605bd896203f87bbc9867f63ec392f35002 100644 (file)
@@ -10,7 +10,7 @@ PortAudio will not start playing back audio until you start the stream. After ca
     if( err != paNoError ) goto error;
 @endcode
 
-You can communicate with your callback routine through the data structure you passed in on the open call, or through global variables, or using other interprocess communication techniques, but please be aware that your callback function may be called at interrupt time when your foreground process is least expecting it. So avoid sharing complex data structures that are easily corrupted like double linked lists, and avoid using locks such as mutexs as this may cause your callback function to block and therefore drop audio. Such techniques may even cause deadlock on some platforms.
+You can communicate with your callback routine through the data structure you passed in on the open call, or through global variables, or using other interprocess communication techniques, but please be aware that your callback function may be called at interrupt time when your foreground process is least expecting it. So avoid sharing complex data structures that are easily corrupted like double linked lists, and avoid using locks such as mutexes as this may cause your callback function to block and therefore drop audio. Such techniques may even cause deadlock on some platforms.
 
 PortAudio will continue to call your callback and process audio until you stop the stream. This can be done in one of several ways, but, before we do so, we'll want to see that some of our audio gets processed by sleeping for a few seconds. This is easy to do with Pa_Sleep(), which is used by many of the examples in the patests/ directory for exactly this purpose. Note that, for a variety of reasons, you can not rely on this function for accurate scheduling, so your stream may not run for exactly the same amount of time as you expect, but it's good enough for our example.
 
index d5f99eca269f8be9de1ac6a6abb5670a287180f4..337e06d01d72a9aaeefce47f4141d73934f6146e 100644 (file)
@@ -176,7 +176,7 @@ int main(void)
 
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return -1;
index a141ac02cf06e765079824eb1be6761f8c5e108a..71b0198d9a249510b9a96ef2b8267fd8d6b0ddcd 100644 (file)
@@ -160,7 +160,7 @@ int main(void)
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index 7eb7f207bb65be0575adfdcdd6e80458b8fd2d7a..ae645d69ece2da5607dd639a4a6aa24b5ce783c1 100644 (file)
@@ -526,7 +526,7 @@ int main(void)
 
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return 0;
index 3714ba7603ac2543f2b648efecdd102dcd3d15b0..cd8432411a3acccc7080b0a1a76886e5dfbc6c8e 100644 (file)
@@ -272,7 +272,7 @@ int main(void)
     return 0;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return 0;
index 4208a019efb2356d40f418e32689e1aaf34df30b..813c74d9fa59d380f9847b672e90840901cecc47 100644 (file)
@@ -197,7 +197,7 @@ error2:
        Pa_CloseStream( stream );
     }
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return -1;
index 99226fca84e9167926a4c504b391da3e00cc9f83..4c9105c352eac4e66fe2d8d0dab20a9fac079afd 100644 (file)
@@ -344,7 +344,7 @@ done:
         free( data.recordedSamples );
     if( err != paNoError )
     {
-        fprintf( stderr, "An error occured while using the portaudio stream\n" );
+        fprintf( stderr, "An error occurred while using the portaudio stream\n" );
         fprintf( stderr, "Error number: %d\n", err );
         fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
         err = 1;          /* Always return 0 or 1, but no other return codes. */
index 1f1211fce9872b33a18025c241f5a99f9ed9bb5f..1e1f47371d18c0d28538057f35097b0e31d28b69 100644 (file)
@@ -448,7 +448,7 @@ done:
         PaUtil_FreeMemory( data.ringBufferData );
     if( err != paNoError )
     {
-        fprintf( stderr, "An error occured while using the portaudio stream\n" );
+        fprintf( stderr, "An error occurred while using the portaudio stream\n" );
         fprintf( stderr, "Error number: %d\n", err );
         fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
         err = 1;          /* Always return 0 or 1, but no other return codes. */
index 235f247e92b3c3f08aa6b877ac7691fc8320966c..6f477b878973962465fb7f0d46e9efc31dd3e5a6 100644 (file)
@@ -126,7 +126,7 @@ int main(void)
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index bda290b8ead029f82ce8f1922586dd504d95a8ca..99fecf711d029fe934ca09446e8ffed68058cc4c 100644 (file)
@@ -168,7 +168,7 @@ int main(void)
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index 2859a57867c8c1cd30113bceaf3de9749c3b19d8..64d78294fd5194b2413af88acbc5070f35706509 100644 (file)
@@ -268,7 +268,7 @@ int main(void)
     return paNoError;
 
 error:
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", paInit.result() );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( paInit.result() ) );
     return 1;
index e59c571f420eacd794ab189a6565caae528d784f..ac9212a0a933d0d1ab73750e1e02fd5ff64fbc16 100644 (file)
@@ -213,7 +213,7 @@ error:
     Pa_Terminate();
     free( data.buffer );
 
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index ddab73da0d113c155e38ef1b4c6fc8f111c2dac7..dfccc99e47b039bc17b44f20355053960604b0ca 100644 (file)
@@ -203,7 +203,7 @@ int main(int argc, char* argv[])
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index f5ead3fb9562d19a5b402d430914a20be4f53096..9021b94524a35f77dcf0b3c2cc5ff144a4c785d5 100644 (file)
@@ -151,7 +151,7 @@ int main(void)
     return err;
 
 error:
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
        // Print more information about the error.
index 3a038e18588202598773987e0d3c1ef85f1432e3..bc266c04626697b1f4457179be9cd9bd1241c5d2 100644 (file)
@@ -160,7 +160,7 @@ int main(void)
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index 9c606a9c7cead335866acf8140ec09c48baf139c..e612aa35156bbb4c0bc6209bd8a376eeaa9c8973 100644 (file)
@@ -52,7 +52,7 @@ extern "C"
 #endif /* __cplusplus */
 
 
-/** Retrieve legal native buffer sizes for the specificed device, in sample frames.
+/** Retrieve legal native buffer sizes for the specified device, in sample frames.
 
  @param device The global index of the device about which the query is being made.
  @param minBufferSizeFrames A pointer to the location which will receive the minimum buffer size value.
@@ -112,7 +112,7 @@ PaError PaAsio_GetOutputChannelName( PaDeviceIndex device, int channelIndex,
  @param stream The stream to operate on.
  @param sampleRate The new sample rate. 
 
- Note that this function may fail if the stream is alredy running and the 
+ Note that this function may fail if the stream is already running and the 
  ASIO driver does not support switching the sample rate of a running stream.
 
  Returns paIncompatibleStreamHostApi if stream is not a paASIO stream.
index 83e40a6ac5b9db6ea1a90c4ace1e42ba992e634a..85ecc03f101e5ee211538fd455c79b8983e9617d 100644 (file)
@@ -112,20 +112,20 @@ AudioDeviceID PaMacCore_GetStreamOutputDevice( PaStream* s );
  * Returns a statically allocated string with the device's name
  * for the given channel. NULL will be returned on failure.
  *
- * This function's implemenation is not complete!
+ * This function's implementation is not complete!
  *
  * @param device The PortAudio device index.
  * @param channel The channel number who's name is requested.
  * @return a statically allocated string with the name of the device.
  *         Because this string is statically allocated, it must be
- *         coppied if it is to be saved and used by the user after
+ *         copied if it is to be saved and used by the user after
  *         another call to this function.
  *
  */
 const char *PaMacCore_GetChannelName( int device, int channelIndex, bool input );
 
     
-/** Retrieve the range of legal native buffer sizes for the specificed device, in sample frames.
+/** Retrieve the range of legal native buffer sizes for the specified device, in sample frames.
  
  @param device The global index of the PortAudio device about which the query is being made.
  @param minBufferSizeFrames A pointer to the location which will receive the minimum buffer size value.
@@ -158,7 +158,7 @@ PaError PaMacCore_GetBufferSizeRange( PaDeviceIndex device,
  * are supported by the device. */
 #define paMacCoreFailIfConversionRequired (0x02)
 
-/** These flags set the SR conversion quality, if required. The wierd ordering
+/** These flags set the SR conversion quality, if required. The weird ordering
  * allows Maximum Quality to be the default.*/
 #define paMacCoreConversionQualityMin    (0x0100)
 #define paMacCoreConversionQualityMedium (0x0200)
index e8b93b67bc84d81c442a355a550602d6129a5765..ab5d541136682d0baa42b9cc8e48f6bf1bdf90cd 100644 (file)
@@ -267,7 +267,7 @@ PaWasapiJackDescription;
 /** Stream category.
    Note:
     - values are equal to WASAPI AUDIO_STREAM_CATEGORY enum
-    - supported since Windows 8.0, noop on earler versions
+    - supported since Windows 8.0, noop on earlier versions
     - values 1,2 are deprecated on Windows 10 and not included into enumeration
 
  @version Available as of 19.6.0
@@ -291,7 +291,7 @@ PaWasapiStreamCategory;
 /** Stream option.
    Note:
     - values are equal to WASAPI AUDCLNT_STREAMOPTIONS enum
-    - supported since Windows 8.1, noop on earler versions
+    - supported since Windows 8.1, noop on earlier versions
 
  @version Available as of 19.6.0
 */
@@ -380,7 +380,7 @@ PaError PaWasapi_UpdateDeviceList();
 /** Get current audio format of the device assigned to the opened stream.
 
     Format is represented by PaWinWaveFormat or WAVEFORMATEXTENSIBLE structure.
-    Use this function to reconfirm format if PA's processor is overriden and
+    Use this function to reconfirm format if PA's processor is overridden and
     paWinWasapiRedirectHostProcessor flag is specified.
 
  @param pStream    Pointer to PaStream object.
@@ -388,7 +388,7 @@ PaError PaWasapi_UpdateDeviceList();
  @param formatSize Size of PaWinWaveFormat or WAVEFORMATEXTENSIBLE structure in bytes.
  @param bOutput    TRUE (1) for output stream, FALSE (0) for input stream.
 
- @return Non-negative value indicating the number of bytes copied into format decriptor
+ @return Non-negative value indicating the number of bytes copied into format descriptor
          or, a PaErrorCode (which is always negative) if PortAudio is not initialized
          or an error is encountered.
 */
@@ -404,7 +404,7 @@ int PaWasapi_GetDeviceCurrentFormat( PaStream *pStream, void *pFormat, unsigned
  @param  formatSize Size of PaWinWaveFormat or WAVEFORMATEXTENSIBLE structure in bytes.
  @param  device     Device index.
 
- @return Non-negative value indicating the number of bytes copied into format decriptor
+ @return Non-negative value indicating the number of bytes copied into format descriptor
          or, a PaErrorCode (which is always negative) if PortAudio is not initialized
          or an error is encountered.
 */
@@ -420,7 +420,7 @@ int PaWasapi_GetDeviceDefaultFormat( void *pFormat, unsigned int formatSize, PaD
  @param  formatSize Size of PaWinWaveFormat or WAVEFORMATEXTENSIBLE structure in bytes.
  @param  device     Device index.
 
- @return Non-negative value indicating the number of bytes copied into format decriptor
+ @return Non-negative value indicating the number of bytes copied into format descriptor
          or, a PaErrorCode (which is always negative) if PortAudio is not initialized
          or an error is encountered.
 */
@@ -468,7 +468,7 @@ PaError PaWasapi_ThreadPriorityRevert( void *pTask );
 /** Get number of frames per host buffer.
 
     It is max value of frames of WASAPI buffer which can be locked for operations.
-    Use this method as helper to findout max values of inputFrames/outputFrames
+    Use this method as helper to find out max values of inputFrames/outputFrames
     of PaWasapiHostProcessorCallback.
 
  @param  pStream Pointer to PaStream object.
@@ -624,7 +624,7 @@ PaError PaWasapiWinrt_PopulateDeviceList( const unsigned short **pId, const unsi
         under Windows Vista x64 when application is WOW64(32-bit) and Event-Driven method simply
         times out (event handle is never signalled on buffer completion). Please note, such WOW64 bug
         does not exist in Vista x86 or Windows 7.
-        Polling can be setup by speciying 'paWinWasapiPolling' flag. Our WASAPI implementation detects
+        Polling can be setup by specifying 'paWinWasapiPolling' flag. Our WASAPI implementation detects
         WOW64 bug and sets 'paWinWasapiPolling' automatically.
 
     Thread priority:
index f84b68b892dd7e79ccfb7e78fa4c498f7a60239d..b80743c76e7112f59e308e017662587fabc3a9e6 100644 (file)
@@ -109,7 +109,7 @@ typedef struct PaWinMmeStreamInfo{
         If devices are specified here, the corresponding device parameter
         to Pa_OpenStream() should be set to paUseHostApiSpecificDeviceSpecification,
         otherwise an paInvalidDevice error will result.
-        The total number of channels accross all specified devices
+        The total number of channels across all specified devices
         must agree with the corresponding channelCount parameter to
         Pa_OpenStream() otherwise a paInvalidChannelCount error will result.
     */
index a356acafa4548959e97355d1e8044b7201661754..d668a022dc278f73f97456b591dc00429b28c4ec 100644 (file)
--- a/ltmain.sh
+++ b/ltmain.sh
@@ -189,7 +189,7 @@ func_basename ()
 #             to NONDIR_REPLACEMENT.
 #             value returned in "$func_dirname_result"
 #   basename: Compute filename of FILE.
-#             value retuned in "$func_basename_result"
+#             value returned in "$func_basename_result"
 # Implementation must be kept synchronized with func_dirname
 # and func_basename. For efficiency, we do not delegate to
 # those functions but instead duplicate the functionality here.
@@ -4394,7 +4394,7 @@ EOF
         {
           /* however, if there is an option in the LTWRAPPER_OPTION_PREFIX
              namespace, but it is not one of the ones we know about and
-             have already dealt with, above (inluding dump-script), then
+             have already dealt with, above (including dump-script), then
              report an error. Otherwise, targets might begin to believe
              they are allowed to use options in the LTWRAPPER_OPTION_PREFIX
              namespace. The first time any user complains about this, we'll
index 1388246e06b38b9c61022fcb4271f454f673e633..029240d4d2a6410172c1dfec7620ea74030ceaa9 100644 (file)
@@ -98,7 +98,7 @@ int main(void)
 
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return -1;
index 470b4b0436463089b834fb43f42184d15fbee51d..431587c4bbf282378d61c0cece93ae5cb6f60aa9 100644 (file)
@@ -122,7 +122,7 @@ int main(void)
     return 0;
 
 error:
-    fprintf( stderr, "An error occured while using PortAudio\n" );
+    fprintf( stderr, "An error occurred while using PortAudio\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return -1;
index 39efe9ec42a04f978e04761c47495dd80e862e14..2303d20e7fc278da7ae98a90e6f917f5d4a11b9b 100644 (file)
@@ -107,7 +107,7 @@ int main(void)
     return 0;
 
 error:
-    fprintf( stderr, "An error occured while using PABLIO\n" );
+    fprintf( stderr, "An error occurred while using PABLIO\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return -1;
index b62c820bb7fa462dee83e2e7dda2761fba1ebb71..70686c19b200957e72051c177e1c599acda0bc53 100644 (file)
@@ -105,7 +105,7 @@ int main(void)
     return 0;
 
 error:
-    fprintf( stderr, "An error occured while using PABLIO\n" );
+    fprintf( stderr, "An error occurred while using PABLIO\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return -1;
index 2a867983ba2a8ec05bd75cc007cbcc39f7b88e94..c98acbbd525e3e057b52ddb9eddd4bd63e383a56 100644 (file)
@@ -130,7 +130,7 @@ void PaQa_SetupSineGenerator( PaQaSineGenerator *generator, double frequency, do
 /*================= Recordings ===================================*/
 /*================================================================*/
 /**
- * Allocate memory for containg a mono audio signal. Set up recording for writing.
+ * Allocate memory for containing a mono audio signal. Set up recording for writing.
  */
  int PaQa_InitializeRecording( PaQaRecording *recording, int maxSamples, int sampleRate );
  
index cb7100d7807a8b83cd648550c64cc825cf95d095..ac8e841b7deefd80262c70953443ae563024a513 100644 (file)
@@ -891,7 +891,7 @@ static int PaQa_SingleLoopBackTest( UserOptions *userOptions, TestParameters *te
                printf( "OK" );
        }
 
-    // Print the # errors so far to make it easier to see where the error occured.
+    // Print the # errors so far to make it easier to see where the error occurred.
        printf( " - #errs = %d\n", g_testsFailed );
 
        PaQa_TeardownLoopbackContext( &loopbackContext );
@@ -1304,7 +1304,7 @@ static int CheckLoopbackAndScan( UserOptions *userOptions,
 /**
  * Scan every combination of output to input device.
  * If a loopback is found the analyse the combination.
- * The scan can be overriden using the -i and -o command line options.
+ * The scan can be overridden using the -i and -o command line options.
  */
 static int ScanForLoopback(UserOptions *userOptions)
 {
index 97b5058c855bd620fb5f0a7c272e48544ba560f3..3f04ada4c46a3e9950589984792f3ccfa4b69d1b 100644 (file)
@@ -146,7 +146,7 @@ void PaQa_ConvertFromFloat( const float *input, int numSamples, PaSampleFormat o
                        for( i=0; i<numSamples; i++ )
                        {
                                float value = *input++;
-                               // Use assymmetric conversion to avoid clipping.
+                               // Use asymmetric conversion to avoid clipping.
                                short sval = value * 32767.0;
                                *data++ = sval;
                        }
@@ -159,7 +159,7 @@ void PaQa_ConvertFromFloat( const float *input, int numSamples, PaSampleFormat o
                        for( i=0; i<numSamples; i++ )
                        {
                                float value = *input++;
-                               // Use assymmetric conversion to avoid clipping.
+                               // Use asymmetric conversion to avoid clipping.
                                int ival = value * ((double) 0x007FFFF0);
                                ival = ival << 8;
                                *data++ = ival;
index bd1f4b0fd4f82f8295ff3e0f48e2fd31e2d62e25..bc1bb7d23f6db7d4c8001ac46f68f0404d8d6f99 100644 (file)
@@ -49,7 +49,7 @@
  of memory which are allocated at the same time (such as during initialization)
  and need to be deallocated at the same time. The allocation group maintains
  a list of allocated blocks, and can free all allocations at once. This
- can be usefull for cleaning up after a partially initialized object fails.
+ can be useful for cleaning up after a partially initialized object fails.
 
  The allocation group implementation is built on top of the lower
  level allocation functions defined in pa_util.h
index 2107f5e28913f00ad1ae6c0fceeda4c7a320f41f..16f5864de1cc9e7b246e059eec2d2269acb44171 100644 (file)
@@ -1325,7 +1325,7 @@ static void Int16_To_Float32(
 
     while( count-- )
     {
-        float samp = *src * const_1_div_32768_; /* FIXME: i'm concerned about this being asymetrical with float->int16 -rb */
+        float samp = *src * const_1_div_32768_; /* FIXME: i'm concerned about this being asymmetrical with float->int16 -rb */
         *dest = samp;
 
         src += sourceStride;
index 469f075d6f46534fba30c9a7bb00e345b51fed04..1a912eb488613c43e20d5b1e64aabec9e42e6b70 100644 (file)
@@ -59,7 +59,7 @@ struct PaUtilTriangularDitherGenerator;
 
 /** Choose an available sample format which is most appropriate for
  representing the requested format. If the requested format is not available
- higher quality formats are considered before lower quality formates.
+ higher quality formats are considered before lower quality formats.
  @param availableFormats A variable containing the logical OR of all available
  formats.
  @param format The desired format.
@@ -211,7 +211,7 @@ typedef struct{
     PaUtil_SelectConverter() uses this table to lookup the appropriate
     conversion functions. The fields of this structure are initialized
     with default conversion functions. Fields may be NULL, indicating that
-    no conversion function is available. User code may substitue optimised
+    no conversion function is available. User code may substitute optimised
     conversion functions by assigning different function pointers to
     these fields.
 
@@ -242,7 +242,7 @@ typedef struct{
 /** A table of pointers to all required zeroer functions.
     PaUtil_SelectZeroer() uses this table to lookup the appropriate
     conversion functions. The fields of this structure are initialized
-    with default conversion functions. User code may substitue optimised
+    with default conversion functions. User code may substitute optimised
     conversion functions by assigning different function pointers to
     these fields.
 
index 9e8e059624ca22db6e95e2be29e78edaa57438a7..749665110d691a98439f813a7099e819fd1322b9 100644 (file)
@@ -54,7 +54,7 @@
  example.
 
  A PA_VALIDATE_ENDIANNESS macro is provided to compare the compile time
- and runtime endiannes and raise an assertion if they don't match.
+ and runtime endianness and raise an assertion if they don't match.
 */
 
 
@@ -65,7 +65,7 @@ extern "C"
 
 /* If this is an apple, we need to do detect endianness this way */
 #if defined(__APPLE__)
-    /* we need to do some endian detection that is sensitive to harware arch */
+    /* we need to do some endian detection that is sensitive to hardware arch */
     #if defined(__LITTLE_ENDIAN__)
        #if !defined( PA_LITTLE_ENDIAN )
           #define PA_LITTLE_ENDIAN
@@ -83,7 +83,7 @@ extern "C"
     #endif
 #else
     /* this is not an apple, so first check the existing defines, and, failing that,
-       detect well-known architechtures. */
+       detect well-known architectures. */
 
     #if defined(PA_LITTLE_ENDIAN) || defined(PA_BIG_ENDIAN)
         /* endianness define has been set externally, such as by autoconf */
index 9d30f4837acbf613b702f1929f6c908c8dc1f378..9a258eb3d6845f888558a132a1e4101a2fc05704 100644 (file)
@@ -74,7 +74,7 @@
 #include "pa_types.h"
 #include "pa_hostapi.h"
 #include "pa_stream.h"
-#include "pa_trace.h" /* still usefull?*/
+#include "pa_trace.h" /* still useful?*/
 #include "pa_debugprint.h"
 
 #ifndef PA_GIT_REVISION
@@ -805,7 +805,7 @@ static int SampleFormatIsValid( PaSampleFormat format )
 }
 
 /*
-    NOTE: make sure this validation list is kept syncronised with the one in
+    NOTE: make sure this validation list is kept synchronised with the one in
             pa_hostapi.h
 
     ValidateOpenStreamParameters() checks that parameters to Pa_OpenStream()
@@ -884,7 +884,7 @@ static PaError ValidateOpenStreamParameters(
     PaDeviceIndex *hostApiInputDevice,
     PaDeviceIndex *hostApiOutputDevice )
 {
-    int inputHostApiIndex  = -1, /* Surpress uninitialised var warnings: compiler does */
+    int inputHostApiIndex  = -1, /* Suppress uninitialised var warnings: compiler does */
         outputHostApiIndex = -1; /* not see that if inputParameters and outputParame-  */
                                  /* ters are both nonzero, these indices are set.      */
 
@@ -1195,7 +1195,7 @@ PaError Pa_OpenStream( PaStream** stream,
     }
 
     /* Check for parameter errors.
-        NOTE: make sure this validation list is kept syncronised with the one
+        NOTE: make sure this validation list is kept synchronised with the one
         in pa_hostapi.h
     */
 
index 37b91d7218e193249dcf76876aa9f04c8bb9137d..803144ae0ffdd98830b048dd4c0e5abca5a05633 100644 (file)
@@ -78,7 +78,7 @@
 
  When a stream is opened, the buffer processor should be initialized using
  PaUtil_InitializeBufferProcessor. This function initializes internal state
- and allocates temporary buffers as neccesary according to the supplied
+ and allocates temporary buffers as necessary according to the supplied
  configuration parameters. Some of the parameters correspond to those requested
  by the user in their call to Pa_OpenStream(), others reflect the requirements
  of the host API implementation - they indicate host buffer sizes, formats,
         PaUtil_SetInterleavedInputChannels, PaUtil_SetNonInterleavedInputChannel.
         Which function you call will depend on whether the host buffer(s) are
         interleaved or not.
-    - If the available host data is split accross two buffers (for example a
+    - If the available host data is split across two buffers (for example a
         data range at the end of a circular buffer and another range at the
         beginning of the circular buffer), also call
         PaUtil_Set2ndInputFrameCount, PaUtil_Set2ndInputChannel,
         PaUtil_SetInterleavedOutputChannels, PaUtil_SetNonInterleavedOutputChannel.
         Which function you call will depend on whether the host buffer(s) are
         interleaved or not.
-    - If the available host output buffer space is split accross two buffers
+    - If the available host output buffer space is split across two buffers
         (for example a data range at the end of a circular buffer and another
         range at the beginning of the circular buffer), call
         PaUtil_Set2ndOutputFrameCount, PaUtil_Set2ndOutputChannel,
@@ -237,7 +237,7 @@ typedef enum {
 }PaUtilHostBufferSizeMode;
 
 
-/** @brief An auxilliary data structure used internally by the buffer processor
+/** @brief An auxiliary data structure used internally by the buffer processor
  to represent host input and output buffers. */
 typedef struct PaUtilChannelDescriptor{
     void *data;
@@ -452,10 +452,10 @@ void PaUtil_SetInputFrameCount( PaUtilBufferProcessor* bufferProcessor,
         unsigned long frameCount );
 
         
-/** Indicate that no input is avalable. This function should be used when
+/** Indicate that no input is available. This function should be used when
  priming the output of a full-duplex stream opened with the
  paPrimeOutputBuffersUsingStreamCallback flag. Note that it is not necessary
- to call this or any othe PaUtil_Set*Input* functions for ouput-only streams.
+ to call this or any other PaUtil_Set*Input* functions for ouput-only streams.
 
  @param bufferProcessor The buffer processor.
 */
@@ -648,11 +648,11 @@ void PaUtil_BeginBufferProcessing( PaUtilBufferProcessor* bufferProcessor,
 
  If the stream callback is called its result is stored in *callbackResult. If
  the stream callback returns paComplete or paAbort, all output buffers will be
- full of valid data - some of which may be zeros to acount for data that
+ full of valid data - some of which may be zeros to account for data that
  wasn't generated by the terminating callback.
 
  @return The number of frames processed. This usually corresponds to the
- number of frames specified by the PaUtil_Set*FrameCount functions, exept in
+ number of frames specified by the PaUtil_Set*FrameCount functions, except in
  the paUtilVariableHostBufferSizePartialUsageAllowed buffer size mode when a
  smaller value may be returned.
 */
@@ -660,7 +660,7 @@ unsigned long PaUtil_EndBufferProcessing( PaUtilBufferProcessor* bufferProcessor
         int *callbackResult );
 
 
-/** Determine whether any callback generated output remains in the bufffer
+/** Determine whether any callback generated output remains in the buffer
  processor's internal buffers. This method may be used to determine when to
  continue calling PaUtil_EndBufferProcessing() after the callback has returned
  a callbackResult of paComplete.
index ad5dac528792cebfeb05a22d5eb2c4e6e7d3222f..43ea894eba16154a66bd4041809639d5ac9b6ccc 100644 (file)
@@ -65,7 +65,7 @@ struct PaUtilHostApiRepresentation;
  host api specific extension functions which aren't passed a rep pointer
  by pa_front.c.
 
- @param hostApi A pointer to a host API represenation pointer. Apon success
+ @param hostApi A pointer to a host API representation pointer. Upon success
  this will receive the requested representation pointer.
 
  @param type A valid host API type identifier.
@@ -79,7 +79,7 @@ PaError PaUtil_GetHostApiRepresentation( struct PaUtilHostApiRepresentation **ho
 
 
 /** Convert a PortAudio device index into a host API specific device index.
- @param hostApiDevice Pointer to a device index, on success this will recieve the
+ @param hostApiDevice Pointer to a device index, on success this will receive the
  converted device index value.
  @param device The PortAudio device index to convert.
  @param hostApi The host api which the index should be converted for.
@@ -121,7 +121,7 @@ void PaUtil_SetLastHostErrorInfo( PaHostApiTypeId hostApiType, long errorCode,
 void *PaUtil_AllocateMemory( long size );
 
 
-/** Realease block if non-NULL. block may be NULL */
+/** Release block if non-NULL. block may be NULL */
 void PaUtil_FreeMemory( void *block );
 
 
index 5539d9dd37e930dee89b3248cd3fae04c15081c7..4dfdc7532c02f455e4b5328df98bd6fd233dfc39 100644 (file)
@@ -1962,7 +1962,7 @@ static PaError PaAlsaStreamComponent_InitialConfigure( PaAlsaStreamComponent *se
 {
     /* Configuration consists of setting all of ALSA's parameters.
      * These parameters come in two flavors: hardware parameters
-     * and software paramters.  Hardware parameters will affect
+     * and software parameters.  Hardware parameters will affect
      * the way the device is initialized, software parameters
      * affect the way ALSA interacts with me, the user-level client.
      */
@@ -1976,7 +1976,7 @@ static PaError PaAlsaStreamComponent_InitialConfigure( PaAlsaStreamComponent *se
 
     /* self->framesPerPeriod = framesPerHostBuffer; */
 
-    /* ... fill up the configuration space with all possibile
+    /* ... fill up the configuration space with all possible
      * combinations of parameters this device will accept */
     ENSURE_( alsa_snd_pcm_hw_params_any( pcm, hwParams ), paUnanticipatedHostError );
 
@@ -2161,7 +2161,7 @@ static PaError PaAlsaStream_Initialize( PaAlsaStream *self, PaAlsaHostApiReprese
 
     self->framesPerUserBuffer = framesPerUserBuffer;
     self->neverDropInput = streamFlags & paNeverDropInput;
-    /* XXX: Ignore paPrimeOutputBuffersUsingStreamCallback untill buffer priming is fully supported in pa_process.c */
+    /* XXX: Ignore paPrimeOutputBuffersUsingStreamCallback until buffer priming is fully supported in pa_process.c */
     /*
     if( outParams & streamFlags & paPrimeOutputBuffersUsingStreamCallback )
         self->primeBuffers = 1;
@@ -2389,7 +2389,7 @@ static PaError PaAlsaStreamComponent_DetermineFramesPerBuffer( PaAlsaStreamCompo
                 {
                     framesPerHostBuffer *= 2;
                 }
-                /* One extra period is preferrable to one less (should be more robust) */
+                /* One extra period is preferable to one less (should be more robust) */
                 if( bufferSize / framesPerHostBuffer < numPeriods )
                 {
                     framesPerHostBuffer /= 2;
@@ -4186,7 +4186,7 @@ error:
  * directly is obtained from ALSA, we then request as much directly accessible memory as possible within this amount
  * from ALSA. The buffer memory is registered with the PA buffer processor and processing is carried out with
  * PaUtil_EndBufferProcessing. Finally, the number of processed frames is reported to ALSA. The processing can
- * happen in several iterations untill we have consumed the known number of available frames (or an xrun is detected).
+ * happen in several iterations until we have consumed the known number of available frames (or an xrun is detected).
  */
 static void *CallbackThreadFunc( void *userData )
 {
@@ -4272,7 +4272,7 @@ static void *CallbackThreadFunc( void *userData )
             /* There is still buffered output that needs to be processed */
         }
 
-        /* Wait for data to become available, this comes down to polling the ALSA file descriptors untill we have
+        /* Wait for data to become available, this comes down to polling the ALSA file descriptors until we have
          * a number of available frames.
          */
         PA_ENSURE( PaAlsaStream_WaitForFrames( stream, &framesAvail, &xrun ) );
index f230d8788d404c395497093d8b9e2503b906a75d..c9ca7869cc5d6e639928708d28e0262225dad37b 100644 (file)
@@ -46,7 +46,7 @@
         08-20-01 More conversion, PA_StreamTime, Pa_GetHostError : Stephane Letz
         08-21-01 PaUInt8 bug correction, implementation of ASIOSTFloat32LSB and ASIOSTFloat32MSB native formats : Stephane Letz
         08-24-01 MAX_INT32_FP hack, another Uint8 fix : Stephane and Phil
-        08-27-01 Implementation of hostBufferSize < userBufferSize case, better management of the ouput buffer when
+        08-27-01 Implementation of hostBufferSize < userBufferSize case, better management of the output buffer when
                  the stream is stopped : Stephane Letz
         08-28-01 Check the stream pointer for null in bufferSwitchTimeInfo, correct bug in bufferSwitchTimeInfo when
                  the stream is stopped : Stephane Letz
         10-26-01 Management of hostBufferSize and userBufferSize of any size : Stephane Letz
         10-27-01 Improve calculus of hostBufferSize to be multiple or divisor of userBufferSize if possible : Stephane and Phil
         10-29-01 Change MAX_INT32_FP to (2147483520.0f) to prevent roundup to 0x80000000 : Phil Burk
-        10-31-01 Clear the ouput buffer and user buffers in PaHost_StartOutput, correct bug in GetFirstMultiple : Stephane Letz
+        10-31-01 Clear the output buffer and user buffers in PaHost_StartOutput, correct bug in GetFirstMultiple : Stephane Letz
         11-06-01 Rename functions : Stephane Letz
         11-08-01 New Pa_ASIO_Adaptor_Init function to init Callback adpatation variables, cleanup of Pa_ASIO_Callback_Input: Stephane Letz
         11-29-01 Break apart device loading to debug random failure in Pa_ASIO_QueryDeviceInfo ; Phil Burk
-        01-03-02 Desallocate all resources in PaHost_Term for cases where Pa_CloseStream is not called properly :  Stephane Letz
+        01-03-02 Deallocate all resources in PaHost_Term for cases where Pa_CloseStream is not called properly :  Stephane Letz
         02-01-02 Cleanup, test of multiple-stream opening : Stephane Letz
         19-02-02 New Pa_ASIO_loadDriver that calls CoInitialize on each thread on Windows : Stephane Letz
         09-04-02 Correct error code management in PaHost_Term, removes various compiler warning : Stephane Letz
@@ -69,7 +69,7 @@
         12-06-02 Rehashed into new multi-api infrastructure, added support for all ASIO sample formats : Ross Bencina
         18-06-02 Added pa_asio.h, PaAsio_GetAvailableLatencyValues() : Ross B.
         21-06-02 Added SelectHostBufferSize() which selects host buffer size based on user latency parameters : Ross Bencina
-        ** NOTE  maintanance history is now stored in CVS **
+        ** NOTE  maintenance history is now stored in CVS **
 */
 
 /** @file
 
 #include "pa_win_coinitialize.h"
 
-/* This version of pa_asio.cpp is currently only targetted at Win32,
+/* This version of pa_asio.cpp is currently only targeted at Win32,
    It would require a few tweaks to work with pre-OS X Macintosh.
    To make configuration easier, we define WIN32 here to make sure
    that the ASIO SDK knows this is Win32.
@@ -2549,7 +2549,7 @@ static PaError OpenStream( struct PaUtilHostApiRepresentation *hostApi,
                enough to store at least two complete data blocks.
 
                1) Determine the amount of latency to be added to the
-                  prefered ASIO latency.
+                  preferred ASIO latency.
                2) Make sure we have at lest one additional latency frame.
                3) Divide the number of frames by the desired block size to
                   get the number (rounded up to pure integer) of blocks to
@@ -2568,7 +2568,7 @@ static PaError OpenStream( struct PaUtilHostApiRepresentation *hostApi,
             while( lBlockingBufferSize > (lBlockingBufferSizePow2<<=1) );
             lBlockingBufferSize = lBlockingBufferSizePow2;
 
-            /* Compute total intput latency in seconds */
+            /* Compute total input latency in seconds */
             stream->streamRepresentation.streamInfo.inputLatency =
                 (double)( PaUtil_GetBufferProcessorInputLatencyFrames(&stream->bufferProcessor               )
                         + PaUtil_GetBufferProcessorInputLatencyFrames(&stream->blockingState->bufferProcessor)
@@ -2635,7 +2635,7 @@ static PaError OpenStream( struct PaUtilHostApiRepresentation *hostApi,
                enough to store at least two complete data blocks.
 
                1) Determine the amount of latency to be added to the
-                  prefered ASIO latency.
+                  preferred ASIO latency.
                2) Make sure we have at lest one additional latency frame.
                3) Divide the number of frames by the desired block size to
                   get the number (rounded up to pure integer) of blocks to
@@ -2872,7 +2872,7 @@ static void bufferSwitch(long index, ASIOBool directProcess)
 //TAKEN FROM THE ASIO SDK
 
     // the actual processing callback.
-    // Beware that this is normally in a seperate thread, hence be sure that
+    // Beware that this is normally in a separate thread, hence be sure that
     // you take care about thread synchronization. This is omitted here for
     // simplicity.
 
@@ -2904,7 +2904,7 @@ static void bufferSwitch(long index, ASIOBool directProcess)
 static ASIOTime *bufferSwitchTimeInfo( ASIOTime *timeInfo, long index, ASIOBool directProcess )
 {
     // the actual processing callback.
-    // Beware that this is normally in a seperate thread, hence be sure that
+    // Beware that this is normally in a separate thread, hence be sure that
     // you take care about thread synchronization.
 
 
@@ -3269,7 +3269,7 @@ static long asioMessages(long selector, long value, void* message, double* opt)
             break;
 
         case kAsioSupportsTimeInfo:
-            // informs the driver wether the asioCallbacks.bufferSwitchTimeInfo() callback
+            // informs the driver whether the asioCallbacks.bufferSwitchTimeInfo() callback
             // is supported.
             // For compatibility with ASIO 1.0 drivers the host application should always support
             // the "old" bufferSwitch method, too.
@@ -3277,7 +3277,7 @@ static long asioMessages(long selector, long value, void* message, double* opt)
             break;
 
         case kAsioSupportsTimeCode:
-            // informs the driver wether application is interested in time code info.
+            // informs the driver whether application is interested in time code info.
             // If an application does not need to know about time code, the driver has less work
             // to do.
             ret = 0;
@@ -3423,7 +3423,7 @@ static PaError StopStream( PaStream *s )
             blockingState->stopFlag = TRUE;
 
             /* Wait until requested number of buffers has been freed. Time
-               out after twice the blocking i/o ouput buffer could have
+               out after twice the blocking i/o output buffer could have
                been consumed. */
             DWORD timeout = (DWORD)( 2 * blockingState->writeRingBuffer.bufferSize * 1000
                                        / stream->streamRepresentation.streamInfo.sampleRate );
@@ -3762,7 +3762,7 @@ static PaError WriteStream( PaStream      *s     ,
     unsigned int i; /* Just a counter. */
 
 
-    /* Check if the stream ist still available ready to recieve new data. */
+    /* Check if the stream is still available ready to receive new data. */
     if( blockingState->stopFlag || !stream->isActive )
     {
         PA_DEBUG(("Warning! Stream no longer available for writing in WriteStream()\n"));
index 145afe1544d5d66173765351d39ece25a39831c8..4db0b0e011dc6fa4fa8c91d7b90c9eb641d9f627 100644 (file)
@@ -81,7 +81,7 @@ latency will be provided even if a large latency setting is selected.
 - Latency: Latency settings are generally ignored. They may be used as a
 hint for buffer size in paHostFramesPerBufferUnspecified, or the value may
 be used in cases where additional buffering is needed, such as doing input and
-output on seperate devices. Latency settings are always automatically bound
+output on separate devices. Latency settings are always automatically bound
 to "safe" values, however, so setting extreme values here should not be
 an issue.
 
index a0eb6fd4cc8e7dfcd5b967bb1c2cc85b7242c85c..17667348ab8dab9cca5b84f074ebb8daef228563 100644 (file)
@@ -121,7 +121,7 @@ static bool ensureChannelNameSize( int size )
    return true;
 }
 /*
- * Function declared in pa_mac_core.h. retrives channel names.
+ * Function declared in pa_mac_core.h. retrieves channel names.
  */
 const char *PaMacCore_GetChannelName( int device, int channelIndex, bool input )
 {
@@ -1358,7 +1358,7 @@ static PaError OpenAndSetupOneAudioUnit(
     /*  set device format first, but only touch the device if the user asked */
     if( inStreamParams ) {
        /*The callback never calls back if we don't set the FPB */
-       /*This seems wierd, because I would think setting anything on the device
+       /*This seems weird, because I would think setting anything on the device
          would be disruptive.*/
        paResult = setBestFramesPerBuffer( *audioDevice, FALSE,
                                           requestedFramesPerBuffer,
@@ -1376,7 +1376,7 @@ static PaError OpenAndSetupOneAudioUnit(
     }
     if( outStreamParams && !inStreamParams ) {
        /*The callback never calls back if we don't set the FPB */
-       /*This seems wierd, because I would think setting anything on the device
+       /*This seems weird, because I would think setting anything on the device
          would be disruptive.*/
        paResult = setBestFramesPerBuffer( *audioDevice, TRUE,
                                           requestedFramesPerBuffer,
@@ -1758,7 +1758,7 @@ static PaError OpenStream( struct PaUtilHostApiRepresentation *hostApi,
     else
     {
         inputChannelCount = 0;
-        inputSampleFormat = hostInputSampleFormat = paFloat32; /* Surpress 'uninitialised var' warnings. */
+        inputSampleFormat = hostInputSampleFormat = paFloat32; /* Suppress 'uninitialised var' warnings. */
     }
 
     if( outputParameters )
@@ -1788,7 +1788,7 @@ static PaError OpenStream( struct PaUtilHostApiRepresentation *hostApi,
     else
     {
         outputChannelCount = 0;
-        outputSampleFormat = hostOutputSampleFormat = paFloat32; /* Surpress 'uninitialized var' warnings. */
+        outputSampleFormat = hostOutputSampleFormat = paFloat32; /* Suppress 'uninitialized var' warnings. */
     }
 
     /* validate platform specific flags */
@@ -2182,8 +2182,8 @@ static OSStatus AudioIOProc( void *inRefCon,
     
    /* -----------------------------------------------------------------*\
       This output may be useful for debugging,
-      But printing durring the callback is a bad enough idea that
-      this is not enabled by enableing the usual debugging calls.
+      But printing during the callback is a bad enough idea that
+      this is not enabled by enabling the usual debugging calls.
    \* -----------------------------------------------------------------*/
    /*
    static int renderCount = 0;
@@ -2622,7 +2622,7 @@ stop_stream:
 static PaError CloseStream( PaStream* s )
 {
     /* This may be called from a failed OpenStream.
-       Therefore, each piece of info is treated seperately. */
+       Therefore, each piece of info is treated separately. */
     PaError result = paNoError;
     PaMacCoreStream *stream = (PaMacCoreStream*)s;
 
index 679c6ba0aec3e17a30bf9f6fae0434133852b65a..e99d55e9c62af69dfa81fafa5c9b54c9911333ea 100644 (file)
@@ -213,7 +213,7 @@ PaError blioSetIsInputEmpty( PaMacBlio *blio, bool isEmpty )
       goto done;
 
    /* we need to update the value. Here's what we do:
-    * - Lock the mutex, so noone else can write.
+    * - Lock the mutex, so no one else can write.
     * - update the value.
     * - unlock.
     * - broadcast to all listeners.
@@ -239,7 +239,7 @@ PaError blioSetIsOutputFull( PaMacBlio *blio, bool isFull )
       goto done;
 
    /* we need to update the value. Here's what we do:
-    * - Lock the mutex, so noone else can write.
+    * - Lock the mutex, so no one else can write.
     * - update the value.
     * - unlock.
     * - broadcast to all listeners.
@@ -334,7 +334,7 @@ PaError destroyBlioRingBuffers( PaMacBlio *blio )
 }
 
 /*
- * this is the BlioCallback function. It expects to recieve a PaMacBlio Object
+ * this is the BlioCallback function. It expects to receive a PaMacBlio Object
  * pointer as userData.
  *
  */
index f3563eeebc59224c601dfec78e5a3b075f261721..c6d8605b1145ffb225c26184688a9d0882c906c1 100644 (file)
@@ -168,7 +168,7 @@ PaError PaMacCore_SetError(OSStatus error, int line, int isError)
         errorText = "Audio Unit: Format Not Supported";
         result = paInternalError; break;
     case kAudioUnitErr_Uninitialized:
-        errorText = "Audio Unit: Unitialized";
+        errorText = "Audio Unit: Uninitialized";
         result = paInternalError; break;
     case kAudioUnitErr_InvalidScope:
         errorText = "Audio Unit: Invalid Scope";
@@ -296,12 +296,12 @@ long computeRingBufferSize( const PaStreamParameters *inputParameters,
 
 
 /*
- * Durring testing of core audio, I found that serious crashes could occur
+ * During testing of core audio, I found that serious crashes could occur
  * if properties such as sample rate were changed multiple times in rapid
  * succession. The function below could be used to with a condition variable.
  * to prevent propertychanges from happening until the last property
  * change is acknowledged. Instead, I implemented a busy-wait, which is simpler
- * to implement b/c in second round of testing (nov '09) property changes occured
+ * to implement b/c in second round of testing (nov '09) property changes occurred
  * quickly and so there was no real way to test the condition variable implementation.
  * therefore, this function is not used, but it is aluded to in commented code below,
  * since it represents a theoretically better implementation.
@@ -505,7 +505,7 @@ PaError setBestSampleRateForDevice( const AudioDeviceID device,
    if( err )
       return ERR( err );
 
-   /* -- otherwise, something wierd happened: we didn't set the rate, and we got no errors. Just bail. */
+   /* -- otherwise, something weird happened: we didn't set the rate, and we got no errors. Just bail. */
    return paInternalError;
 }
 
@@ -516,7 +516,7 @@ PaError setBestSampleRateForDevice( const AudioDeviceID device,
    is available, it uses the smallest available size.
    actualFramesPerBuffer will be set to the actual value on successful return.
    OK to pass NULL to actualFramesPerBuffer.
-   The logic is very simmilar too setBestSampleRate only failure here is
+   The logic is very similar too setBestSampleRate only failure here is
    not usually catastrophic.
 */
 PaError setBestFramesPerBuffer( const AudioDeviceID device,
index fc658689ce932979c1fcf2be80949a012590a6a6..e63b3cbb8af0b49a12c9ce3c9f62397de8abf0f1 100644 (file)
@@ -81,7 +81,7 @@
 #define INPUT_ELEMENT  (1)
 #define OUTPUT_ELEMENT (0)
 
-/* Normal level of debugging: fine for most apps that don't mind the occational warning being printf'ed */
+/* Normal level of debugging: fine for most apps that don't mind the occasional warning being printf'ed */
 /*
  */
 #define MAC_CORE_DEBUG
@@ -91,7 +91,7 @@
 # define DBUG(MSG)
 #endif
 
-/* Verbose Debugging: useful for developement */
+/* Verbose Debugging: useful for development */
 /*
 #define MAC_CORE_VERBOSE_DEBUG
 */
@@ -183,7 +183,7 @@ PaError setBestSampleRateForDevice( const AudioDeviceID device,
    is available, it uses the smallest available size.
    actualFramesPerBuffer will be set to the actual value on successful return.
    OK to pass NULL to actualFramesPerBuffer.
-   The logic is very simmilar too setBestSampleRate only failure here is
+   The logic is very similar too setBestSampleRate only failure here is
    not usually catastrophic.
 */
 PaError setBestFramesPerBuffer( const AudioDeviceID device,
index 204004d84c3703ea525526c9f09b391240c5c313..f3cb67f642586bad4e2ae7eaa6838a4c13dae6a4 100644 (file)
@@ -58,7 +58,7 @@
 
 
 /*
-  Use the earliest version of DX required, no need to polute the namespace
+  Use the earliest version of DX required, no need to pollute the namespace
 */
 #ifdef PAWIN_USE_DIRECTSOUNDFULLDUPLEXCREATE
 #define DIRECTSOUND_VERSION 0x0800
@@ -667,7 +667,7 @@ static GUID pawin_IID_IKsPropertySet =
     property, and the other is using DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE.
     I tried both methods and only the second worked. I found two postings on the
     net from people who had the same problem with the first method, so I think the method used here is 
-    more common/likely to work. The probem is that IKsPropertySet_Get returns S_OK
+    more common/likely to work. The problem is that IKsPropertySet_Get returns S_OK
     but the fields of the device description are not filled in.
 
     The mechanism we use works by registering an enumeration callback which is called for 
@@ -757,7 +757,7 @@ static double defaultSampleRateSearchOrder_[] =
 /************************************************************************************
 ** Extract capabilities from an output device, and add it to the device info list
 ** if successful. This function assumes that there is enough room in the
-** device info list to accomodate all entries.
+** device info list to accommodate all entries.
 **
 ** The device will not be added to the device list if any errors are encountered.
 */
@@ -1014,7 +1014,7 @@ static PaError AddOutputDeviceInfoFromDirectSound(
 /************************************************************************************
 ** Extract capabilities from an input device, and add it to the device info list
 ** if successful. This function assumes that there is enough room in the
-** device info list to accomodate all entries.
+** device info list to accommodate all entries.
 **
 ** The device will not be added to the device list if any errors are encountered.
 */
@@ -2255,7 +2255,7 @@ static PaError OpenStream( struct PaUtilHostApiRepresentation *hostApi,
 
         /*  create half duplex buffers. also used for full-duplex streams which didn't 
             succeed when using the full duplex API. that could happen because
-            DX8 or greater isnt installed, the i/o devices aren't the same 
+            DX8 or greater isn't installed, the i/o devices aren't the same 
             physical device. etc.
         */
 
@@ -2798,7 +2798,7 @@ PA_THREAD_FUNC ProcessingThreadProc( void *pArg )
 
 #else
 
-    /* tick using WaitForSingleObject timout */
+    /* tick using WaitForSingleObject timeout */
     while ( WaitForSingleObject( stream->processingCompleted, timerPeriodMs ) == WAIT_TIMEOUT )
     {
         TimerCallback( 0, 0, (DWORD_PTR)pArg, 0, 0 );
index c4e3c4ecab66c9986c8b8c187c488ec3fd1161b4..fdfc8bdc5ed668cc343033672d63f8c0448eced1 100644 (file)
@@ -210,7 +210,7 @@ void PaWinDs_TerminateDSoundEntryPoints(void)
 {
     if( paWinDsDSoundEntryPoints.hInstance_ != NULL )
     {
-        /* ensure that we crash reliably if the entry points arent initialised */
+        /* ensure that we crash reliably if the entry points aren't initialised */
         paWinDsDSoundEntryPoints.DirectSoundCreate = 0;
         paWinDsDSoundEntryPoints.DirectSoundEnumerateW = 0;
         paWinDsDSoundEntryPoints.DirectSoundEnumerateA = 0;
index fd6d8feda61cee84f51d59c04870eaf7c83fdfd5..0fcf967be90446481f4c0f8477ce79af7df9a56b 100644 (file)
@@ -56,7 +56,7 @@
 #endif
 
 /*
-  Use the earliest version of DX required, no need to polute the namespace
+  Use the earliest version of DX required, no need to pollute the namespace
 */
 #ifdef PAWIN_USE_DIRECTSOUNDFULLDUPLEXCREATE
 #define DIRECTSOUND_VERSION 0x0800
index 51e963048fa66d1e7748c4e63928fe1dd6d3db66..9e18d6ded1cb701fe6ad10e0f7897a6380e3b7f0 100644 (file)
@@ -466,7 +466,7 @@ static PaError QueryDevice( char *deviceName, PaOSSHostApiRepresentation *ossApi
 
     /* douglas:
        we have to do this querying in a slightly different order. apparently
-       some sound cards will give you different info based on their settins.
+       some sound cards will give you different info based on their settings.
        e.g. a card might give you stereo at 22kHz but only mono at 44kHz.
        the correct order for OSS is: format, channels, sample rate
     */
@@ -1335,7 +1335,7 @@ static PaError PaOssStream_WaitForFrames( PaOssStream *stream, unsigned long *fr
 #ifdef PTHREAD_CANCELED
         pthread_testcancel();
 #else
-        /* avoid indefinite waiting on thread not supporting cancelation */
+        /* avoid indefinite waiting on thread not supporting cancellation */
         if( stream->callbackStop || stream->callbackAbort )
         {
             PA_DEBUG(( "Cancelling PaOssStream_WaitForFrames\n" ));
@@ -1369,7 +1369,7 @@ static PaError PaOssStream_WaitForFrames( PaOssStream *stream, unsigned long *fr
 #ifdef PTHREAD_CANCELED
         pthread_testcancel();
 #else
-        /* avoid indefinite waiting on thread not supporting cancelation */
+        /* avoid indefinite waiting on thread not supporting cancellation */
         if( stream->callbackStop || stream->callbackAbort )
         {
             PA_DEBUG(( "Cancelling PaOssStream_WaitForFrames\n" ));
@@ -1640,7 +1640,7 @@ static void *PaOSS_AudioThreadProc( void *userData )
 #ifdef PTHREAD_CANCELED
         pthread_testcancel();
 #else
-        if( stream->callbackAbort ) /* avoid indefinite waiting on thread not supporting cancelation */
+        if( stream->callbackAbort ) /* avoid indefinite waiting on thread not supporting cancellation */
         {
             PA_DEBUG(( "Aborting callback thread\n" ));
             break;
@@ -1681,7 +1681,7 @@ static void *PaOSS_AudioThreadProc( void *userData )
                 callbackResult = paComplete;
             }
 
-            if( stream->callbackAbort ) /* avoid indefinite waiting on thread not supporting cancelation */
+            if( stream->callbackAbort ) /* avoid indefinite waiting on thread not supporting cancellation */
             {
                 PA_DEBUG(( "Aborting callback thread\n" ));
                 break;
@@ -1793,7 +1793,7 @@ static PaError CloseStream( PaStream* s )
  *
  * Aspect StreamState: After returning, the stream shall be in the Active state, implying that an eventual
  * callback will be repeatedly called in a separate thread. If a separate thread is started this function
- * will block untill it has started processing audio, otherwise audio processing is started directly.
+ * will block until it has started processing audio, otherwise audio processing is started directly.
  */
 static PaError StartStream( PaStream *s )
 {
index 6edc22cf700ba3062b28afb51bde5b0ffd4378d9..cc3143592982a28e40c5cd0dbfce298fa8b99fa5 100644 (file)
@@ -413,7 +413,7 @@ static PaError OpenStream( struct PaUtilHostApiRepresentation *hostApi,
     else
     {
         inputChannelCount = 0;
-        inputSampleFormat = hostInputSampleFormat = paInt16; /* Surpress 'uninitialised var' warnings. */
+        inputSampleFormat = hostInputSampleFormat = paInt16; /* Suppress 'uninitialised var' warnings. */
     }
 
     if( outputParameters )
@@ -442,7 +442,7 @@ static PaError OpenStream( struct PaUtilHostApiRepresentation *hostApi,
     else
     {
         outputChannelCount = 0;
-        outputSampleFormat = hostOutputSampleFormat = paInt16; /* Surpress 'uninitialized var' warnings. */
+        outputSampleFormat = hostOutputSampleFormat = paInt16; /* Suppress 'uninitialized var' warnings. */
     }
 
     /*
index e6e049dabd676b10c3397ef69ba048ef9c58585c..99de340341cd156658a2b8f3d4059bf817128609 100644 (file)
@@ -182,7 +182,7 @@ typedef KS_LogicalMemoryType *PKS_LogicalMemoryType;
 typedef struct _PIPE_TERMINATION {
   ULONG Flags;
   ULONG OutsideFactors;
-  ULONG Weigth;
+  ULONG Weight;
   KS_FRAMING_RANGE PhysicalRange;
   KS_FRAMING_RANGE_WEIGHTED OptimalRange;
   KS_COMPRESSION Compression;
index 216796ee5eb8507d6a61e7cb17c829d0ad1cbaad..86c08c2156774a460b0d56aecd1bc6de5c559f52 100644 (file)
@@ -310,7 +310,7 @@ typedef struct _pa_AudioClientProperties {
 PA_THREAD_FUNC ProcThreadEvent(void *param);
 PA_THREAD_FUNC ProcThreadPoll(void *param);
 
-// Error codes (availabe since Windows 7)
+// Error codes (available since Windows 7)
 #ifndef AUDCLNT_E_BUFFER_ERROR
     #define AUDCLNT_E_BUFFER_ERROR AUDCLNT_ERR(0x018)
 #endif
@@ -321,7 +321,7 @@ PA_THREAD_FUNC ProcThreadPoll(void *param);
     #define AUDCLNT_E_INVALID_DEVICE_PERIOD AUDCLNT_ERR(0x020)
 #endif
 
-// Stream flags (availabe since Windows 7)
+// Stream flags (available since Windows 7)
 #ifndef AUDCLNT_STREAMFLAGS_SRC_DEFAULT_QUALITY
     #define AUDCLNT_STREAMFLAGS_SRC_DEFAULT_QUALITY 0x08000000
 #endif
@@ -489,7 +489,7 @@ typedef struct
 
     PaWinUtilComInitializationResult comInitializationResult;
 
-    // this is the REAL number of devices, whether they are usefull to PA or not!
+    // this is the REAL number of devices, whether they are useful to PA or not!
     UINT32 deviceCount;
 
     PaWasapiDeviceInfo *devInfo;
@@ -783,7 +783,7 @@ static PaError __LogPaError(PaError err, const char *func, const char *file, int
 // ------------------------------------------------------------------------------------------
 /*! \class ThreadSleepScheduler
            Allows to emulate thread sleep of less than 1 millisecond under Windows. Scheduler
-           calculates number of times the thread must run untill next sleep of 1 millisecond.
+           calculates number of times the thread must run until next sleep of 1 millisecond.
            It does not make thread sleeping for real number of microseconds but rather controls
            how many of imaginary microseconds the thread task can allow thread to sleep.
 */
@@ -3168,7 +3168,7 @@ static void _CalculateAlignedPeriod(PaWasapiSubStream *pSub, UINT32 *nFramesPerL
     // Align frames to HD Audio packet size of 128 bytes for Exclusive mode only.
     // Not aligning on Windows Vista will cause Event timeout, although Windows 7 will
     // return AUDCLNT_E_BUFFER_SIZE_NOT_ALIGNED error to realign buffer. Aligning is necessary
-    // for Exclusive mode only! when audio data is feeded directly to hardware.
+    // for Exclusive mode only! when audio data is fed directly to hardware.
     if (pSub->shareMode == AUDCLNT_SHAREMODE_EXCLUSIVE)
     {
         (*nFramesPerLatency) = AlignFramesPerBuffer((*nFramesPerLatency),
@@ -3205,7 +3205,7 @@ static void _CalculatePeriodicity(PaWasapiSubStream *pSub, BOOL output, REFERENC
             REFERENCE_TIME userPeriodicity;
 
             // Align frames backwards, so device will likely make buffer read ready when we are ready
-            // to read it (our sheduling will wait for amount of millisoconds of frames_per_buffer)
+            // to read it (our scheduling will wait for amount of millisoconds of frames_per_buffer)
             alignedFrames = AlignFramesPerBuffer(pSub->params.frames_per_buffer,
                 pSub->wavex.Format.nSamplesPerSec, pSub->wavex.Format.nBlockAlign, ALIGN_BWD);
 
@@ -3562,7 +3562,7 @@ static HRESULT CreateAudioClient(PaWasapiStream *pStream, PaWasapiSubStream *pSu
     _RecalculateBuffersCount(pSub, userFramesPerBuffer, MakeFramesFromHns(pSub->period, pSub->wavex.Format.nSamplesPerSec),
         fullDuplex);
 
-    // No error, client is succesfully created
+    // No error, client is successfully created
     (*pa_error) = paNoError;
 
 done:
@@ -3904,7 +3904,7 @@ static PaError OpenStream( struct PaUtilHostApiRepresentation *hostApi,
     else
     {
         inputChannelCount = 0;
-        inputSampleFormat = hostInputSampleFormat = paInt16; /* Surpress 'uninitialised var' warnings. */
+        inputSampleFormat = hostInputSampleFormat = paInt16; /* Suppress 'uninitialised var' warnings. */
     }
 
     // Try create device: Output
@@ -4007,7 +4007,7 @@ static PaError OpenStream( struct PaUtilHostApiRepresentation *hostApi,
     else
     {
         outputChannelCount = 0;
-        outputSampleFormat = hostOutputSampleFormat = paInt16; /* Surpress 'uninitialized var' warnings. */
+        outputSampleFormat = hostOutputSampleFormat = paInt16; /* Suppress 'uninitialized var' warnings. */
     }
 
     // log full-duplex
@@ -4065,7 +4065,7 @@ static PaError OpenStream( struct PaUtilHostApiRepresentation *hostApi,
 
         // serious problem #2 - No, Not a problem, as framesPerHostCallback take into account
         // sample size while it is not a problem for PA full-duplex, we must care of
-        // preriod only!
+        // period only!
         /*if (stream->out.framesPerHostCallback != stream->in.framesPerHostCallback)
         {
             PRINT(("WASAPI: OpenStream: framesPerHostCallback discrepancy\n"));
@@ -4636,7 +4636,7 @@ static PaError ReadStream( PaStream* s, void *_buffer, unsigned long frames )
             ((BYTE **)user_buffer)[i] = ((BYTE **)_buffer)[i];
     }
 
-    // Findout if there are tail frames, flush them all before reading hardware
+    // Find out if there are tail frames, flush them all before reading hardware
     if ((available = PaUtil_GetRingBufferReadAvailable(stream->in.tailBuffer)) != 0)
     {
         ring_buffer_size_t buf1_size = 0, buf2_size = 0, read, desired;
@@ -4815,7 +4815,7 @@ static PaError WriteStream( PaStream* s, const void *_buffer, unsigned long fram
             ((const BYTE **)user_buffer)[i] = ((const BYTE **)_buffer)[i];
     }
 
-    // Blocking (potentially, untill 'frames' are consumed) loop
+    // Blocking (potentially, until 'frames' are consumed) loop
     while (frames != 0)
     {
         // Check if blocking call must be interrupted
@@ -5694,7 +5694,7 @@ static HRESULT ProcessInputBuffer(PaWasapiStream *stream, PaWasapiHostProcessor
         if (WaitForSingleObject(stream->hCloseRequest, 0) != WAIT_TIMEOUT)
             break;
 
-        // Findout if any frames available
+        // Find out if any frames available
         frames = 0;
         if ((hr = _PollGetInputFramesAvailable(stream, &frames)) != S_OK)
             return hr;
@@ -6033,7 +6033,7 @@ static UINT32 GetSleepTime(PaWasapiStream *stream, UINT32 sleepTimeIn, UINT32 sl
     UINT32 sleepTime;
 
     // According to the issue [https://github.com/PortAudio/portaudio/issues/303] glitches may occur when user frames
-    // equal to 1/2 of the host buffer frames, therefore the emperical workaround for this problem is to lower 
+    // equal to 1/2 of the host buffer frames, therefore the empirical workaround for this problem is to lower 
     // the sleep time by 2
     if (userFramesOut != 0)
     {
@@ -6157,7 +6157,7 @@ PA_THREAD_FUNC ProcThreadPoll(void *param)
     // Request fine (1 ms) granularity of the system timer functions to guarantee correct logic around WaitForSingleObject
     SystemTimer_SetGranularity(&timer, 1);
 
-    // Claculate sleep time of the processing loop (inside WaitForSingleObject)
+    // Calculate sleep time of the processing loop (inside WaitForSingleObject)
     sleepTime = ConfigureLoopSleepTimeAndScheduler(stream, &scheduler);
 
     // Setup data processors
@@ -6376,10 +6376,10 @@ PA_THREAD_FUNC ProcThreadPoll(void *param)
                     break;
                 }
 
-                // process equal ammount of frames
+                // process equal amount of frames
                 if (o_frames >= i_frames)
                 {
-                    // process input ammount of frames
+                    // process input amount of frames
                     UINT32 o_processed = i_frames;
 
                     // get host output buffer
index add663b717db35c3efb3c4b7da704e26812fad28..f30ee95aee0502d5f07a38f31b651d0268e19908 100644 (file)
@@ -4380,7 +4380,7 @@ static PaError OpenStream( struct PaUtilHostApiRepresentation *hostApi,
     else
     {
         userInputChannels = 0;
-        inputSampleFormat = hostInputSampleFormat = paInt16; /* Supress 'uninitialised var' warnings. */
+        inputSampleFormat = hostInputSampleFormat = paInt16; /* Suppress 'uninitialised var' warnings. */
     }
 
     if( outputParameters )
@@ -4415,7 +4415,7 @@ static PaError OpenStream( struct PaUtilHostApiRepresentation *hostApi,
     else
     {
         userOutputChannels = 0;
-        outputSampleFormat = hostOutputSampleFormat = paInt16; /* Supress 'uninitialized var' warnings. */
+        outputSampleFormat = hostOutputSampleFormat = paInt16; /* Suppress 'uninitialized var' warnings. */
     }
 
     /* validate platform specific flags */
index c4c349c2a4fbe3d58d3e7d3db6a2d281e74bf698..611acc7f52ba89b3316b47f98ac83dd76204b1c2 100644 (file)
@@ -52,7 +52,7 @@ by the user, and can be limited in functionality or difficult to use.
 
 This is where the PortAudio "WDM-KS" host implementation comes in.
 It directly connects PortAudio to the same Kernel Streaming API which
-those ASIO bridges use. This avoids the mixing penatly of DirectX, 
+those ASIO bridges use. This avoids the mixing penalty of DirectX, 
 giving at least as good latency as any ASIO driver, but it has the
 advantage of working with ANY Windows audio hardware which is available
 through the normal MME/DirectX routes without the user requiring 
index 422c86714a743c7bae163c0e887c8626b47e53a7..8a07bab0a1f1dd0f4dcf4c9a964c67470234c197 100644 (file)
@@ -58,7 +58,7 @@
  RDB20020417 - stopped counting WAVE_MAPPER when there were no real devices
                refactoring, renaming and fixed a few edge case bugs
  RDB20020531 - converted to V19 framework
- ** NOTE  maintanance history is now stored in CVS **
+ ** NOTE  maintenance history is now stored in CVS **
 */
 
 /** @file
 
 /* When client suggestedLatency could result in many host buffers, we aim to have around 8, 
    based off Windows documentation that suggests that the kmixer uses 8 buffers. This choice
-   is somewhat arbitrary here, since we havn't observed significant stability degredation 
+   is somewhat arbitrary here, since we haven't observed significant stability degredation 
    with using either more, or less buffers.     
 */
 #define PA_MME_TARGET_HOST_BUFFER_COUNT_    8
@@ -2563,7 +2563,7 @@ static PaError OpenStream( struct PaUtilHostApiRepresentation *hostApi,
     stream->primeStreamUsingCallback = ( (streamFlags&paPrimeOutputBuffersUsingStreamCallback) && streamCallback ) ? 1 : 0;
 
     /* time to sleep when throttling due to >100% cpu usage.
-        -a quater of a buffer's duration */
+        -a quarter of a buffer's duration */
     stream->throttledSleepMsecs =
             (unsigned long)(stream->bufferProcessor.framesPerHostBuffer *
              stream->bufferProcessor.samplePeriod * .25 * 1000);
@@ -2886,7 +2886,7 @@ PA_THREAD_FUNC ProcessingThreadProc( void *pArg )
         if( waitResult == WAIT_FAILED )
         {
             result = paUnanticipatedHostError;
-            /** @todo FIXME/REVIEW: can't return host error info from an asyncronous thread. see http://www.portaudio.com/trac/ticket/143 */
+            /** @todo FIXME/REVIEW: can't return host error info from an asynchronous thread. see http://www.portaudio.com/trac/ticket/143 */
             done = 1;
         }
         else if( waitResult == WAIT_TIMEOUT )
@@ -3161,7 +3161,7 @@ PA_THREAD_FUNC ProcessingThreadProc( void *pArg )
                             if( outputUnderflow && !done && !stream->stopProcessing )
                             {
                                 /* Recover from underflow in the case where the
-                                    underflow occured while processing the buffer
+                                    underflow occurred while processing the buffer
                                     we just finished */
 
                                 result = CatchUpOutputBuffers( stream );
@@ -3359,7 +3359,7 @@ static PaError StartStream( PaStream *s )
                 }
             }   
 
-            /* we queue all channels of a single buffer frame (accross all
+            /* we queue all channels of a single buffer frame (across all
                 devices, because some multidevice multichannel drivers work
                 better this way */
             for( j=0; j<stream->output.deviceCount; ++j )
index c401f195c0b02a7c13ef14dbbb98d7a77581e593..2a62fe85c4e556efd441dc1d05315d5de68419f4 100644 (file)
@@ -182,7 +182,7 @@ PaError PaUnixThreading_Initialize( void );
 /** Spawn a thread.
  *
  * Intended for spawning the callback thread from the main thread. This function can even block (for a certain
- * time or indefinitely) untill notified by the callback thread (using PaUnixThread_NotifyParent), which can be
+ * time or indefinitely) until notified by the callback thread (using PaUnixThread_NotifyParent), which can be
  * useful in order to make sure that callback has commenced before returning from Pa_StartStream.
  * @param threadFunc: The function to be executed in the child thread.
  * @param waitForChild: If not 0, wait for child thread to call PaUnixThread_NotifyParent. Less than 0 means
@@ -195,7 +195,7 @@ PaError PaUnixThread_New( PaUnixThread* self, void* (*threadFunc)( void* ), void
 
 /** Terminate thread.
  *
- * @param wait: If true, request that background thread stop and wait untill it does, else cancel it.
+ * @param wait: If true, request that background thread stop and wait until it does, else cancel it.
  * @param exitResult: If non-null this will upon return contain the exit status of the thread.
  */
 PaError PaUnixThread_Terminate( PaUnixThread* self, int wait, PaError* exitResult );
index 5c6f29dd88d54fd809f2d366da76f019d8f436f3..933cb78e2db25fe76d6e8b1f09d65f22dc4f3c7a 100644 (file)
@@ -134,7 +134,7 @@ PaWinWaveFormatChannelMask PaWin_DefaultChannelMask( int numChannels )
         /* case 7: */
                case 8:
             /* RoBi: PAWIN_SPEAKER_7POINT1_SURROUND fits normal surround sound setups better than PAWIN_SPEAKER_7POINT1, f.i. NVidia HDMI Audio
-               output is silent on channels 5&6 with NVidia drivers, and channel 7&8 with Micrsoft HD Audio driver using PAWIN_SPEAKER_7POINT1. 
+               output is silent on channels 5&6 with NVidia drivers, and channel 7&8 with Microsoft HD Audio driver using PAWIN_SPEAKER_7POINT1. 
                With PAWIN_SPEAKER_7POINT1_SURROUND both setups work OK. */
                        return PAWIN_SPEAKER_7POINT1_SURROUND;
        }
@@ -149,7 +149,7 @@ PaWinWaveFormatChannelMask PaWin_DefaultChannelMask( int numChannels )
     /* Note that Alec Rogers proposed the following as an alternate method to 
         generate the default channel mask, however it doesn't seem to be an improvement
         over the above, since some drivers will matrix outputs mapping to non-present
-        speakers accross multiple physical speakers.
+        speakers across multiple physical speakers.
 
         if(nChannels==1) {
             pwfFormat->dwChannelMask = SPEAKER_FRONT_CENTER;
index b8e923a61598e31eb761a329562185e5594441ba..5a7a3380648e1118444f7f94b922dfb586dc2087 100644 (file)
@@ -51,7 +51,7 @@ extern "C" {
     specified device. Returns 0 if the query fails for any reason.
 
     @param wcharDevicePath A system level PnP interface path, supplied as a WCHAR unicode string.
-    Declard as void* to avoid introducing a dependency on wchar_t here.
+    Declared as void* to avoid introducing a dependency on wchar_t here.
 
     @param isInput A flag specifying whether to query for input (non-zero) or output (zero) channels.
 */
index ae43d28cb67505f64746ac31755aaf2072604122..44a6d67301f2456a1effc2e9a19a658954dbbb20 100644 (file)
@@ -55,7 +55,7 @@ TODO:
     o- inline dither code
     o- implement Dither only (no-clip) versions
     o- implement int8 and uint8 versions
-    o- test thouroughly
+    o- test thoroughly
 
     o- the packed 24 bit functions could benefit from unrolling and avoiding
         byte and word sized register access.
@@ -116,7 +116,7 @@ TODO:
 
 /*
        -EMT64/AMD64 uses different asm
-       -VC2005 doesnt allow _WIN64 with inline assembly either!
+       -VC2005 doesn't allow _WIN64 with inline assembly either!
  */
 void PaUtil_InitializeX86PlainConverters( void )
 {
index 0106cf3be160866328c3e099180046df60865266..a91f9e06c4841b91ac087c7f5fada6cf54076218 100644 (file)
@@ -198,7 +198,7 @@ int main( int argc, char **argv )
     return 0;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return 1;
index a0fae47394e721df76660e71b91f608dda25c4bd..2ad9c38f723bb3d01de38cf798617e408e25bc7f 100644 (file)
@@ -121,7 +121,7 @@ int main(int argc, char* argv[])
     data.phase = 0;
     data.sampsToGo = SAMPLE_RATE * 20;        /* 20 seconds. */
 
-    /* initialise portaudio subsytem */
+    /* initialise portaudio subsystem */
     err = Pa_Initialize();
 
     inputParameters.device = Pa_GetDefaultInputDevice();    /* default input device */
@@ -179,7 +179,7 @@ done:
 
     if( err != paNoError )
     {
-        fprintf( stderr, "An error occured while using portaudio\n" );
+        fprintf( stderr, "An error occurred while using portaudio\n" );
         if( err == paUnanticipatedHostError )
         {
             fprintf( stderr, " unanticipated host error.\n");
index 830b3ace7f2adf15678f2b3c8b9e9423e6b165c0..090b529bc8daa4471ac1818c3ef41e8d3488e1c6 100644 (file)
@@ -198,7 +198,7 @@ PaError TestOnce( int buffersize, PaDeviceIndex device )
     return paNoError;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     fprintf( stderr, "Host Error message: %s\n", Pa_GetLastHostErrorInfo()->errorText );
index bd6e8299792845adc44b5bea424eeb09870e5cf3..aa7f7fd7f4d82726b596ad657dd98a949ea1891f 100644 (file)
@@ -245,7 +245,7 @@ int main(void)
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index e86d0ac82d5ba6d8e2e8d41a5dbd5ba08ccffc55..97ef211aa4761ef1dcc2ad8c12bdffbe8c9513d8 100644 (file)
@@ -135,7 +135,7 @@ int main(void)
     
     return 0;
 error:
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return 1;
index e694c8b674a37913170215944fbf5ef7ac268194..5f471b1b61ca85807eb1928dbc19f2032c0a0404 100644 (file)
@@ -179,7 +179,7 @@ int main(void)
 done:
     if (err)
         {
-        fprintf( stderr, "An error occured while using the portaudio stream\n" );
+        fprintf( stderr, "An error occurred while using the portaudio stream\n" );
         fprintf( stderr, "Error number: %d\n", err );
         fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
         err = 1; /* Though PlaySine() already called Pa_Terminate(), */
index a1e7c7e5112793e11f722b91ddc3eca6ac87d758..59734e2bad46c0397bb56894f77f90282e3dec51 100644 (file)
@@ -179,7 +179,7 @@ int main(int argc, char* argv[])
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index 3ffd15146d1fc8796d3c9169eccdb6a218db17af..e39bc91f1f6c09ad0e60434e744f1a8701a06e14 100644 (file)
@@ -197,7 +197,7 @@ int main(int argc, char* argv[])
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index 6bda629438902ec1b1a7127d70f8d7bef5a3da04..e3172611789277849a1ee2a1b23cc7b16d678763 100644 (file)
@@ -157,7 +157,7 @@ int main(void)
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index 1f2a83771ad6195a4c496850fd060b188fd5d162..5ce50d3d96954f0f0188190562d7b7f8540d1a89 100644 (file)
@@ -5,7 +5,7 @@
     This test uses the same method to overload the stream as does
     patest_out_underflow.c -- it generates sine waves until the cpu load
     exceeds a certain level. However this test is only concerned with
-    input and so doesn't ouput any sound.
+    input and so doesn't output any sound.
     
     @author Ross Bencina <rossb@audiomulch.com>
        @author Phil Burk <philburk@softsynth.com>
@@ -229,7 +229,7 @@ int main(void)
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index f01297a4e4ba11f87052fbecccf218569d6ab93d..6175f881a29c0fc9122bc9c898340fd21ec2ceb7 100644 (file)
@@ -305,7 +305,7 @@ int main(void)
        int jackCount = 0;
        int isInput = 0;
 
-       printf("PortAudio Test: WASAPI Jack Configuratin");
+       printf("PortAudio Test: WASAPI Jack Configuration");
     err = Pa_Initialize();
     if( err != paNoError ) goto error;
 
@@ -336,7 +336,7 @@ int main(void)
 
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index bbc6fe635f5f6b45533a606edb9fc6023dd3990b..2078a048d92a2e2d2870613d805feba11e488efb 100644 (file)
@@ -186,7 +186,7 @@ int main(void)
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index 33ccf12c59555a2f5ba4c28eae2e6d07be89985e..11ce463d6d5b0a7c751ac302adc34e271dcb05e7 100644 (file)
@@ -178,7 +178,7 @@ int main(void)
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index 3eba0ce2a93783421cb4bbf602767a0fb6bf215d..e466ff3e8f7fe7fe83e18a6ff6635addcd42c38a 100644 (file)
@@ -144,7 +144,7 @@ int main(void)
 
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index 083fdb4895c438b994684da7647183f6985688e8..b6bc314bebc6ab95eaf703c10462fbd00d47cd8c 100644 (file)
@@ -203,7 +203,7 @@ PaError TestOnce( void )
     return paNoError;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index 49db8d21c74863ca2ac53aa35643d4d69ff76268..672a492e60a98cac82cb5f902d68227f9f7a0387 100644 (file)
@@ -209,7 +209,7 @@ int main(void)
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index 40c9d64903eb4c464542959739eba72b6cd9e2d1..3af09f5ba80657fdcfbf684b9a8d0158512dfbd0 100644 (file)
@@ -148,7 +148,7 @@ int main(void)
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index 2b11bfca562e057e889323c4207f1af0e08247e9..ad3db44a3e9b0b7ef53d0eb5fcfd2e4124899574 100644 (file)
@@ -196,7 +196,7 @@ int main(void)
 done:
     if (err)
         {
-        fprintf(stderr, "An error occured while using the portaudio stream\n");
+        fprintf(stderr, "An error occurred while using the portaudio stream\n");
         fprintf(stderr, "Error number: %d\n", err );
         fprintf(stderr, "Error message: %s\n", Pa_GetErrorText(err));
         }
index dee90f8fdc27d06c064c84029aea08658239f991..86a35cbd5f6f323f889f925fb466ac30e77e8fc1 100644 (file)
@@ -244,7 +244,7 @@ int main(void)
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index 045757e355b2407fa6d760f8e213dddf31f21adc..98acd60f901f51ccd8eee597690f702eb9a697f8 100644 (file)
@@ -92,7 +92,7 @@ static int patestCallback( const void *inputBuffer, void *outputBuffer,
     unsigned int i;
     int result = paContinue;
 
-    /* supress unused parameter warnings */
+    /* suppress unused parameter warnings */
     (void) inputBuffer;
     (void) timeInfo;
     (void) statusFlags;
@@ -227,7 +227,7 @@ int main(void)
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index e8e5561cd59fa629b777cd986034496422966457..ae92ea2a631e53d78ff83f3827a7b9bf69109aba 100644 (file)
@@ -236,7 +236,7 @@ int main(void)
 
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return -1;
index c00319a003b2a1f0ceea449b2ffd4b08addb2877..3688dd1dd58e6610c46e99ed461feca1bf6cf4e4 100644 (file)
@@ -209,7 +209,7 @@ int main(void)
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index 3d0d4c08e2ca991ca68212ddff46283bb5527eb1..83608b8167e4b4bb01341f6f53fe7781e4a56f25 100644 (file)
@@ -183,7 +183,7 @@ int main(void)
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index 5d011553c07293aa33f3e2ec1ee3a7ae984b3bc4..eb283347ce8cfe3c0c395342819d0fcdcfe05c99 100644 (file)
@@ -196,7 +196,7 @@ int main(void)
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index 106a972e88ee16ccde123619c789b9b4cba0a84f..5fd07bd71163e229e649e27e3b1afe0b251021bc 100644 (file)
@@ -175,7 +175,7 @@ int main(void)
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index 0d6a1da6b232ab433f0aa2d77775af18a9d072ea..1d4f551d33e040b37981a37919d0eb865e20ec45 100644 (file)
@@ -212,7 +212,7 @@ int main(void)
     
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index cf82b6778da72398c90befac171fbb576a68810e..ec902cf925ffe682ceae0957085c468e3c9f5ac9 100644 (file)
@@ -167,7 +167,7 @@ int main(void)
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index bc417cc289c11df684fb013c514aba8d84e0cd06..2ebd97ad52b86dfcb902855fb8dfe949ffe03fe6 100644 (file)
@@ -317,7 +317,7 @@ int TestStopMode( paTestData *data )
 
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index 9a451eba2bdae78aea72044043be84387a27929a..17e09f36696b6d70773b206fc36239bcd3c72b42 100644 (file)
@@ -471,7 +471,7 @@ int main(void)
     
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index 0b7f21db82f46fc805742e48f82347321bf9bb63..204e96416d8809fa9c8eac0b0c821dee5e8b66f9 100644 (file)
@@ -262,7 +262,7 @@ int main( int argc, const char* argv[] )
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index a064be153304c8648913489b0830db8b45bf732a..d3a8c0f159fa68c9ea64c1c0f440c6573a5f1aba 100644 (file)
@@ -264,7 +264,7 @@ int main(void)
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index ed8a11ad384fe375f67e4f471df20fdd0d256256..659ec24c6853ecba135d344dd1d34a7dc69a2b8e 100644 (file)
@@ -166,7 +166,7 @@ int main(void)
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index 4722f5eaf08b88b4df1c14e5c2351217d0fb74de..072b022b08bb77ed081b6089338bdb84cbfac39b 100644 (file)
@@ -193,7 +193,7 @@ int main(void)
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index 5a2b178987c56a4acbe60dadbfdf219ab1458b06..5148fe76d96caa783cd8f7b6b7b38be4d378b7ec 100644 (file)
@@ -171,7 +171,7 @@ int main(void)
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index e1726a613d93e5fa9170aa9744f342df8443a81d..430de626e8dbd1755a578bcb49b96151d41805ee 100644 (file)
@@ -155,7 +155,7 @@ int main(void)
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index ba55b7dee1530314c4c68c3540c9df70866cd361..e546921abd2f099bea020624c205e1e95fe68655 100644 (file)
@@ -235,7 +235,7 @@ int main(int argc, char **args)
     return paNoError;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     fprintf( stderr, "Host Error message: %s\n", Pa_GetLastHostErrorInfo()->errorText );
index ba3477b368943d0eae1490be51da091676f71588..a5f3ffc458b383aec6c871a3f4b65a90583ffb32 100644 (file)
@@ -246,7 +246,7 @@ done:
 
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     printf("Hit ENTER to quit.\n");  fflush(stdout);
index 618b97ee33e134114acd68e4014cb13925d32de3..0149f9eaae1f0cdf061991c8bf0592ec799af5a3 100644 (file)
@@ -62,7 +62,7 @@
 #define CHANNEL_COUNT           (2)
 
 
-/* seach parameters. we test all buffer counts in this range */
+/* search parameters. we test all buffer counts in this range */
 #define MIN_WMME_BUFFER_COUNT        (2)
 #define MAX_WMME_BUFFER_COUNT        (12)
 
@@ -510,7 +510,7 @@ int main(int argc, char* argv[])
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index a28c88b6f3352c7925ef0e621d02ccc8ef70e0e0..aa4d71eda3da5f8bfd97c7304394b61ae35fe33b 100644 (file)
@@ -184,7 +184,7 @@ int main(int argc, char* argv[])
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index 243e774c2f690f8033cd77387ef5c33cdeb87d2b..ce5b5971fbea6991dd0065d7227d63d8af38d3c3 100644 (file)
@@ -158,7 +158,7 @@ int main(void)
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;
index ed93425e33b9051e7e06b97706e0a055f0ebb874..5521c8dcacaf198aec1255936a98435da77a9f7b 100644 (file)
@@ -161,7 +161,7 @@ int main(void)
     return err;
 error:
     Pa_Terminate();
-    fprintf( stderr, "An error occured while using the portaudio stream\n" );
+    fprintf( stderr, "An error occurred while using the portaudio stream\n" );
     fprintf( stderr, "Error number: %d\n", err );
     fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
     return err;