diff --git a/_i2_s_e_s_p32_8h_source.html b/_i2_s_e_s_p32_8h_source.html
index 4defa4ec92..62802e5506 100644
--- a/_i2_s_e_s_p32_8h_source.html
+++ b/_i2_s_e_s_p32_8h_source.html
@@ -72,7 +72,7 @@
3 #include "AudioConfig.h"
-
4 #if defined(ESP32) && defined(USE_I2S) && ESP_IDF_VERSION < ESP_IDF_VERSION_VAL(5, 0 , 0)
+
4 #if defined(ESP32) && defined(USE_I2S) && ESP_IDF_VERSION < ESP_IDF_VERSION_VAL(5, 0 , 0) || defined(DOXYGEN)
6 #include "AudioI2S/I2SConfig.h"
7 #include "driver/i2s.h"
@@ -84,60 +84,60 @@
-
22 class I2SDriverESP32 {
+
24 friend class AnalogAudio;
-
25 friend class AudioKitStream;
+
-
30 I2SConfig defaultConfig(
RxTxMode mode) {
-
+
+
-
-
37 return begin(defaultConfig(mode));
+
+
-
-
42 return !is_started ? begin(cfg) : true;
+
+
42 return !is_started ?
begin (cfg) :
true ;
-
46 bool begin(I2SConfig cfg) {
+
-
49 switch (cfg.rx_tx_mode){
+
-
51 return begin(cfg, cfg.pin_data, I2S_PIN_NO_CHANGE);
+
51 return begin (cfg, cfg.pin_data, I2S_PIN_NO_CHANGE);
-
54 return begin(cfg, I2S_PIN_NO_CHANGE, cfg.pin_data!=I2S_PIN_NO_CHANGE?cfg.pin_data:cfg.pin_data_rx );
+
54 return begin (cfg, I2S_PIN_NO_CHANGE, cfg.pin_data!=I2S_PIN_NO_CHANGE?cfg.pin_data:cfg.pin_data_rx );
-
56 return begin(cfg, cfg.pin_data, cfg.pin_data_rx);
+
56 return begin (cfg, cfg.pin_data, cfg.pin_data_rx);
58 LOGE(
"Did not expect go get here" );
-
+
63 return I2S_BUFFER_COUNT*I2S_BUFFER_SIZE;
-
67 int availableForWrite() {
+
68 return I2S_BUFFER_COUNT*I2S_BUFFER_SIZE;
-
+
74 i2s_driver_uninstall(i2s_num);
-
+
-
84 size_t writeBytes(
const void *src,
size_t size_bytes){
+
@@ -147,7 +147,7 @@
92 LOGD(
"i2s_write %d -> %d bytes" , size_bytes, result);
-
94 result = I2SDriverESP32::writeExpandChannel(i2s_num, cfg.bits_per_sample, src, size_bytes);
+
@@ -189,7 +189,7 @@
-
136 I2SConfig cfg = defaultConfig(RX_MODE);
+
138 i2s_config_t i2s_config;
139 bool is_started =
false ;
@@ -203,7 +203,7 @@
-
151 bool begin(I2SConfig cfg,
int txPin,
int rxPin) {
+
@@ -231,7 +231,7 @@
-
+
180 LOGD(
"%s" ,
"I2S restarting" );
@@ -278,7 +278,7 @@
-
227 static size_t writeExpandChannel(i2s_port_t i2s_num,
const int bits_per_sample,
const void *src,
size_t size_bytes){
+
227 static size_t writeExpandChannel (i2s_port_t i2s_num,
const int bits_per_sample,
const void *src,
size_t size_bytes){
230 switch (bits_per_sample){
@@ -425,6 +425,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
RxTxMode
Audio Source (TX_MODE) or Audio Sink (RX_MODE). RXTX_MODE is Source and Sink at the same time!
Definition: AudioTypes.h:24
diff --git a/_i2_s_e_s_p32_v1_8h_source.html b/_i2_s_e_s_p32_v1_8h_source.html
index 3dd780a248..37a8e29e88 100644
--- a/_i2_s_e_s_p32_v1_8h_source.html
+++ b/_i2_s_e_s_p32_v1_8h_source.html
@@ -72,7 +72,7 @@
3 #include "AudioConfig.h"
-
4 #if defined(ESP32) && defined(USE_I2S) && ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 0, 0)
+
4 #if defined(ESP32) && defined(USE_I2S) && ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 0, 0) || defined(DOXYGEN)
6 #include "AudioI2S/I2SConfig.h"
7 #include "driver/i2s_pdm.h"
diff --git a/_i2_s_stream_8h_source.html b/_i2_s_stream_8h_source.html
index 0d81875de3..552ce95d7c 100644
--- a/_i2_s_stream_8h_source.html
+++ b/_i2_s_stream_8h_source.html
@@ -108,16 +108,16 @@
-
+
-
+
-
60 bool result = i2s.
begin (cfg);
+
60 bool result = i2s.
begin (cfg);
@@ -126,13 +126,13 @@
-
+
76 AudioStream::setAudioInfo(info);
-
+
78 if (cfg.sample_rate != info.sample_rate
79 || cfg.channels != info.channels
80 || cfg.bits_per_sample != info.bits_per_sample) {
@@ -141,14 +141,14 @@
83 cfg.channels = info.channels;
84 cfg.logInfo(
"I2SStream" );
-
-
+
+
92 virtual size_t write (
const uint8_t *buffer,
size_t size) {
93 LOGD(
"I2SStream::write: %d" , size);
-
+
98 virtual size_t readBytes ( uint8_t *data,
size_t length)
override {
@@ -156,21 +156,21 @@
-
+
-
+
112 void flush()
override {}
-
+
-
+
@@ -188,14 +188,14 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
diff --git a/annotated.html b/annotated.html
index 86fe383799..a17997645b 100644
--- a/annotated.html
+++ b/annotated.html
@@ -313,262 +313,263 @@
C HttpRequest Simple API to process get, put, post, del http requests I tried to use Arduino HttpClient, but I did not manage to extract the mime type from streaming get requests
C HttpRequestHeader Reading and writing of Http Requests
C I2SConfig Configuration for all common i2s settings
-
► C I2SDriverESP32V1 Basic I2S API for the ESP32 (using the new API). https://docs.espressif.com/projects/esp-idf/en/v5.0.1/esp32/api-reference/peripherals/i2s.html#i2s-communication-mode
-
C DriverCommon
-
C DriverI2S
-
C I2SDriverESP8266 Basic I2S API - for the ESP8266 Only 16 bits are supported !
-
C I2SDriverNanoBLE Basic I2S API - for the Arduino Nano BLE Sense See https://content.arduino.cc/assets/Nano_BLE_MCU-nRF52840_PS_v1.1.pdf Douplex mode (RXTX_MODE) is currently not supported, but it should be quite easy to implement
-
C I2SDriverSAMD Basic I2S API - for the SAMD
-
C I2SDriverSTM32 Basic I2S API - for the STM32 Depends on https://github.com/pschatzmann/stm32f411-i2s We just add a write and read buffer and pass some parameters to the STM32 API!
-
C I2SStream We support the Stream interface for the I2S access. In addition we allow a separate mute pin which might also be used to drive a LED..
-
C ICYStream Icecast/Shoutcast Audio Stream which splits the data into metadata and audio data. The Audio data is provided via the regular stream functions. The metadata is handled with the help of the MetaDataICY state machine and provided via a callback method
-
C ICYStreamBuffered ICYStream implementation for the ESP32 based on a FreeRTOS task This is a Icecast/Shoutcast Audio Stream which splits the data into metadata and audio data. The Audio data is provided via the regular stream functions. The metadata is handled with the help of the MetaDataICY state machine and provided via a callback method
-
C ICYUrlSetup Resolve icy-metaint from HttpRequest and execute metadata callbacks
-
C ID3v1
-
C ID3v1Enhanced
-
C ID3v2
-
C ID3v2Frame
-
C ID3v2FrameString
-
C IIR IIRFilter Converted from https://github.com/tttapa/Filters/blob/master/src/IIRFilter.h
-
C ILBCDecoder Decoder for iLBC. Depends on https://github.com/pschatzmann/libilbc
-
C ILBCEncoder Encoder for iLBC - Depends on https://github.com/pschatzmann/libopenilbc
-
C IMAState
-
C InputMerge Merges multiple input channels. The input must be mono! So if you provide 2 mono channels you get a stereo signal as result with the left channel from channel 0 and the right from channel 1
-
C InputMixer MixerStream is mixing the input from Multiple Input Streams. All streams must have the same audo format (sample rate, channels, bits per sample)
-
C int24_3bytes_t 24bit integer which is used for I2S sound processing. The values are really using 3 bytes. It works only on little endian machines!
-
C int24_4bytes_t 24bit integer which is used for I2S sound processing. The values are represented as int32_t, but only 3 bytes are used. If you assign values which are too big, they are clipped
-
C JpegOpenCV Display image with opencv to be used on the desktop
-
C JpegTFT Display jpeg image using https://github.com/Bodmer/TFT_eSPI and https://github.com/Bodmer/JPEGDecoder
-
C JupyterAudioT Output to Jupyter. We write the data just to a file from where we can load the data again for different representations
-
C LastSampleFader If we end audio and the last sample is not close to 0 we can hear a popping noise. This functionality brings the last value slowly to 0. Typless implementation
-
C LastSampleFaderT If we end audio and the last sample is not close to 0 we can hear a popping noise. This functionality brings the last value slowly to 0
-
C LC3Decoder Decoder for LC3. Depends on https://github.com/pschatzmann/arduino-liblc3
-
C LC3Encoder Encoder for LC3 - Depends on https://github.com/pschatzmann/arduino-liblc3
-
C LEDOutput LED output using the FastLED library
-
C LEDOutputConfig
-
C LEDOutputUnoR4 LED output using the R4 LED matrix library
-
C LEDOutputUnoR4Config
-
C LinearVolumeControl The simplest possible implementation of a VolumeControl : The input = output which describes a linear curve. You would use this implementation if you physically connect an audio pot!
-
► C List Double linked list
-
C Iterator
-
C Node
-
C Lock A simple RIA locking class for the ESP32 using _lock_t
-
C LogarithmicVolumeControl Parametric Logarithmic volume control. Using the formula pow(b,input) * a - a, where b is b = pow(((1/ym)-1), 2) and a is a = 1.0 / (b - 1.0). The parameter ym is determining the steepness. See https://electronics.stackexchange.com/questions/304692/formula-for-logarithmic-audio-taper-pot
-
C Maximilian AudioTools integration with Maximilian
-
C MeasuringStream Class which measures the truput
-
► C MedianFilter An embedded friendly, fast one-dimensional median filter algorithm implementation in C and C++ Useful for spike and noise removal from analog signals or other DSP Also known as "salt-and-pepper noise" or "impulse noise" filter
-
C sMedianFilter_t
-
C sMedianNode_t
-
C MemoryManager MemoryManager which activates the use of external SPIRAM memory. When external memory is in use, the allocation strategy is to initially try to satisfy smaller allocation requests with internal memory and larger requests with external memory. This sets the limit between the two, as well as generally enabling allocation in external memory
-
C MemoryOutput Writes to a preallocated memory
-
C MemoryStream A simple Stream implementation which is backed by allocated memory
-
► C MetaDataFilter Class which filters out ID3v1 and ID3v2 Metadata and provides only the audio data to the decoder
-
C ID3v2 ID3 verion 2 TAG Header (10 bytes)
-
C MetaDataICY Icecast/Shoutcast Metadata Handling. Metadata class which splits the data into audio and metadata. The result is provided via callback methods. see https://www.codeproject.com/Articles/11308/SHOUTcast-Stream-Ripper
-
C MetaDataID3 Simple ID3 Meta Data Parser which supports ID3 V1 and V2 and implements the Stream interface. You just need to set the callback(s) to receive the result and copy the audio data to this stream
-
C MetaDataID3Base ID3 Meta Data Common Functionality
-
C MetaDataID3V1 Simple ID3 Meta Data API which supports ID3 V1
-
C MetaDataID3V2 Simple ID3 Meta Data API which supports ID3 V2: We only support the "TALB", "TOPE", "TIT2", "TCON" tags
-
C MetaDataOutput ID3 and Icecast/Shoutcast metadata output support. Just write the audio data to an object of this class and receive the metadata via the callback
-
C MiniAudioConfig Configuration for MiniAudio
-
C MiniAudioStream MiniAudio: https://miniaud.io/
-
C ModulationBaseClass Class provides a wave table that can be populated with a number of preallocated waveforms. These can be used to generate audio in themselves or to modulate The parameters of another effect. Class initialised with sample rate
-
C MozziConfig Mozzi Configuration for input or output stream
-
C MozziGenerator Support for https://sensorium.github.io/Mozzi/ Define your updateControl() method. Define your updateAudio() method. Start by calling begin(control_rate) do not call audioHook(); in the loop !
-
C MozziStream We use the output functionality of Mozzi to output audio data. We expect the data as array of int16_t with one or two channels. Though we support the setting of a sample rate, we recommend to use the default sample rate from Mozzi which is available with the AUDIO_RATE define
-
C MP3DecoderHelix MP3 Decoder using libhelix: https://github.com/pschatzmann/arduino-libhelix This is basically just a simple wrapper to provide AudioInfo and AudioInfoSupport
-
C MP3DecoderMAD MP3 Decoder using https://github.com/pschatzmann/arduino-libmad
-
C MP3DecoderMini MP3 Decoder using https://github.com/pschatzmann/minimp3 . This decoder does not provide any good results and it is not suited to decode any audio above 32000 on an ESP32. So the sample rate is limited by the MINIMP3_MAX_SAMPLE_RATE variable
-
C MP3EncoderLAME Encodes PCM data to the MP3 format and writes the result to a stream This is basically just a wrapper using https://github.com/pschatzmann/arduino-liblame
-
C MP4Atom Represents a single MPEG4 atom
-
C MP4ParseBuffer
-
C MTSDecoder MPEG-TS (MTS) decoder. Extracts the AAC audio data from a MPEG-TS (MTS) data stream. You can define the relevant stream types via the API. Required dependency: https://github.com/pschatzmann/arduino-tsdemux
-
C MultiConverter Combines multiple converters
-
C MultiOutput Replicates the output to multiple destinations
-
C MusicalNotes Determination of the frequency of a music note
-
C Nano_BLE_freq_info Mapping Frequency constants to available frequencies
-
C Nano_BLE_ratio_info Mapping from Ratio Constants to frequency ratios
-
C NBuffer A lock free N buffer. If count=2 we create a DoubleBuffer, if count=3 a TripleBuffer etc
-
C NoFilter No change to the input
-
C NOPConverter Dummy converter which does nothing
-
C NullStream The Arduino Stream which provides silence and simulates a null device when used as audio target or audio source
-
C NumberConverter Converts from a source to a target number with a different type
-
C NumberFormatConverterStream Converter which converts between bits_per_sample and 16 bits. The templated NumberFormatConverterStreamT class is used based on the information provided by the bits_per_sample in the configuration
-
C NumberFormatConverterStreamT Converter which converts from source bits_per_sample to target bits_per_sample
-
C NumberReader Reads n numbers from an Arduino Stream
-
C Nuttall Nuttall FFT Window function
-
C OggContainerDecoder Decoder for Ogg Container. Decodes a packet from an Ogg container. The Ogg begin segment contains the AudioInfo structure. You can subclass and overwrite the beginOfSegment() method to implement your own headers Dependency: https://github.com/pschatzmann/arduino-libopus
-
C OggContainerEncoder Encoder for Ogg Container. Encodes a packet for an Ogg container. The Ogg begin segment contains the AudioInfo structure. You can subclass ond overwrite the writeHeader() method to implement your own header logic. When an optional encoder is specified in the constructor we package the encoded data. Dependency: https://github.com/pschatzmann/arduino-libopus
-
C OggContainerOutput Output class for the OggContainerEncoder . Each write is ending up as container entry
-
C OnOffOutput Switched Output class. Class which can be used to filter the output out based on a switch: If the switch is on the output is forwarded. If it is off it is just ignored
-
C OpusAudioDecoder OpusAudioDecoder : Depends on https://github.com/pschatzmann/arduino-libopus.git
-
C OpusAudioEncoder OpusAudioEncoder : Dependens on https://github.com/pschatzmann/arduino-libopus.git
-
C OpusEncoderSettings Setting for Opus Encoder where the following values are valid: -1 indicates that the default value should be used and that this codec is not setting the value
-
C OpusOggDecoder Opus Decoder which uses the Ogg Container. See https://datatracker.ietf.org/doc/html/rfc7845 . The audio data is transmitted in frames and the header information contains the sampler rate, channels and other critical info. Dependency: https://github.com/pschatzmann/arduino-libopus
-
C OpusOggEncoder Opus Encoder which uses the Ogg Container: see https://datatracker.ietf.org/doc/html/rfc7845 Dependency: https://github.com/pschatzmann/arduino-libopus
-
C OpusOggWriter
-
C OpusSettings Setting for Opus Decoder
-
C OutputMixer Mixing of multiple outputs to one final output
-
C Parameter A constant value
-
C ParseBuffer We try to keep the necessary buffer for parsing as small as possible, The data() method provides the start of the actual data and with consume we remove the processed data from the buffer to make space again
-
C ParseObject
-
C PinInfoESP32 Information for a PIN
-
C PinkNoiseGenerator Generates pink noise
-
C PitchShift Shifts the pitch by the indicated step size: e.g. 2 doubles the pitch
-
C PitchShiftInfo Configuration for PitchShiftOutput : set the pitch_shift to define the shift
-
C PitchShiftOutput Pitch Shift: Shifts the frequency up or down w/o impacting the length! We reduce the channels to 1 to calculate the pitch shift and provides the pitch shifted result in the correct number of channels. The pitch shifting is done with the help of a buffer that can have potentially multiple implementations
-
C PoppingSoundRemover Big value gaps (at the beginning and the end of a recording) can lead to some popping sounds. We will try to set the values to 0 until the first transition thru 0 of the audio curve
-
C PortAudioConfig PortAudio information
-
C PortAudioStream Arduino Audio Stream using PortAudio
-
C Print
-
C ProcessedResult
-
C ProgressStream Generic calss to measure the the total bytes which were processed in order to calculate the progress as a percentage of the total size
-
C ProgressStreamInfo Configuration for ProgressStream
-
C PWMAudioOutput Common functionality for PWM output. Please use the PWMAudioOutput typedef instead which references the implementation
-
C PWMConfig Configuration data for PWM audio output
-
C PWMDriverAVR Experimental: Audio output to PWM pins for the AVR. The AVR supports only up to 2 channels
-
C PWMDriverESP32 Audio output to PWM pins for the ESP32. The ESP32 supports up to 16 channels
-
C PWMDriverMBED Audio output to PWM pins for MBED based Arduino implementations
-
C PWMDriverRenesas Audio output to PWM pins for Renesas based Arduino implementations
-
C PWMDriverSTM32 Audio output to PWM pins for STM32. We use one timer to generate the sample rate and one timer for the PWM signal
-
C Queue FIFO Queue which is based on a List
-
► C QueueLockFree Lock Free Queue
-
C node
-
C QueueStream AudioStream class which stores the data in a temporary queue buffer. The queue can be consumed e.g. by a callback function by calling readBytes();
-
C RECT
-
C Rectange Rectange FFT Window function
-
C ReformatBaseStream Base class for chained converting streams
-
C ResampleConfig Optional Configuration object. The critical information is the channels and the step_size. All other information is not used
-
C ResampleStream Dynamic Resampling. We can use a variable factor to speed up or slow down the playback
-
C RingBuffer Implements a typed Ringbuffer
-
C RingBufferFile An File backed Ring Buffer that we can use to receive streaming audio. We expect an open p_file as parameter
-
C RingBufferStream A Stream backed by a Ringbuffer. We can write to the end and read from the beginning of the stream
-
C RTSPFormatAbtX AbtX format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
-
C RTSPFormatAudioTools RTSPFormat which supports the AudioInfo class
-
C RTSPFormatG711 G711 μ-Law format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats Packet intervall: 20, frame size: any
-
C RTSPFormatGSM GSM format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
-
C RTSPFormatOpus Opus format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
-
C RTSPFormatPCM PCM format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
-
C RTSPFormatPCM8 L8 format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
-
C RTSPOutput We can write PCM data to the RTSPOutput . This is encoded by the indicated encoder (e.g. SBCEncoder ) and can be consumed by a RTSPServer. You have to make sure that the codec supports the provided audio format: e.g. GSM support only 8000 samples per second with one channel. Depends on the https://github.com/pschatzmann/Micro-RTSP-Audio/ library
-
C RTSPOutputPCMInfo PCMInfo subclass which provides the audio information from the related AudioStream Depends on the https://github.com/pschatzmann/Micro-RTSP-Audio/ library
-
C RTSPPCMAudioInfo PCMInfo subclass which provides the audio information from the AudioInfo parameter
-
C RTSPSourceFromAudioStream Simple Facade which can turn AudioStream into a IAudioSource. This way we can e.g. use an I2SStream as source to stream data Depends on the https://github.com/pschatzmann/Micro-RTSP-Audio/ library
-
C RTSPSourceStream Simple Facade which can turn any Stream into a IAudioSource. This way we can e.g. use an I2SStream as source to stream data Depends on the https://github.com/pschatzmann/Micro-RTSP-Audio/ library
-
C SBCDecoder Decoder for SBC. Depends on https://github.com/pschatzmann/arduino-libsbc . Inspired by sbcdec.c
-
C SBCEncoder Encoder for SBC - Depends on https://github.com/pschatzmann/arduino-libsbc . Inspired by sbcenc.c
-
C ScaledParameter Scales a dynamic parameter to the indicated range
-
C SDDirect We access the files directy with an index. The index is determined by a recurseve tree walk thru the directory. Unfortunatly the SDTFAT library has it's own API which is incompatible with the SDT API
-
C SDIndex We store all the relevant file names in an sequential index file. Form there we can access them via an index
-
C SilenceGenerator Provides a fixed value (e.g. 0) as sound data. This can be used e.g. to test the output functionality which should optimally just output silence and no artifacts
-
C SilenceRemovalConverter Removes any silence from the buffer that is longer then n samples with a amplitude below the indicated threshhold. If you process multiple channels you need to multiply the channels with the number of samples to indicate n
-
C SimpleChorus Simple Chorus effect with a single delay voice and mono output Chorus is effective between 15 and 20 miliseconds delay of original audio. Requires the sample rate when initialising
-
C SimpleContainerConfig
-
C SimpleContainerDataHeader
-
C SimpleContainerMetaDataHeader
-
C SimpleDelay Simple Delay effect consiting of a single tap delay with Effect Gain and feed back controls Constructor requires internal delay in samples
-
C SimpleFlanger Simple Flanger Effect Consistig of a single voice flanger The flanger has an effective range between 0 and 15 miliseconds in this case dleay buffer should be set to sampleRate*3/200 Constructor requires internal delay in samples
-
C SimpleLPF SimpleLPF
-
C SimulatedAudioPot Simple simulated audio pot volume control inspired by https://eepower.com/resistor-guide/resistor-types/potentiometer-taper/# We split up the input/output curve into 2 linear pieces with a slow and a fast raising part. The slow raising part goes from (0,0) to (x,y). The fast raising part goes from (x,y) to (1,1)
-
C SineFromTable A sine generator based on a table. The table is created based using degrees where one full wave is 360 degrees
-
C SineWaveGenerator Generates a Sound with the help of sin() function. If you plan to change the amplitude or frequency (incrementally), I suggest to use SineFromTable instead
-
C SingleBuffer A simple Buffer implementation which just uses a (dynamically sized) array
-
C Slice Helps to split up a big memory array into smaller slices. There are no additinal heap allocations! Example: if we have an array with 9 entries (1,2,3,4,5,6,7,8,9): slices(5) gives 2. slice(5,0) returns size 5 with 1,2,3,4,5 and slice(5,1) returns size 4 with 6,7,8,9!
-
C SmoothTransition Changes the samples at the beginning or at the end to slowly ramp up the volume
-
C SOSFilter Second Order Filter : Instead of manually cascading BiQuad filters, you can use a Second Order Sections filter (SOS). converted from https://github.com/tttapa/Filters/blob/master/src/SOSFilter.h Use float or double (and not a integer type) as type parameter
-
C SoundGenerator Base class to define the abstract interface for the sound generating classes
-
C SoundGeneratorModulation SoundGenerator using the ModulationBaseClass to generate the samples
-
C SPDIFConfig SPDIF configuration
-
C SPDIFOutput Output as 16 bit stereo SPDIF on the I2S data output pin
-
C SquareWaveGenerator Generates a square wave sound
-
C Stack LIFO Stack which is based on a List
-
C StdioStream
-
C STKChorus Chorus Effect
-
C STKChowningReverb John Chowning's reverberator class
-
C STKEcho Echo Effect
-
C STKEffect Use any effect from the STK framework: e.g. Chorus, Echo, FreeVerb, JCRev, PitShift... https://github.com/pschatzmann/Arduino-STK
-
C STKFreeVerb Jezar at Dreampoint's FreeVerb, implemented in STK
-
C STKGenerator The Synthesis ToolKit in C++ (STK) is a set of open source audio signal processing and algorithmic synthesis classes written in the C++ programming language.
+ C I2SDriverESP32 Basic I2S API - for the ESP32. If we receive 1 channel, we expand the result to 2 channels
+
► C I2SDriverESP32V1 Basic I2S API for the ESP32 (using the new API). https://docs.espressif.com/projects/esp-idf/en/v5.0.1/esp32/api-reference/peripherals/i2s.html#i2s-communication-mode
+
C DriverCommon
+
C DriverI2S
+
C I2SDriverESP8266 Basic I2S API - for the ESP8266 Only 16 bits are supported !
+
C I2SDriverNanoBLE Basic I2S API - for the Arduino Nano BLE Sense See https://content.arduino.cc/assets/Nano_BLE_MCU-nRF52840_PS_v1.1.pdf Douplex mode (RXTX_MODE) is currently not supported, but it should be quite easy to implement
+
C I2SDriverSAMD Basic I2S API - for the SAMD
+
C I2SDriverSTM32 Basic I2S API - for the STM32 Depends on https://github.com/pschatzmann/stm32f411-i2s We just add a write and read buffer and pass some parameters to the STM32 API!
+
C I2SStream We support the Stream interface for the I2S access. In addition we allow a separate mute pin which might also be used to drive a LED..
+
C ICYStream Icecast/Shoutcast Audio Stream which splits the data into metadata and audio data. The Audio data is provided via the regular stream functions. The metadata is handled with the help of the MetaDataICY state machine and provided via a callback method
+
C ICYStreamBuffered ICYStream implementation for the ESP32 based on a FreeRTOS task This is a Icecast/Shoutcast Audio Stream which splits the data into metadata and audio data. The Audio data is provided via the regular stream functions. The metadata is handled with the help of the MetaDataICY state machine and provided via a callback method
+
C ICYUrlSetup Resolve icy-metaint from HttpRequest and execute metadata callbacks
+
C ID3v1
+
C ID3v1Enhanced
+
C ID3v2
+
C ID3v2Frame
+
C ID3v2FrameString
+
C IIR IIRFilter Converted from https://github.com/tttapa/Filters/blob/master/src/IIRFilter.h
+
C ILBCDecoder Decoder for iLBC. Depends on https://github.com/pschatzmann/libilbc
+
C ILBCEncoder Encoder for iLBC - Depends on https://github.com/pschatzmann/libopenilbc
+
C IMAState
+
C InputMerge Merges multiple input channels. The input must be mono! So if you provide 2 mono channels you get a stereo signal as result with the left channel from channel 0 and the right from channel 1
+
C InputMixer MixerStream is mixing the input from Multiple Input Streams. All streams must have the same audo format (sample rate, channels, bits per sample)
+
C int24_3bytes_t 24bit integer which is used for I2S sound processing. The values are really using 3 bytes. It works only on little endian machines!
+
C int24_4bytes_t 24bit integer which is used for I2S sound processing. The values are represented as int32_t, but only 3 bytes are used. If you assign values which are too big, they are clipped
+
C JpegOpenCV Display image with opencv to be used on the desktop
+
C JpegTFT Display jpeg image using https://github.com/Bodmer/TFT_eSPI and https://github.com/Bodmer/JPEGDecoder
+
C JupyterAudioT Output to Jupyter. We write the data just to a file from where we can load the data again for different representations
+
C LastSampleFader If we end audio and the last sample is not close to 0 we can hear a popping noise. This functionality brings the last value slowly to 0. Typless implementation
+
C LastSampleFaderT If we end audio and the last sample is not close to 0 we can hear a popping noise. This functionality brings the last value slowly to 0
+
C LC3Decoder Decoder for LC3. Depends on https://github.com/pschatzmann/arduino-liblc3
+
C LC3Encoder Encoder for LC3 - Depends on https://github.com/pschatzmann/arduino-liblc3
+
C LEDOutput LED output using the FastLED library
+
C LEDOutputConfig
+
C LEDOutputUnoR4 LED output using the R4 LED matrix library
+
C LEDOutputUnoR4Config
+
C LinearVolumeControl The simplest possible implementation of a VolumeControl : The input = output which describes a linear curve. You would use this implementation if you physically connect an audio pot!
+
► C List Double linked list
+
C Iterator
+
C Node
+
C Lock A simple RIA locking class for the ESP32 using _lock_t
+
C LogarithmicVolumeControl Parametric Logarithmic volume control. Using the formula pow(b,input) * a - a, where b is b = pow(((1/ym)-1), 2) and a is a = 1.0 / (b - 1.0). The parameter ym is determining the steepness. See https://electronics.stackexchange.com/questions/304692/formula-for-logarithmic-audio-taper-pot
+
C Maximilian AudioTools integration with Maximilian
+
C MeasuringStream Class which measures the truput
+
► C MedianFilter An embedded friendly, fast one-dimensional median filter algorithm implementation in C and C++ Useful for spike and noise removal from analog signals or other DSP Also known as "salt-and-pepper noise" or "impulse noise" filter
+
C sMedianFilter_t
+
C sMedianNode_t
+
C MemoryManager MemoryManager which activates the use of external SPIRAM memory. When external memory is in use, the allocation strategy is to initially try to satisfy smaller allocation requests with internal memory and larger requests with external memory. This sets the limit between the two, as well as generally enabling allocation in external memory
+
C MemoryOutput Writes to a preallocated memory
+
C MemoryStream A simple Stream implementation which is backed by allocated memory
+
► C MetaDataFilter Class which filters out ID3v1 and ID3v2 Metadata and provides only the audio data to the decoder
+
C ID3v2 ID3 verion 2 TAG Header (10 bytes)
+
C MetaDataICY Icecast/Shoutcast Metadata Handling. Metadata class which splits the data into audio and metadata. The result is provided via callback methods. see https://www.codeproject.com/Articles/11308/SHOUTcast-Stream-Ripper
+
C MetaDataID3 Simple ID3 Meta Data Parser which supports ID3 V1 and V2 and implements the Stream interface. You just need to set the callback(s) to receive the result and copy the audio data to this stream
+
C MetaDataID3Base ID3 Meta Data Common Functionality
+
C MetaDataID3V1 Simple ID3 Meta Data API which supports ID3 V1
+
C MetaDataID3V2 Simple ID3 Meta Data API which supports ID3 V2: We only support the "TALB", "TOPE", "TIT2", "TCON" tags
+
C MetaDataOutput ID3 and Icecast/Shoutcast metadata output support. Just write the audio data to an object of this class and receive the metadata via the callback
+
C MiniAudioConfig Configuration for MiniAudio
+
C MiniAudioStream MiniAudio: https://miniaud.io/
+
C ModulationBaseClass Class provides a wave table that can be populated with a number of preallocated waveforms. These can be used to generate audio in themselves or to modulate The parameters of another effect. Class initialised with sample rate
+
C MozziConfig Mozzi Configuration for input or output stream
+
C MozziGenerator Support for https://sensorium.github.io/Mozzi/ Define your updateControl() method. Define your updateAudio() method. Start by calling begin(control_rate) do not call audioHook(); in the loop !
+
C MozziStream We use the output functionality of Mozzi to output audio data. We expect the data as array of int16_t with one or two channels. Though we support the setting of a sample rate, we recommend to use the default sample rate from Mozzi which is available with the AUDIO_RATE define
+
C MP3DecoderHelix MP3 Decoder using libhelix: https://github.com/pschatzmann/arduino-libhelix This is basically just a simple wrapper to provide AudioInfo and AudioInfoSupport
+
C MP3DecoderMAD MP3 Decoder using https://github.com/pschatzmann/arduino-libmad
+
C MP3DecoderMini MP3 Decoder using https://github.com/pschatzmann/minimp3 . This decoder does not provide any good results and it is not suited to decode any audio above 32000 on an ESP32. So the sample rate is limited by the MINIMP3_MAX_SAMPLE_RATE variable
+
C MP3EncoderLAME Encodes PCM data to the MP3 format and writes the result to a stream This is basically just a wrapper using https://github.com/pschatzmann/arduino-liblame
+
C MP4Atom Represents a single MPEG4 atom
+
C MP4ParseBuffer
+
C MTSDecoder MPEG-TS (MTS) decoder. Extracts the AAC audio data from a MPEG-TS (MTS) data stream. You can define the relevant stream types via the API. Required dependency: https://github.com/pschatzmann/arduino-tsdemux
+
C MultiConverter Combines multiple converters
+
C MultiOutput Replicates the output to multiple destinations
+
C MusicalNotes Determination of the frequency of a music note
+
C Nano_BLE_freq_info Mapping Frequency constants to available frequencies
+
C Nano_BLE_ratio_info Mapping from Ratio Constants to frequency ratios
+
C NBuffer A lock free N buffer. If count=2 we create a DoubleBuffer, if count=3 a TripleBuffer etc
+
C NoFilter No change to the input
+
C NOPConverter Dummy converter which does nothing
+
C NullStream The Arduino Stream which provides silence and simulates a null device when used as audio target or audio source
+
C NumberConverter Converts from a source to a target number with a different type
+
C NumberFormatConverterStream Converter which converts between bits_per_sample and 16 bits. The templated NumberFormatConverterStreamT class is used based on the information provided by the bits_per_sample in the configuration
+
C NumberFormatConverterStreamT Converter which converts from source bits_per_sample to target bits_per_sample
+
C NumberReader Reads n numbers from an Arduino Stream
+
C Nuttall Nuttall FFT Window function
+
C OggContainerDecoder Decoder for Ogg Container. Decodes a packet from an Ogg container. The Ogg begin segment contains the AudioInfo structure. You can subclass and overwrite the beginOfSegment() method to implement your own headers Dependency: https://github.com/pschatzmann/arduino-libopus
+
C OggContainerEncoder Encoder for Ogg Container. Encodes a packet for an Ogg container. The Ogg begin segment contains the AudioInfo structure. You can subclass ond overwrite the writeHeader() method to implement your own header logic. When an optional encoder is specified in the constructor we package the encoded data. Dependency: https://github.com/pschatzmann/arduino-libopus
+
C OggContainerOutput Output class for the OggContainerEncoder . Each write is ending up as container entry
+
C OnOffOutput Switched Output class. Class which can be used to filter the output out based on a switch: If the switch is on the output is forwarded. If it is off it is just ignored
+
C OpusAudioDecoder OpusAudioDecoder : Depends on https://github.com/pschatzmann/arduino-libopus.git
+
C OpusAudioEncoder OpusAudioEncoder : Dependens on https://github.com/pschatzmann/arduino-libopus.git
+
C OpusEncoderSettings Setting for Opus Encoder where the following values are valid: -1 indicates that the default value should be used and that this codec is not setting the value
+
C OpusOggDecoder Opus Decoder which uses the Ogg Container. See https://datatracker.ietf.org/doc/html/rfc7845 . The audio data is transmitted in frames and the header information contains the sampler rate, channels and other critical info. Dependency: https://github.com/pschatzmann/arduino-libopus
+
C OpusOggEncoder Opus Encoder which uses the Ogg Container: see https://datatracker.ietf.org/doc/html/rfc7845 Dependency: https://github.com/pschatzmann/arduino-libopus
+
C OpusOggWriter
+
C OpusSettings Setting for Opus Decoder
+
C OutputMixer Mixing of multiple outputs to one final output
+
C Parameter A constant value
+
C ParseBuffer We try to keep the necessary buffer for parsing as small as possible, The data() method provides the start of the actual data and with consume we remove the processed data from the buffer to make space again
+
C ParseObject
+
C PinInfoESP32 Information for a PIN
+
C PinkNoiseGenerator Generates pink noise
+
C PitchShift Shifts the pitch by the indicated step size: e.g. 2 doubles the pitch
+
C PitchShiftInfo Configuration for PitchShiftOutput : set the pitch_shift to define the shift
+
C PitchShiftOutput Pitch Shift: Shifts the frequency up or down w/o impacting the length! We reduce the channels to 1 to calculate the pitch shift and provides the pitch shifted result in the correct number of channels. The pitch shifting is done with the help of a buffer that can have potentially multiple implementations
+
C PoppingSoundRemover Big value gaps (at the beginning and the end of a recording) can lead to some popping sounds. We will try to set the values to 0 until the first transition thru 0 of the audio curve
+
C PortAudioConfig PortAudio information
+
C PortAudioStream Arduino Audio Stream using PortAudio
+
C Print
+
C ProcessedResult
+
C ProgressStream Generic calss to measure the the total bytes which were processed in order to calculate the progress as a percentage of the total size
+
C ProgressStreamInfo Configuration for ProgressStream
+
C PWMAudioOutput Common functionality for PWM output. Please use the PWMAudioOutput typedef instead which references the implementation
+
C PWMConfig Configuration data for PWM audio output
+
C PWMDriverAVR Experimental: Audio output to PWM pins for the AVR. The AVR supports only up to 2 channels
+
C PWMDriverESP32 Audio output to PWM pins for the ESP32. The ESP32 supports up to 16 channels
+
C PWMDriverMBED Audio output to PWM pins for MBED based Arduino implementations
+
C PWMDriverRenesas Audio output to PWM pins for Renesas based Arduino implementations
+
C PWMDriverSTM32 Audio output to PWM pins for STM32. We use one timer to generate the sample rate and one timer for the PWM signal
+
C Queue FIFO Queue which is based on a List
+
► C QueueLockFree Lock Free Queue
+
C node
+
C QueueStream AudioStream class which stores the data in a temporary queue buffer. The queue can be consumed e.g. by a callback function by calling readBytes();
+
C RECT
+
C Rectange Rectange FFT Window function
+
C ReformatBaseStream Base class for chained converting streams
+
C ResampleConfig Optional Configuration object. The critical information is the channels and the step_size. All other information is not used
+
C ResampleStream Dynamic Resampling. We can use a variable factor to speed up or slow down the playback
+
C RingBuffer Implements a typed Ringbuffer
+
C RingBufferFile An File backed Ring Buffer that we can use to receive streaming audio. We expect an open p_file as parameter
+
C RingBufferStream A Stream backed by a Ringbuffer. We can write to the end and read from the beginning of the stream
+
C RTSPFormatAbtX AbtX format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
+
C RTSPFormatAudioTools RTSPFormat which supports the AudioInfo class
+
C RTSPFormatG711 G711 μ-Law format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats Packet intervall: 20, frame size: any
+
C RTSPFormatGSM GSM format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
+
C RTSPFormatOpus Opus format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
+
C RTSPFormatPCM PCM format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
+
C RTSPFormatPCM8 L8 format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
+
C RTSPOutput We can write PCM data to the RTSPOutput . This is encoded by the indicated encoder (e.g. SBCEncoder ) and can be consumed by a RTSPServer. You have to make sure that the codec supports the provided audio format: e.g. GSM support only 8000 samples per second with one channel. Depends on the https://github.com/pschatzmann/Micro-RTSP-Audio/ library
+
C RTSPOutputPCMInfo PCMInfo subclass which provides the audio information from the related AudioStream Depends on the https://github.com/pschatzmann/Micro-RTSP-Audio/ library
+
C RTSPPCMAudioInfo PCMInfo subclass which provides the audio information from the AudioInfo parameter
+
C RTSPSourceFromAudioStream Simple Facade which can turn AudioStream into a IAudioSource. This way we can e.g. use an I2SStream as source to stream data Depends on the https://github.com/pschatzmann/Micro-RTSP-Audio/ library
+
C RTSPSourceStream Simple Facade which can turn any Stream into a IAudioSource. This way we can e.g. use an I2SStream as source to stream data Depends on the https://github.com/pschatzmann/Micro-RTSP-Audio/ library
+
C SBCDecoder Decoder for SBC. Depends on https://github.com/pschatzmann/arduino-libsbc . Inspired by sbcdec.c
+
C SBCEncoder Encoder for SBC - Depends on https://github.com/pschatzmann/arduino-libsbc . Inspired by sbcenc.c
+
C ScaledParameter Scales a dynamic parameter to the indicated range
+
C SDDirect We access the files directy with an index. The index is determined by a recurseve tree walk thru the directory. Unfortunatly the SDTFAT library has it's own API which is incompatible with the SDT API
+
C SDIndex We store all the relevant file names in an sequential index file. Form there we can access them via an index
+
C SilenceGenerator Provides a fixed value (e.g. 0) as sound data. This can be used e.g. to test the output functionality which should optimally just output silence and no artifacts
+
C SilenceRemovalConverter Removes any silence from the buffer that is longer then n samples with a amplitude below the indicated threshhold. If you process multiple channels you need to multiply the channels with the number of samples to indicate n
+
C SimpleChorus Simple Chorus effect with a single delay voice and mono output Chorus is effective between 15 and 20 miliseconds delay of original audio. Requires the sample rate when initialising
+
C SimpleContainerConfig
+
C SimpleContainerDataHeader
+
C SimpleContainerMetaDataHeader
+
C SimpleDelay Simple Delay effect consiting of a single tap delay with Effect Gain and feed back controls Constructor requires internal delay in samples
+
C SimpleFlanger Simple Flanger Effect Consistig of a single voice flanger The flanger has an effective range between 0 and 15 miliseconds in this case dleay buffer should be set to sampleRate*3/200 Constructor requires internal delay in samples
+
C SimpleLPF SimpleLPF
+
C SimulatedAudioPot Simple simulated audio pot volume control inspired by https://eepower.com/resistor-guide/resistor-types/potentiometer-taper/# We split up the input/output curve into 2 linear pieces with a slow and a fast raising part. The slow raising part goes from (0,0) to (x,y). The fast raising part goes from (x,y) to (1,1)
+
C SineFromTable A sine generator based on a table. The table is created based using degrees where one full wave is 360 degrees
+
C SineWaveGenerator Generates a Sound with the help of sin() function. If you plan to change the amplitude or frequency (incrementally), I suggest to use SineFromTable instead
+
C SingleBuffer A simple Buffer implementation which just uses a (dynamically sized) array
+
C Slice Helps to split up a big memory array into smaller slices. There are no additinal heap allocations! Example: if we have an array with 9 entries (1,2,3,4,5,6,7,8,9): slices(5) gives 2. slice(5,0) returns size 5 with 1,2,3,4,5 and slice(5,1) returns size 4 with 6,7,8,9!
+
C SmoothTransition Changes the samples at the beginning or at the end to slowly ramp up the volume
+
C SOSFilter Second Order Filter : Instead of manually cascading BiQuad filters, you can use a Second Order Sections filter (SOS). converted from https://github.com/tttapa/Filters/blob/master/src/SOSFilter.h Use float or double (and not a integer type) as type parameter
+
C SoundGenerator Base class to define the abstract interface for the sound generating classes
+
C SoundGeneratorModulation SoundGenerator using the ModulationBaseClass to generate the samples
+
C SPDIFConfig SPDIF configuration
+
C SPDIFOutput Output as 16 bit stereo SPDIF on the I2S data output pin
+
C SquareWaveGenerator Generates a square wave sound
+
C Stack LIFO Stack which is based on a List
+
C StdioStream
+
C STKChorus Chorus Effect
+
C STKChowningReverb John Chowning's reverberator class
+
C STKEcho Echo Effect
+
C STKEffect Use any effect from the STK framework: e.g. Chorus, Echo, FreeVerb, JCRev, PitShift... https://github.com/pschatzmann/Arduino-STK
+
C STKFreeVerb Jezar at Dreampoint's FreeVerb, implemented in STK
+
C STKGenerator The Synthesis ToolKit in C++ (STK) is a set of open source audio signal processing and algorithmic synthesis classes written in the C++ programming language.
-
C STKLentPitShift Pitch shifter effect class based on the Lent algorithm
-
C STKNReverb CCRMA's NRev reverberator class
-
C STKPerryReverb Perry's simple reverberator class
-
C STKPitShift Pitch shifter effect class based on the Lent algorithm
-
C STKStream STK Stream for Instrument or Voicer
-
C Str A simple wrapper to provide string functions on char*. If the underlying char* is a const we do not allow any updates; The ownership of the chr* must be managed externally!
-
C Stream
-
C StreamCopy We provide the typeless StreamCopy as a subclass of StreamCopyT
-
C StreamCopyT Typed Stream Copy which supports the conversion from channel to 2 channels. We make sure that we allways copy full samples
-
C StreamingDecoder A Streaming Decoder where we provide both the input and output as streams
-
C StrExt Str which keeps the data on the heap. We grow the allocated memory only if the copy source is not fitting
-
► C Synthesizer A simple Synthesizer which can generate sound having multiple keys pressed. The main purpose of this class is managing the synthezizer channels
-
C KeyParameter
-
C SynthesizerKey Arduino GPIO pin to note assossiation
-
C TestGenerator Generates a test signal which is easy to check because the values are incremented or decremented by 1
-
C TfLiteAbstractRecognizeCommands Base class for implementing different primitive decoding models on top of the instantaneous results from running an audio recognition model on a single window of samples
-
C TfLiteAudioErrorReporter Error Reporter using the Audio Tools Logger
-
C TfLiteAudioStream TfLiteAudioStream which uses Tensorflow Light to analyze the data. If it is used as a generator (where we read audio data)
-
C TfLiteAudioStreamBase Astract TfLiteAudioStream to provide access to TfLiteAudioStream for Reader and Writers
-
C TfLiteConfig Configuration settings for TfLiteAudioStream
-
C TfLiteMicroSpeachWriter TfLiteMicroSpeachWriter for Audio Data
-
► C TfLiteMicroSpeechRecognizeCommands This class is designed to apply a very primitive decoding model on top of the instantaneous results from running an audio recognition model on a single window of samples. It applies smoothing over time so that noisy individual label scores are averaged, increasing the confidence that apparent matches are real. To use it, you should create a class object with the configuration you want, and then feed results from running a TensorFlow model into the processing method. The timestamp for each subsequent call should be increasing from the previous, since the class is designed to process a stream of data over time
-
C Result
-
C TfLiteQuantizer Quantizer that helps to quantize and dequantize between float and int8
-
C TfLiteReader Input class which provides the next value if the TfLiteAudioStream is treated as an audio sourcce
-
C TfLiteSineReader Generate a sine output from a model that was trained on the sine method. (=hello_world)
-
C TfLiteWriter Output class which interprets audio data if TfLiteAudioStream is treated as audio sink
-
C Throttle Throttle the sending of the audio data to limit it to the indicated sample rate
-
C ThrottleConfig Configure Throttle setting
-
C TimedStream AudioStream class that can define a start and (an optional) stop time Usually it is used to wrap an Audio Sink (e.g. I2SStream ), but wrapping an Audio Source is supported as well. Only wrap classes which represent PCM data!
-
C TimerAlarmRepeating Common Interface definition for TimerAlarmRepeating
-
C TimerAlarmRepeatingDriverAVR Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating
-
C TimerAlarmRepeatingDriverBase
-
C TimerAlarmRepeatingDriverESP8266 Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating
-
C TimerAlarmRepeatingDriverMBED Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating
-
C TimerAlarmRepeatingDriverRenesas Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating . By default we use a new GPT timer. You can also request 1 AGT timer by calling setTimer(1);
-
C TimerAlarmRepeatingDriverSTM32 STM32 Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating
-
C TimerCallbackAudioStream Callback driven Audio Source (rx_tx_mode==RX_MODE) or Audio Sink (rx_tx_mode==TX_MODE). This class allows to to integrate external libraries in order to consume or generate a data stream which is based on a timer
-
C TimerCallbackAudioStreamInfo TimerCallbackAudioStream Configuration
-
► C TransformationReader ConverterStream Helper class which implements the converting readBytes with the help of write
-
C AdapterPrintToArray
-
C Tremolo Tremolo AudioEffect
-
C Triangle Triangle FFT Window function
-
C UDPStream
-
C Url URL parser which breaks a full url string up into its individual parts
-
C URLHistory
-
C URLLoader
-
C URLStream Represents the content of a URL as Stream . We use the WiFi.h API
-
C URLStreamBuffered URLStream implementation for the ESP32 based on a separate FreeRTOS task
-
C VariableSpeedRingBuffer Optimized Buffer implementation for Pitch Shift. We try to interpolate the samples and restore the phase when the read pointer and write pointer overtake each other
-
C VariableSpeedRingBuffer180 Varialbe speed ring buffer where we read with 0 and 180 degree and blend the result to prevent overrun artifacts. See https://github.com/YetAnotherElectronicsChannel/STM32_DSP_PitchShift
-
C VariableSpeedRingBufferSimple Very Simple Buffer implementation for Pitch Shift. We write in constant speed, but reading can be done in a variable speed. We will hear some noise when the buffer read and write pointers overrun each other
-
C VBANConfig
-
C VBANStream VBAN Audio Source and Sink for the ESP32. For further details please see https://vb-audio.com/Voicemeeter/vban.htm . Inspired by https://github.com/rkinnett/ESP32-VBAN-Audio-Source/tree/master and https://github.com/rkinnett/ESP32-VBAN-Network-Audio-Player
-
► C Vector Vector implementation which provides the most important methods as defined by std::vector. This class it is quite handy to have and most of the times quite better then dealing with raw c arrays
-
C iterator Iterator for the Vector class
-
C VideoAudioBufferedSync Logic to Synchronize video and audio output: we use a buffer to store the audio and instead of delaying the frames with delay() we play audio. The bufferSize defines the audio buffer in bytes. The correctionMs is used to slow down or speed up the playback of the video to prevent any audio buffer underflows
-
C VideoAudioSync Logic to Synchronize video and audio output: This is the minimum implementatin which actually does not synchronize, but directly processes the data. No additinal memory is used! Provide your own optimized platform specific implementation
-
C VideoOutput Abstract class for video playback. This class is used to assemble a complete video frame in memory
-
C VolumeControl Abstract class for handling of the linear input volume to determine the multiplication factor which should be applied to the audio signal
-
C VolumeOutput A simple class to determine the volume
-
C VolumeStream Adjust the volume of the related input or output: To work properly the class needs to know the bits per sample and number of channels! AudioChanges are forwareded to the related Print or Stream class
-
C VolumeStreamConfig Config for VolumeStream
-
C VorbisDecoder Vorbis Streaming Decoder using https://github.com/pschatzmann/arduino-libvorbis-idec https://github.com/pschatzmann/arduino-libopus.git
-
C VS1053Config Configuration for VS1053Stream
-
C VS1053Stream VS1053 Output Interface which processes PCM data by default. If you want to write encoded data set is_encoded_data = true in the configuration;
-
C WAVAudioInfo Sound information which is available in the WAV header
-
C WAVDecoder A simple WAVDecoder : We parse the header data on the first record to determine the format. If no AudioDecoderExt is specified we just write the PCM data to the output that is defined by calling setOutput() . You can define a ADPCM decoder to decode WAV files that contain ADPCM data
-
C WAVEncoder A simple WAV file encoder. If no AudioEncoderExt is specified the WAV file contains PCM data, otherwise it is encoded as ADPCM. The WAV header is written with the first writing of audio data. Calling begin() is making sure that the header is written again
-
C WAVFormatX
-
C WAVHeader Parser for Wav header data for details see https://de.wikipedia.org/wiki/RIFF_WAVE
-
C WavIMAAudioInfo Sound information which is available in the WAV header - adjusted for IMA ADPCM
-
C WavIMADecoder Obsolete: WavIMADecoder - based on WAVDecoder - We parse the header data as we receive it and send the sound data to the stream which was indicated in the constructor. Only WAV files with WAVE_FORMAT_IMA_ADPCM are supported by this codec!
-
C WavIMAHeader
-
C Welch Welch FFT Window function
-
C WhiteNoiseGenerator Generates a random noise sound with the help of rand() function
-
C WindowFunction FFT Window Function
-
C WM8960Config Configuration for WM8960
-
C WM8960Stream Stream for reading and writing audio data using the WM8960 Codec Chip You need to install https://github.com/pschatzmann/arduino-wm8960
+
C STKLentPitShift Pitch shifter effect class based on the Lent algorithm
+
C STKNReverb CCRMA's NRev reverberator class
+
C STKPerryReverb Perry's simple reverberator class
+
C STKPitShift Pitch shifter effect class based on the Lent algorithm
+
C STKStream STK Stream for Instrument or Voicer
+
C Str A simple wrapper to provide string functions on char*. If the underlying char* is a const we do not allow any updates; The ownership of the chr* must be managed externally!
+
C Stream
+
C StreamCopy We provide the typeless StreamCopy as a subclass of StreamCopyT
+
C StreamCopyT Typed Stream Copy which supports the conversion from channel to 2 channels. We make sure that we allways copy full samples
+
C StreamingDecoder A Streaming Decoder where we provide both the input and output as streams
+
C StrExt Str which keeps the data on the heap. We grow the allocated memory only if the copy source is not fitting
+
► C Synthesizer A simple Synthesizer which can generate sound having multiple keys pressed. The main purpose of this class is managing the synthezizer channels
+
C KeyParameter
+
C SynthesizerKey Arduino GPIO pin to note assossiation
+
C TestGenerator Generates a test signal which is easy to check because the values are incremented or decremented by 1
+
C TfLiteAbstractRecognizeCommands Base class for implementing different primitive decoding models on top of the instantaneous results from running an audio recognition model on a single window of samples
+
C TfLiteAudioErrorReporter Error Reporter using the Audio Tools Logger
+
C TfLiteAudioStream TfLiteAudioStream which uses Tensorflow Light to analyze the data. If it is used as a generator (where we read audio data)
+
C TfLiteAudioStreamBase Astract TfLiteAudioStream to provide access to TfLiteAudioStream for Reader and Writers
+
C TfLiteConfig Configuration settings for TfLiteAudioStream
+
C TfLiteMicroSpeachWriter TfLiteMicroSpeachWriter for Audio Data
+
► C TfLiteMicroSpeechRecognizeCommands This class is designed to apply a very primitive decoding model on top of the instantaneous results from running an audio recognition model on a single window of samples. It applies smoothing over time so that noisy individual label scores are averaged, increasing the confidence that apparent matches are real. To use it, you should create a class object with the configuration you want, and then feed results from running a TensorFlow model into the processing method. The timestamp for each subsequent call should be increasing from the previous, since the class is designed to process a stream of data over time
+
C Result
+
C TfLiteQuantizer Quantizer that helps to quantize and dequantize between float and int8
+
C TfLiteReader Input class which provides the next value if the TfLiteAudioStream is treated as an audio sourcce
+
C TfLiteSineReader Generate a sine output from a model that was trained on the sine method. (=hello_world)
+
C TfLiteWriter Output class which interprets audio data if TfLiteAudioStream is treated as audio sink
+
C Throttle Throttle the sending of the audio data to limit it to the indicated sample rate
+
C ThrottleConfig Configure Throttle setting
+
C TimedStream AudioStream class that can define a start and (an optional) stop time Usually it is used to wrap an Audio Sink (e.g. I2SStream ), but wrapping an Audio Source is supported as well. Only wrap classes which represent PCM data!
+
C TimerAlarmRepeating Common Interface definition for TimerAlarmRepeating
+
C TimerAlarmRepeatingDriverAVR Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating
+
C TimerAlarmRepeatingDriverBase
+
C TimerAlarmRepeatingDriverESP8266 Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating
+
C TimerAlarmRepeatingDriverMBED Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating
+
C TimerAlarmRepeatingDriverRenesas Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating . By default we use a new GPT timer. You can also request 1 AGT timer by calling setTimer(1);
+
C TimerAlarmRepeatingDriverSTM32 STM32 Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating
+
C TimerCallbackAudioStream Callback driven Audio Source (rx_tx_mode==RX_MODE) or Audio Sink (rx_tx_mode==TX_MODE). This class allows to to integrate external libraries in order to consume or generate a data stream which is based on a timer
+
C TimerCallbackAudioStreamInfo TimerCallbackAudioStream Configuration
+
► C TransformationReader ConverterStream Helper class which implements the converting readBytes with the help of write
+
C AdapterPrintToArray
+
C Tremolo Tremolo AudioEffect
+
C Triangle Triangle FFT Window function
+
C UDPStream
+
C Url URL parser which breaks a full url string up into its individual parts
+
C URLHistory
+
C URLLoader
+
C URLStream Represents the content of a URL as Stream . We use the WiFi.h API
+
C URLStreamBuffered URLStream implementation for the ESP32 based on a separate FreeRTOS task
+
C VariableSpeedRingBuffer Optimized Buffer implementation for Pitch Shift. We try to interpolate the samples and restore the phase when the read pointer and write pointer overtake each other
+
C VariableSpeedRingBuffer180 Varialbe speed ring buffer where we read with 0 and 180 degree and blend the result to prevent overrun artifacts. See https://github.com/YetAnotherElectronicsChannel/STM32_DSP_PitchShift
+
C VariableSpeedRingBufferSimple Very Simple Buffer implementation for Pitch Shift. We write in constant speed, but reading can be done in a variable speed. We will hear some noise when the buffer read and write pointers overrun each other
+
C VBANConfig
+
C VBANStream VBAN Audio Source and Sink for the ESP32. For further details please see https://vb-audio.com/Voicemeeter/vban.htm . Inspired by https://github.com/rkinnett/ESP32-VBAN-Audio-Source/tree/master and https://github.com/rkinnett/ESP32-VBAN-Network-Audio-Player
+
► C Vector Vector implementation which provides the most important methods as defined by std::vector. This class it is quite handy to have and most of the times quite better then dealing with raw c arrays
+
C iterator Iterator for the Vector class
+
C VideoAudioBufferedSync Logic to Synchronize video and audio output: we use a buffer to store the audio and instead of delaying the frames with delay() we play audio. The bufferSize defines the audio buffer in bytes. The correctionMs is used to slow down or speed up the playback of the video to prevent any audio buffer underflows
+
C VideoAudioSync Logic to Synchronize video and audio output: This is the minimum implementatin which actually does not synchronize, but directly processes the data. No additinal memory is used! Provide your own optimized platform specific implementation
+
C VideoOutput Abstract class for video playback. This class is used to assemble a complete video frame in memory
+
C VolumeControl Abstract class for handling of the linear input volume to determine the multiplication factor which should be applied to the audio signal
+
C VolumeOutput A simple class to determine the volume
+
C VolumeStream Adjust the volume of the related input or output: To work properly the class needs to know the bits per sample and number of channels! AudioChanges are forwareded to the related Print or Stream class
+
C VolumeStreamConfig Config for VolumeStream
+
C VorbisDecoder Vorbis Streaming Decoder using https://github.com/pschatzmann/arduino-libvorbis-idec https://github.com/pschatzmann/arduino-libopus.git
+
C VS1053Config Configuration for VS1053Stream
+
C VS1053Stream VS1053 Output Interface which processes PCM data by default. If you want to write encoded data set is_encoded_data = true in the configuration;
+
C WAVAudioInfo Sound information which is available in the WAV header
+
C WAVDecoder A simple WAVDecoder : We parse the header data on the first record to determine the format. If no AudioDecoderExt is specified we just write the PCM data to the output that is defined by calling setOutput() . You can define a ADPCM decoder to decode WAV files that contain ADPCM data
+
C WAVEncoder A simple WAV file encoder. If no AudioEncoderExt is specified the WAV file contains PCM data, otherwise it is encoded as ADPCM. The WAV header is written with the first writing of audio data. Calling begin() is making sure that the header is written again
+
C WAVFormatX
+
C WAVHeader Parser for Wav header data for details see https://de.wikipedia.org/wiki/RIFF_WAVE
+
C WavIMAAudioInfo Sound information which is available in the WAV header - adjusted for IMA ADPCM
+
C WavIMADecoder Obsolete: WavIMADecoder - based on WAVDecoder - We parse the header data as we receive it and send the sound data to the stream which was indicated in the constructor. Only WAV files with WAVE_FORMAT_IMA_ADPCM are supported by this codec!
+
C WavIMAHeader
+
C Welch Welch FFT Window function
+
C WhiteNoiseGenerator Generates a random noise sound with the help of rand() function
+
C WindowFunction FFT Window Function
+
C WM8960Config Configuration for WM8960
+
C WM8960Stream Stream for reading and writing audio data using the WM8960 Codec Chip You need to install https://github.com/pschatzmann/arduino-wm8960
► N ffft
C Array
C DynArray
diff --git a/classaudio__tools_1_1_i2_s_driver_e_s_p32-members.html b/classaudio__tools_1_1_i2_s_driver_e_s_p32-members.html
new file mode 100644
index 0000000000..dd43e3dea2
--- /dev/null
+++ b/classaudio__tools_1_1_i2_s_driver_e_s_p32-members.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+
+
+
arduino-audio-tools: Member List
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ arduino-audio-tools
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
This is the complete list of members for I2SDriverESP32 , including all inherited members.
+
+
+
+
+
diff --git a/classaudio__tools_1_1_i2_s_driver_e_s_p32.html b/classaudio__tools_1_1_i2_s_driver_e_s_p32.html
new file mode 100644
index 0000000000..342933cdf3
--- /dev/null
+++ b/classaudio__tools_1_1_i2_s_driver_e_s_p32.html
@@ -0,0 +1,193 @@
+
+
+
+
+
+
+
+
arduino-audio-tools: I2SDriverESP32 Class Reference
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ arduino-audio-tools
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Basic I2S API - for the ESP32. If we receive 1 channel, we expand the result to 2 channels.
+ More...
+
+
#include <I2SESP32.h >
+
+
+
+int available ()
+ we assume the data is already available in the buffer
+
+
+int availableForWrite ()
+ We limit the write size to the buffer size.
+
+
+bool begin ()
+ starts the DAC with the current config - if not started yet. If I2S has been started there is no action and we return true
+
+
+bool begin (I2SConfig cfg)
+ starts the DAC
+
+
+bool begin (RxTxMode mode)
+ starts the DAC with the default config
+
+
+I2SConfig config ()
+ provides the actual configuration
+
+
+I2SConfig defaultConfig (RxTxMode mode)
+ Provides the default configuration.
+
+
+void end ()
+ stops the I2C and unistalls the driver
+
+
+size_t readBytes (void *dest, size_t size_bytes)
+
+
+size_t writeBytes (const void *src, size_t size_bytes)
+ writes the data to the I2S interface
+
+
+
+
+bool begin (I2SConfig cfg, int txPin, int rxPin)
+ starts the DAC
+
+
+int getModeDigital (I2SConfig &cfg)
+
+
+bool isNoChannelConversion (I2SConfig cfg)
+
+
+void setChannels (int channels)
+
+
+i2s_comm_format_t toCommFormat (I2SFormat mode)
+
+
+i2s_mode_t toMode (I2SConfig &cfg)
+
+
+
+
+static size_t writeExpandChannel (i2s_port_t i2s_num, const int bits_per_sample, const void *src, size_t size_bytes)
+ writes the data by making sure that we send 2 channels
+
+
+
+
+I2SConfig cfg = defaultConfig (RX_MODE)
+
+
+i2s_config_t i2s_config
+
+
+i2s_port_t i2s_num
+
+
+bool is_started = false
+
+
+
+
+class AnalogAudio
+
+
+class AudioKitStream
+
+
+
+
Basic I2S API - for the ESP32. If we receive 1 channel, we expand the result to 2 channels.
+
Author Phil Schatzmann
+
Copyright GPLv3
+
The documentation for this class was generated from the following file:
+
+
+
+
+
diff --git a/classaudio__tools_1_1_i2_s_stream.html b/classaudio__tools_1_1_i2_s_stream.html
index 7f98050526..de04dab3d8 100644
--- a/classaudio__tools_1_1_i2_s_stream.html
+++ b/classaudio__tools_1_1_i2_s_stream.html
@@ -118,7 +118,7 @@
Provides the default configuration.
-I2SDriver * driver ()
+
I2SDriver *
driver ()
Provides access to the driver.
@@ -180,7 +180,7 @@
int _timeout = 10
-I2SDriver i2s
+
I2SDriver i2s
AudioInfo info
diff --git a/classes.html b/classes.html
index 55765a9403..c9eedd8601 100644
--- a/classes.html
+++ b/classes.html
@@ -93,7 +93,7 @@
Hamming (audio_tools )Hann (audio_tools )HardwareSerial (audio_tools )HexDumpOutput (audio_tools )HLSParser (audio_tools )HLSStream (audio_tools )HttpChunkReader (audio_tools )HttpHeader (audio_tools )HttpHeaderLine (audio_tools )HttpLineReader (audio_tools )HttpReplyHeader (audio_tools )HttpRequest (audio_tools )HttpRequestHeader (audio_tools )
I
-I2SConfig (audio_tools )I2SDriverESP32V1 (audio_tools )I2SDriverESP8266 (audio_tools )I2SDriverNanoBLE (audio_tools )I2SDriverSAMD (audio_tools )I2SDriverSTM32 (audio_tools )I2SStream (audio_tools )ICYStream (audio_tools )ICYStreamBuffered (audio_tools )ICYUrlSetup (audio_tools )ID3v1 (audio_tools )ID3v1Enhanced (audio_tools )ID3v2 (audio_tools )MetaDataFilter::ID3v2 (audio_tools )ID3v2Frame (audio_tools )ID3v2FrameString (audio_tools )IIR (audio_tools )ILBCDecoder (audio_tools )ILBCEncoder (audio_tools )IMAState (audio_tools )initializer_list (std)InputMerge (audio_tools )InputMixer (audio_tools )int24_3bytes_t (audio_tools )int24_4bytes_t (audio_tools )AnalogDriverESP32V1::IO16Bit (audio_tools )List::Iterator (audio_tools )Vector::iterator (audio_tools )
+
I2SConfig (audio_tools )I2SDriverESP32 (audio_tools )I2SDriverESP32V1 (audio_tools )I2SDriverESP8266 (audio_tools )I2SDriverNanoBLE (audio_tools )I2SDriverSAMD (audio_tools )I2SDriverSTM32 (audio_tools )I2SStream (audio_tools )ICYStream (audio_tools )ICYStreamBuffered (audio_tools )ICYUrlSetup (audio_tools )ID3v1 (audio_tools )ID3v1Enhanced (audio_tools )MetaDataFilter::ID3v2 (audio_tools )ID3v2 (audio_tools )ID3v2Frame (audio_tools )ID3v2FrameString (audio_tools )IIR (audio_tools )ILBCDecoder (audio_tools )ILBCEncoder (audio_tools )IMAState (audio_tools )initializer_list (std)InputMerge (audio_tools )InputMixer (audio_tools )int24_3bytes_t (audio_tools )int24_4bytes_t (audio_tools )AnalogDriverESP32V1::IO16Bit (audio_tools )List::Iterator (audio_tools )Vector::iterator (audio_tools )
J
JpegOpenCV (audio_tools )JpegTFT (audio_tools )JupyterAudioT (audio_tools )
diff --git a/functions.html b/functions.html
index 1847b2e8bf..c344c1f3ce 100644
--- a/functions.html
+++ b/functions.html
@@ -99,7 +99,7 @@
- a -
, Str
addAction()
-: AudioKitStream
+: AudioKitStream
addColumnBar()
: LEDOutput
@@ -159,7 +159,7 @@ - a -
AnalogConfigESP32V1()
-: AnalogConfigESP32V1
+: AnalogConfigESP32V1
AnalogConfigStd()
: AnalogConfigStd
@@ -217,7 +217,7 @@ - a -
AudioInfo()
-: AudioInfo
+: AudioInfo
audioInfo()
: FLACDecoder
@@ -282,6 +282,7 @@ - a -
, BufferedTaskStream
, ConverterStream< T >
, GeneratedSoundStream< T >
+, I2SDriverESP32
, I2SDriverESP32V1
, I2SDriverESP8266
, I2SDriverSTM32
@@ -309,6 +310,7 @@ - a -
: AbstractURLStream
, AudioFFTBase
, BaseBuffer< T >
+, I2SDriverESP32
, I2SDriverESP32V1
, I2SDriverESP8266
, I2SDriverSTM32
diff --git a/functions_b.html b/functions_b.html
index d6d183d03a..1ce8b10be8 100644
--- a/functions_b.html
+++ b/functions_b.html
@@ -74,9 +74,9 @@ - b -
: A2DPStream
, AACDecoderFAAD
, AACDecoderHelix
-, AACEncoderFDK
+, AACEncoderFDK
, AbstractSynthesizerChannel
-, AnalogAudioStream
+, AnalogAudioStream
, AnalogDriverESP32
, AnalogDriverESP32V1
, AnalogDriverMBED
@@ -101,31 +101,32 @@ - b -
, AudioWAVServerEx
, BufferedWindow
, ContainerMP4
-, CsvOutput< T >
+, CsvOutput< T >
, DecoderHelix
, DefaultSynthesizerChannel
, DynamicMemoryStream
-, EncodedAudioOutput
+, EncodedAudioOutput
, EncoderBase64
, EncoderBasic
-, EncoderFloat
+, EncoderFloat
, EncoderL16
, EncoderL8
, ESPNowStream
, FaustStream< DSP >
, FLACDecoder
-, FLACEncoder
+, FLACEncoder
, GeneratedSoundStream< T >
, GeneratorFixedValue< T >
, GeneratorFromArray< T >
+, I2SDriverESP32
, I2SDriverESP32V1
, I2SDriverESP8266
, I2SDriverNanoBLE
-, I2SDriverSAMD
+, I2SDriverSAMD
, I2SDriverSTM32
, I2SStream
, LEDOutput
-, LEDOutputUnoR4
+, LEDOutputUnoR4
, Maximilian
, MemoryManager
, MetaDataFilter< Decoder >
@@ -164,7 +165,7 @@ - b -
, UDPStream
, VolumeStream
, VorbisDecoder
-, VS1053Stream
+, VS1053Stream
, WAVEncoder
, WindowFunction
, WM8960Stream
diff --git a/functions_c.html b/functions_c.html
index a1e2cb3ede..b66d97c011 100644
--- a/functions_c.html
+++ b/functions_c.html
@@ -145,6 +145,7 @@ - c -
config()
: AudioFFTBase
+, I2SDriverESP32
, I2SDriverESP32V1
, I2SDriverESP8266
, I2SDriverNanoBLE
diff --git a/functions_d.html b/functions_d.html
index 49e4ce5155..94890b2849 100644
--- a/functions_d.html
+++ b/functions_d.html
@@ -121,6 +121,7 @@ - d -
addAction()
: AudioKitStream
@@ -159,7 +159,7 @@ - a -
AnalogConfigESP32V1()
-: AnalogConfigESP32V1
+: AnalogConfigESP32V1
AnalogConfigStd()
: AnalogConfigStd
@@ -196,10 +196,10 @@ - a -
AudioEffects()
-: AudioEffects< GeneratorT >
+: AudioEffects< GeneratorT >
AudioEncoderServer()
-: AudioEncoderServer
+: AudioEncoderServer
AudioFFTBase()
: AudioFFTBase
@@ -208,7 +208,7 @@ - a -
AudioInfo()
-: AudioInfo
+: AudioInfo
audioInfo()
: FLACDecoder
@@ -273,6 +273,7 @@ - a -
begin()
-: A2DPStream
+: A2DPStream
, AACDecoderFAAD
, AACDecoderHelix
-, AACEncoderFDK
+, AACEncoderFDK
, AbstractSynthesizerChannel
-, AnalogAudioStream
+, AnalogAudioStream
, AnalogDriverESP32
, AnalogDriverESP32V1
, AnalogDriverMBED
@@ -82,7 +82,7 @@ - b -
, AudioKitStream
, AudioOutputWithCallback
, AudioPlayer
-, AudioServer
+, AudioServer
, AudioSource
, AudioSourceCallback
, AudioSourceIdxSD
@@ -98,14 +98,14 @@ - b -
, AudioWAVServerEx
, BufferedWindow
, ContainerMP4
-, CsvOutput< T >
+, CsvOutput< T >
, DecoderHelix
, DefaultSynthesizerChannel
, DynamicMemoryStream
, EncodedAudioOutput
, EncoderBase64
, EncoderBasic
-, EncoderFloat
+, EncoderFloat
, EncoderL16
, EncoderL8
, ESPNowStream
@@ -115,21 +115,22 @@ - b -
, GeneratedSoundStream< T >
, GeneratorFixedValue< T >
, GeneratorFromArray< T >
-, I2SDriverESP32V1
+, I2SDriverESP32
+, I2SDriverESP32V1
, I2SDriverESP8266
, I2SDriverNanoBLE
, I2SDriverSAMD
, I2SDriverSTM32
, I2SStream
, LEDOutput
-, LEDOutputUnoR4
+, LEDOutputUnoR4
, Maximilian
, MemoryManager
, MetaDataFilter< Decoder >
, MetaDataICY
, MetaDataID3V1
, MetaDataID3V2
-, MetaDataOutput
+, MetaDataOutput
, MozziStream
, MP3DecoderHelix
, MP3DecoderMAD
@@ -143,7 +144,7 @@ - b -
, ProgressStream
, PWMAudioOutput
, QueueStream< T >
-, SBCEncoder
+, SBCEncoder
, SPDIFOutput
, STKGenerator< StkCls, T >
, StreamCopyT< T >
@@ -161,7 +162,7 @@ - b -
, UDPStream
, VolumeStream
, VorbisDecoder
-, VS1053Stream
+, VS1053Stream
, WAVEncoder
, WindowFunction
, WM8960Stream
diff --git a/functions_func_c.html b/functions_func_c.html
index ad51e5b4b6..e6542fb060 100644
--- a/functions_func_c.html
+++ b/functions_func_c.html
@@ -135,6 +135,7 @@ - c -
config()
: AudioFFTBase
+, I2SDriverESP32
, I2SDriverESP32V1
, I2SDriverESP8266
, I2SDriverNanoBLE
@@ -184,7 +185,7 @@ - c -
, AudioServerEx
, FLACDecoder
, Maximilian
-, StreamCopy
+, StreamCopy
, StreamCopyT< T >
, StreamingDecoder
, VorbisDecoder
diff --git a/functions_func_d.html b/functions_func_d.html
index 107e841fe6..40519c6212 100644
--- a/functions_func_d.html
+++ b/functions_func_d.html
@@ -93,10 +93,10 @@ - d -
DecoderBase64()
-: DecoderBase64
+: DecoderBase64
DecoderBasic()
-: DecoderBasic
+: DecoderBasic
DecoderFloat()
: DecoderFloat
@@ -105,7 +105,7 @@ - d -
DecoderL8()
-: DecoderL8
+: DecoderL8
default_data_callback()
: ContainerMP4
@@ -118,6 +118,7 @@ - d -
, AudioFFTBase
, AudioKitStream
, CsvOutput< T >
+, I2SDriverESP32
, I2SDriverESP32V1
, I2SDriverESP8266
, I2SDriverNanoBLE
diff --git a/functions_func_e.html b/functions_func_e.html
index 125dfffbaf..7abdf01f63 100644
--- a/functions_func_e.html
+++ b/functions_func_e.html
@@ -98,6 +98,7 @@ - e -
, GeneratedSoundStream< T >
, HLSParser
, HttpHeader
+, I2SDriverESP32
, I2SDriverESP32V1
, I2SDriverESP8266
, I2SDriverNanoBLE
diff --git a/functions_func_w.html b/functions_func_w.html
index d738006983..0c8ee8215b 100644
--- a/functions_func_w.html
+++ b/functions_func_w.html
@@ -130,7 +130,7 @@ - w -
, OggContainerEncoder
, OggContainerOutput
, OpusAudioEncoder
-, OutputMixer< T >
+, OutputMixer< T >
, ProgressStream
, ResampleStream
, RingBuffer< T >
@@ -172,7 +172,8 @@ - w -
writeBytes()
-: I2SDriverESP32V1
+: I2SDriverESP32
+, I2SDriverESP32V1
, I2SDriverESP8266
, I2SDriverNanoBLE
, I2SDriverSTM32
@@ -180,6 +181,9 @@ - w -
writeData()
: APTXDecoder
+writeExpandChannel()
+: I2SDriverESP32
+
writeExt()
: I2SDriverESP8266
diff --git a/functions_w.html b/functions_w.html
index 95135d9ead..6eade65f36 100644
--- a/functions_w.html
+++ b/functions_w.html
@@ -139,7 +139,7 @@ - w -
, OggContainerEncoder
, OggContainerOutput
, OpusAudioEncoder
-, OutputMixer< T >
+, OutputMixer< T >
, ProgressStream
, ResampleStream
, RingBuffer< T >
@@ -181,7 +181,8 @@ - w -
writeBytes()
-: I2SDriverESP32V1
+: I2SDriverESP32
+, I2SDriverESP32V1
, I2SDriverESP8266
, I2SDriverNanoBLE
, I2SDriverSTM32
@@ -189,6 +190,9 @@ - w -
writeData()
: APTXDecoder
+writeExpandChannel()
+: I2SDriverESP32
+
writeExt()
: I2SDriverESP8266
diff --git a/group__platform.html b/group__platform.html
index c65d775652..185464f701 100644
--- a/group__platform.html
+++ b/group__platform.html
@@ -94,6 +94,9 @@
class AnalogDriverMBED
Please use AnalogAudioStream : A ADC and DAC API for the Arduino Giga. More...
+class I2SDriverESP32
+ Basic I2S API - for the ESP32. If we receive 1 channel, we expand the result to 2 channels. More...
+
class I2SDriverESP32V1
Basic I2S API for the ESP32 (using the new API). https://docs.espressif.com/projects/esp-idf/en/v5.0.1/esp32/api-reference/peripherals/i2s.html#i2s-communication-mode . More...
diff --git a/hierarchy.html b/hierarchy.html
index b27525f5aa..7bd4da410d 100644
--- a/hierarchy.html
+++ b/hierarchy.html
@@ -465,239 +465,240 @@
► C HttpLineReader We read a single line. A terminating 0 is added to the string to make it compliant for c string functions
C HttpChunkReader Http might reply with chunks. So we need to dechunk the data. see https://en.wikipedia.org/wiki/Chunked_transfer_encoding
C HttpRequest Simple API to process get, put, post, del http requests I tried to use Arduino HttpClient, but I did not manage to extract the mime type from streaming get requests
- C I2SDriverESP32V1 Basic I2S API for the ESP32 (using the new API). https://docs.espressif.com/projects/esp-idf/en/v5.0.1/esp32/api-reference/peripherals/i2s.html#i2s-communication-mode
- C I2SDriverESP8266 Basic I2S API - for the ESP8266 Only 16 bits are supported !
- C I2SDriverNanoBLE Basic I2S API - for the Arduino Nano BLE Sense See https://content.arduino.cc/assets/Nano_BLE_MCU-nRF52840_PS_v1.1.pdf Douplex mode (RXTX_MODE) is currently not supported, but it should be quite easy to implement
- C I2SDriverSAMD Basic I2S API - for the SAMD
- C I2SDriverSTM32 Basic I2S API - for the STM32 Depends on https://github.com/pschatzmann/stm32f411-i2s We just add a write and read buffer and pass some parameters to the STM32 API!
- ► C IAudioSource
- C RTSPSourceFromAudioStream Simple Facade which can turn AudioStream into a IAudioSource. This way we can e.g. use an I2SStream as source to stream data Depends on the https://github.com/pschatzmann/Micro-RTSP-Audio/ library
- C RTSPSourceStream Simple Facade which can turn any Stream into a IAudioSource. This way we can e.g. use an I2SStream as source to stream data Depends on the https://github.com/pschatzmann/Micro-RTSP-Audio/ library
- C ICYUrlSetup Resolve icy-metaint from HttpRequest and execute metadata callbacks
- C ID3v1
- C ID3v1Enhanced
- C ID3v2
- C MetaDataFilter< Decoder >::ID3v2 ID3 verion 2 TAG Header (10 bytes)
- C ID3v2Frame
- C ID3v2FrameString
- C IMAState
- C initializer_list< _Ep > Custom initializer_list if not provided by the compiler
- C int24_3bytes_t 24bit integer which is used for I2S sound processing. The values are really using 3 bytes. It works only on little endian machines!
- C int24_4bytes_t 24bit integer which is used for I2S sound processing. The values are represented as int32_t, but only 3 bytes are used. If you assign values which are too big, they are clipped
- C List< T >::Iterator
- C Vector< T >::iterator Iterator for the Vector class
- ► C JCRev
- C STKChowningReverb John Chowning's reverberator class
- C Synthesizer::KeyParameter
- C LastSampleFader If we end audio and the last sample is not close to 0 we can hear a popping noise. This functionality brings the last value slowly to 0. Typless implementation
- C LastSampleFaderT< T > If we end audio and the last sample is not close to 0 we can hear a popping noise. This functionality brings the last value slowly to 0
- C LastSampleFaderT< audio_tools::int24_4bytes_t >
- C LastSampleFaderT< int16_t >
- C LastSampleFaderT< int32_t >
- C LEDOutput LED output using the FastLED library
- C LEDOutputConfig
- C LEDOutputUnoR4 LED output using the R4 LED matrix library
- C LEDOutputUnoR4Config
- ► C LentPitShift
- C STKLentPitShift Pitch shifter effect class based on the Lent algorithm
- C List< T > Double linked list
- C List< audio_tools::DynamicMemoryStream::DataNode * >
- C List< String >
- C Lock A simple RIA locking class for the ESP32 using _lock_t
- C Maximilian AudioTools integration with Maximilian
- C MemoryManager MemoryManager which activates the use of external SPIRAM memory. When external memory is in use, the allocation strategy is to initially try to satisfy smaller allocation requests with internal memory and larger requests with external memory. This sets the limit between the two, as well as generally enabling allocation in external memory
- C Meta Minimial implementtion of Meta which just ignores the data
- C MetaDataFilter< Decoder > Class which filters out ID3v1 and ID3v2 Metadata and provides only the audio data to the decoder
- C MetaDataFilter< libhelix::MP3DecoderHelix >
- ► C MetaDataID3Base ID3 Meta Data Common Functionality
- C MetaDataID3V1 Simple ID3 Meta Data API which supports ID3 V1
- C MetaDataID3V2 Simple ID3 Meta Data API which supports ID3 V2: We only support the "TALB", "TOPE", "TIT2", "TCON" tags
- ► C ModulationBaseClass Class provides a wave table that can be populated with a number of preallocated waveforms. These can be used to generate audio in themselves or to modulate The parameters of another effect. Class initialised with sample rate
- C SimpleChorus Simple Chorus effect with a single delay voice and mono output Chorus is effective between 15 and 20 miliseconds delay of original audio. Requires the sample rate when initialising
- C MP4Atom Represents a single MPEG4 atom
- C MP4ParseBuffer
- C MusicalNotes Determination of the frequency of a music note
- C Nano_BLE_freq_info Mapping Frequency constants to available frequencies
- C Nano_BLE_ratio_info Mapping from Ratio Constants to frequency ratios
- C List< T >::Node
- C QueueLockFree< T >::node
- ► C NRev
- C STKNReverb CCRMA's NRev reverberator class
- C NumberConverter Converts from a source to a target number with a different type
- C NumberReader Reads n numbers from an Arduino Stream
- C OscSinCos< T >
- C ParseBuffer We try to keep the necessary buffer for parsing as small as possible, The data() method provides the start of the actual data and with consume we remove the processed data from the buffer to make space again
- C ParseObject
- ► C PCMInfo
- C RTSPOutputPCMInfo PCMInfo subclass which provides the audio information from the related AudioStream Depends on the https://github.com/pschatzmann/Micro-RTSP-Audio/ library
- C RTSPPCMAudioInfo PCMInfo subclass which provides the audio information from the AudioInfo parameter
- C PinInfoESP32 Information for a PIN
- ► C PitShift
- C STKPitShift Pitch shifter effect class based on the Lent algorithm
- ► C PRCRev
- C STKPerryReverb Perry's simple reverberator class
- ► C Print
- C AudioOutput Abstract Audio Ouptut class
- C FileOutput Simple layer for Print object to write to a c++ file
- C OutputMixer< T > Mixing of multiple outputs to one final output
- ► C Stream
- C AudioStream Base class for all Audio Streams. It support the boolean operator to test if the object is ready with data
- C Client
- C File Arduino File support using std::fstream
- C HardwareSerial
- C Printable
- C ProcessedResult
- C Queue< T > FIFO Queue which is based on a List
- C QueueLockFree< T > Lock Free Queue
- C RECT
- C TfLiteMicroSpeechRecognizeCommands::Result
- ► C RTSPFormat
- ► C RTSPFormatAudioTools RTSPFormat which supports the AudioInfo class
- C RTSPFormatAbtX AbtX format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
- C RTSPFormatG711 G711 μ-Law format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats Packet intervall: 20, frame size: any
- C RTSPFormatGSM GSM format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
- C RTSPFormatOpus Opus format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
- C RTSPFormatPCM PCM format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
- C RTSPFormatPCM8 L8 format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
- C SDDirect< SDT, FileT > We access the files directy with an index. The index is determined by a recurseve tree walk thru the directory. Unfortunatly the SDTFAT library has it's own API which is incompatible with the SDT API
- C SDDirect< AudioFs, AudioFile >
- C SDDirect< fs::LittleFSFS, fs::File >
- C SDDirect< fs::SDFS, fs::File >
- C SDDirect< fs::SDMMCFS, fs::File >
- C SDDirect< fs::SPIFFSFS, fs::File >
- C SDIndex< SDT, FileT > We store all the relevant file names in an sequential index file. Form there we can access them via an index
- C SDIndex< AudioFs, AudioFile >
- C SDIndex< fs::SDFS, fs::File >
- C SDIndex< fs::SDMMCFS, fs::File >
- C SimpleContainerConfig
- C SimpleContainerDataHeader
- C SimpleContainerMetaDataHeader
- C Slice< T > Helps to split up a big memory array into smaller slices. There are no additinal heap allocations! Example: if we have an array with 9 entries (1,2,3,4,5,6,7,8,9): slices(5) gives 2. slice(5,0) returns size 5 with 1,2,3,4,5 and slice(5,1) returns size 4 with 6,7,8,9!
- C MedianFilter< T >::sMedianFilter_t
- C MedianFilter< T >::sMedianNode_t
- ► C SoundGenerator< T > Base class to define the abstract interface for the sound generating classes
- C GeneratorFixedValue< T > Just returns a constant value
- C GeneratorFromArray< T > We generate the samples from an array which is provided in the constructor
- C GeneratorFromStream< T > An Adapter Class which lets you use any Stream as a Generator
- C GeneratorMixer< T > Mixer which combines multiple sound generators into one output
- C PinkNoiseGenerator< T > Generates pink noise
- C STKGenerator< StkCls, T > The Synthesis ToolKit in C++ (STK) is a set of open source audio signal processing and algorithmic synthesis classes written in the C++ programming language.
+ C I2SDriverESP32 Basic I2S API - for the ESP32. If we receive 1 channel, we expand the result to 2 channels
+ C I2SDriverESP32V1 Basic I2S API for the ESP32 (using the new API). https://docs.espressif.com/projects/esp-idf/en/v5.0.1/esp32/api-reference/peripherals/i2s.html#i2s-communication-mode
+ C I2SDriverESP8266 Basic I2S API - for the ESP8266 Only 16 bits are supported !
+ C I2SDriverNanoBLE Basic I2S API - for the Arduino Nano BLE Sense See https://content.arduino.cc/assets/Nano_BLE_MCU-nRF52840_PS_v1.1.pdf Douplex mode (RXTX_MODE) is currently not supported, but it should be quite easy to implement
+ C I2SDriverSAMD Basic I2S API - for the SAMD
+ C I2SDriverSTM32 Basic I2S API - for the STM32 Depends on https://github.com/pschatzmann/stm32f411-i2s We just add a write and read buffer and pass some parameters to the STM32 API!
+ ► C IAudioSource
+ C RTSPSourceFromAudioStream Simple Facade which can turn AudioStream into a IAudioSource. This way we can e.g. use an I2SStream as source to stream data Depends on the https://github.com/pschatzmann/Micro-RTSP-Audio/ library
+ C RTSPSourceStream Simple Facade which can turn any Stream into a IAudioSource. This way we can e.g. use an I2SStream as source to stream data Depends on the https://github.com/pschatzmann/Micro-RTSP-Audio/ library
+ C ICYUrlSetup Resolve icy-metaint from HttpRequest and execute metadata callbacks
+ C ID3v1
+ C ID3v1Enhanced
+ C ID3v2
+ C MetaDataFilter< Decoder >::ID3v2 ID3 verion 2 TAG Header (10 bytes)
+ C ID3v2Frame
+ C ID3v2FrameString
+ C IMAState
+ C initializer_list< _Ep > Custom initializer_list if not provided by the compiler
+ C int24_3bytes_t 24bit integer which is used for I2S sound processing. The values are really using 3 bytes. It works only on little endian machines!
+ C int24_4bytes_t 24bit integer which is used for I2S sound processing. The values are represented as int32_t, but only 3 bytes are used. If you assign values which are too big, they are clipped
+ C List< T >::Iterator
+ C Vector< T >::iterator Iterator for the Vector class
+ ► C JCRev
+ C STKChowningReverb John Chowning's reverberator class
+ C Synthesizer::KeyParameter
+ C LastSampleFader If we end audio and the last sample is not close to 0 we can hear a popping noise. This functionality brings the last value slowly to 0. Typless implementation
+ C LastSampleFaderT< T > If we end audio and the last sample is not close to 0 we can hear a popping noise. This functionality brings the last value slowly to 0
+ C LastSampleFaderT< audio_tools::int24_4bytes_t >
+ C LastSampleFaderT< int16_t >
+ C LastSampleFaderT< int32_t >
+ C LEDOutput LED output using the FastLED library
+ C LEDOutputConfig
+ C LEDOutputUnoR4 LED output using the R4 LED matrix library
+ C LEDOutputUnoR4Config
+ ► C LentPitShift
+ C STKLentPitShift Pitch shifter effect class based on the Lent algorithm
+ C List< T > Double linked list
+ C List< audio_tools::DynamicMemoryStream::DataNode * >
+ C List< String >
+ C Lock A simple RIA locking class for the ESP32 using _lock_t
+ C Maximilian AudioTools integration with Maximilian
+ C MemoryManager MemoryManager which activates the use of external SPIRAM memory. When external memory is in use, the allocation strategy is to initially try to satisfy smaller allocation requests with internal memory and larger requests with external memory. This sets the limit between the two, as well as generally enabling allocation in external memory
+ C Meta Minimial implementtion of Meta which just ignores the data
+ C MetaDataFilter< Decoder > Class which filters out ID3v1 and ID3v2 Metadata and provides only the audio data to the decoder
+ C MetaDataFilter< libhelix::MP3DecoderHelix >
+ ► C MetaDataID3Base ID3 Meta Data Common Functionality
+ C MetaDataID3V1 Simple ID3 Meta Data API which supports ID3 V1
+ C MetaDataID3V2 Simple ID3 Meta Data API which supports ID3 V2: We only support the "TALB", "TOPE", "TIT2", "TCON" tags
+ ► C ModulationBaseClass Class provides a wave table that can be populated with a number of preallocated waveforms. These can be used to generate audio in themselves or to modulate The parameters of another effect. Class initialised with sample rate
+ C SimpleChorus Simple Chorus effect with a single delay voice and mono output Chorus is effective between 15 and 20 miliseconds delay of original audio. Requires the sample rate when initialising
+ C MP4Atom Represents a single MPEG4 atom
+ C MP4ParseBuffer
+ C MusicalNotes Determination of the frequency of a music note
+ C Nano_BLE_freq_info Mapping Frequency constants to available frequencies
+ C Nano_BLE_ratio_info Mapping from Ratio Constants to frequency ratios
+ C List< T >::Node
+ C QueueLockFree< T >::node
+ ► C NRev
+ C STKNReverb CCRMA's NRev reverberator class
+ C NumberConverter Converts from a source to a target number with a different type
+ C NumberReader Reads n numbers from an Arduino Stream
+ C OscSinCos< T >
+ C ParseBuffer We try to keep the necessary buffer for parsing as small as possible, The data() method provides the start of the actual data and with consume we remove the processed data from the buffer to make space again
+ C ParseObject
+ ► C PCMInfo
+ C RTSPOutputPCMInfo PCMInfo subclass which provides the audio information from the related AudioStream Depends on the https://github.com/pschatzmann/Micro-RTSP-Audio/ library
+ C RTSPPCMAudioInfo PCMInfo subclass which provides the audio information from the AudioInfo parameter
+ C PinInfoESP32 Information for a PIN
+ ► C PitShift
+ C STKPitShift Pitch shifter effect class based on the Lent algorithm
+ ► C PRCRev
+ C STKPerryReverb Perry's simple reverberator class
+ ► C Print
+ C AudioOutput Abstract Audio Ouptut class
+ C FileOutput Simple layer for Print object to write to a c++ file
+ C OutputMixer< T > Mixing of multiple outputs to one final output
+ ► C Stream
+ C AudioStream Base class for all Audio Streams. It support the boolean operator to test if the object is ready with data
+ C Client
+ C File Arduino File support using std::fstream
+ C HardwareSerial
+ C Printable
+ C ProcessedResult
+ C Queue< T > FIFO Queue which is based on a List
+ C QueueLockFree< T > Lock Free Queue
+ C RECT
+ C TfLiteMicroSpeechRecognizeCommands::Result
+ ► C RTSPFormat
+ ► C RTSPFormatAudioTools RTSPFormat which supports the AudioInfo class
+ C RTSPFormatAbtX AbtX format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
+ C RTSPFormatG711 G711 μ-Law format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats Packet intervall: 20, frame size: any
+ C RTSPFormatGSM GSM format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
+ C RTSPFormatOpus Opus format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
+ C RTSPFormatPCM PCM format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
+ C RTSPFormatPCM8 L8 format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
+ C SDDirect< SDT, FileT > We access the files directy with an index. The index is determined by a recurseve tree walk thru the directory. Unfortunatly the SDTFAT library has it's own API which is incompatible with the SDT API
+ C SDDirect< AudioFs, AudioFile >
+ C SDDirect< fs::LittleFSFS, fs::File >
+ C SDDirect< fs::SDFS, fs::File >
+ C SDDirect< fs::SDMMCFS, fs::File >
+ C SDDirect< fs::SPIFFSFS, fs::File >
+ C SDIndex< SDT, FileT > We store all the relevant file names in an sequential index file. Form there we can access them via an index
+ C SDIndex< AudioFs, AudioFile >
+ C SDIndex< fs::SDFS, fs::File >
+ C SDIndex< fs::SDMMCFS, fs::File >
+ C SimpleContainerConfig
+ C SimpleContainerDataHeader
+ C SimpleContainerMetaDataHeader
+ C Slice< T > Helps to split up a big memory array into smaller slices. There are no additinal heap allocations! Example: if we have an array with 9 entries (1,2,3,4,5,6,7,8,9): slices(5) gives 2. slice(5,0) returns size 5 with 1,2,3,4,5 and slice(5,1) returns size 4 with 6,7,8,9!
+ C MedianFilter< T >::sMedianFilter_t
+ C MedianFilter< T >::sMedianNode_t
+ ► C SoundGenerator< T > Base class to define the abstract interface for the sound generating classes
+ C GeneratorFixedValue< T > Just returns a constant value
+ C GeneratorFromArray< T > We generate the samples from an array which is provided in the constructor
+ C GeneratorFromStream< T > An Adapter Class which lets you use any Stream as a Generator
+ C GeneratorMixer< T > Mixer which combines multiple sound generators into one output
+ C PinkNoiseGenerator< T > Generates pink noise
+ C STKGenerator< StkCls, T > The Synthesis ToolKit in C++ (STK) is a set of open source audio signal processing and algorithmic synthesis classes written in the C++ programming language.
- C SilenceGenerator< T > Provides a fixed value (e.g. 0) as sound data. This can be used e.g. to test the output functionality which should optimally just output silence and no artifacts
- C SineFromTable< T > A sine generator based on a table. The table is created based using degrees where one full wave is 360 degrees
- ► C SineWaveGenerator< T > Generates a Sound with the help of sin() function. If you plan to change the amplitude or frequency (incrementally), I suggest to use SineFromTable instead
- C FastSineGenerator< T > Sine wave which is based on a fast approximation function
- C SquareWaveGenerator< T > Generates a square wave sound
- C SoundGeneratorModulation< T > SoundGenerator using the ModulationBaseClass to generate the samples
- C TestGenerator< T > Generates a test signal which is easy to check because the values are incremented or decremented by 1
- C WhiteNoiseGenerator< T > Generates a random noise sound with the help of rand() function
- ► C SoundGenerator< effect_t >
- C AudioEffects< GeneratorT > OBSOLETE AudioEffects : the template class describes the input audio to which the effects are applied: e.g. SineWaveGenerator , SquareWaveGenerator , GeneratorFromStream etc. We support only one channel of int16_t data!
- ► C SoundGenerator< int16_t >
- C STKGenerator< StkCls, int16_t >
- C MozziGenerator Support for https://sensorium.github.io/Mozzi/ Define your updateControl() method. Define your updateAudio() method. Start by calling begin(control_rate) do not call audioHook(); in the loop !
- C Synthesizer A simple Synthesizer which can generate sound having multiple keys pressed. The main purpose of this class is managing the synthezizer channels
- C Stack< T > LIFO Stack which is based on a List
- C Stack< audio_tools::ParseObject >
- ► C Str A simple wrapper to provide string functions on char*. If the underlying char* is a const we do not allow any updates; The ownership of the chr* must be managed externally!
- C StrExt Str which keeps the data on the heap. We grow the allocated memory only if the copy source is not fitting
- C StreamCopyT< T > Typed Stream Copy which supports the conversion from channel to 2 channels. We make sure that we allways copy full samples
- ► C StreamCopyT< uint8_t >
- C StreamCopy We provide the typeless StreamCopy as a subclass of StreamCopyT
- ► C StreamingDecoder A Streaming Decoder where we provide both the input and output as streams
- C FLACDecoder Decoder for FLAC. Depends on https://github.com/pschatzmann/arduino-libflac . We support an efficient streaming API and an very memory intensitiv standard interface. So you should prefer the streaming interface where you call setOutput() before the begin and copy() in the loop. Validated with http://www.2l.no/hires/
- C VorbisDecoder Vorbis Streaming Decoder using https://github.com/pschatzmann/arduino-libvorbis-idec https://github.com/pschatzmann/arduino-libopus.git
- C SynthesizerKey Arduino GPIO pin to note assossiation
- ► C TfLiteAbstractRecognizeCommands Base class for implementing different primitive decoding models on top of the instantaneous results from running an audio recognition model on a single window of samples
- C TfLiteMicroSpeechRecognizeCommands This class is designed to apply a very primitive decoding model on top of the instantaneous results from running an audio recognition model on a single window of samples. It applies smoothing over time so that noisy individual label scores are averaged, increasing the confidence that apparent matches are real. To use it, you should create a class object with the configuration you want, and then feed results from running a TensorFlow model into the processing method. The timestamp for each subsequent call should be increasing from the previous, since the class is designed to process a stream of data over time
- C TfLiteConfig Configuration settings for TfLiteAudioStream
- C TfLiteQuantizer Quantizer that helps to quantize and dequantize between float and int8
- ► C TfLiteReader Input class which provides the next value if the TfLiteAudioStream is treated as an audio sourcce
- C TfLiteSineReader Generate a sine output from a model that was trained on the sine method. (=hello_world)
- ► C TfLiteWriter Output class which interprets audio data if TfLiteAudioStream is treated as audio sink
- C TfLiteMicroSpeachWriter TfLiteMicroSpeachWriter for Audio Data
- C Throttle Throttle the sending of the audio data to limit it to the indicated sample rate
- C TimerAlarmRepeating Common Interface definition for TimerAlarmRepeating
- ► C TimerAlarmRepeatingDriverBase
- C TimerAlarmRepeatingDriverAVR Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating
- C TimerAlarmRepeatingDriverESP8266 Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating
- C TimerAlarmRepeatingDriverMBED Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating
- C TimerAlarmRepeatingDriverRenesas Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating . By default we use a new GPT timer. You can also request 1 AGT timer by calling setTimer(1);
- C TimerAlarmRepeatingDriverSTM32 STM32 Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating
- C TransformationReader< T > ConverterStream Helper class which implements the converting readBytes with the help of write
- C TransformationReader< audio_tools::ReformatBaseStream >
- C TransformationReader< audio_tools::ResampleStream >
- C UI Minimum implementation of UI parameters. We only support the setting and getting of values
- C Url URL parser which breaks a full url string up into its individual parts
- C URLHistory
- C URLLoader
- C VBan
- C VBanHeader
- C Vector< T > Vector implementation which provides the most important methods as defined by std::vector. This class it is quite handy to have and most of the times quite better then dealing with raw c arrays
- C Vector< audio_tools::AbstractSynthesizerChannel * >
- C Vector< audio_tools::AllocSize >
- C Vector< audio_tools::AudioEffect * >
- C Vector< audio_tools::AudioOutput * >
- C Vector< audio_tools::AVIStreamHeader >
- C Vector< audio_tools::BaseBuffer< T > * >
- C Vector< audio_tools::BaseConverter * >
- C Vector< audio_tools::ChannelSplitOutput::ChannelSelectionOutputDef >
- C Vector< audio_tools::HttpHeaderLine * >
- C Vector< audio_tools::MedianFilter::sMedianNode_t >
- C Vector< audio_tools::PinInfoESP32 >
- C Vector< audio_tools::RingBuffer< T > * >
- C Vector< audio_tools::SoundGenerator< T > * >
- C Vector< audio_tools::Stream * >
- C Vector< audio_tools::TfLiteMicroSpeechRecognizeCommands::Result >
- C Vector< audio_tools::URLStream * >
- C Vector< bool >
- C Vector< char >
- C Vector< const char * >
- C Vector< CRGB >
- C Vector< effect_t >
- C Vector< FLAC__int32 >
- C Vector< float >
- C Vector< int >
- C Vector< int16_t >
- C Vector< int24x_t >
- C Vector< int8_t >
- C Vector< mbed::PwmOut * >
- C Vector< mp3d_sample_t >
- C Vector< PwmOut * >
- C Vector< PWMPin >
- C Vector< StreamContentType >
- C Vector< TSDPMTStreamType >
- C Vector< uint16_t >
- C Vector< uint8_t >
- ► C VideoAudioSync Logic to Synchronize video and audio output: This is the minimum implementatin which actually does not synchronize, but directly processes the data. No additinal memory is used! Provide your own optimized platform specific implementation
- C VideoAudioBufferedSync Logic to Synchronize video and audio output: we use a buffer to store the audio and instead of delaying the frames with delay() we play audio. The bufferSize defines the audio buffer in bytes. The correctionMs is used to slow down or speed up the playback of the video to prevent any audio buffer underflows
- ► C VideoOutput Abstract class for video playback. This class is used to assemble a complete video frame in memory
- C JpegOpenCV Display image with opencv to be used on the desktop
- C JpegTFT Display jpeg image using https://github.com/Bodmer/TFT_eSPI and https://github.com/Bodmer/JPEGDecoder
- ► C VolumeControl Abstract class for handling of the linear input volume to determine the multiplication factor which should be applied to the audio signal
- C CachedVolumeControl In order to optimize the processing time we cache the last input & factor and recalculate the new factor only if the input has changed
- C CallbackVolumeControl Provide the volume function as callback method: This is easy to use e.g together with a lamda function!
- C ExponentialVolumeControl Simple exponentional volume control using the formula pow(2.0, input) - 1.0;
- C LinearVolumeControl The simplest possible implementation of a VolumeControl : The input = output which describes a linear curve. You would use this implementation if you physically connect an audio pot!
- C LogarithmicVolumeControl Parametric Logarithmic volume control. Using the formula pow(b,input) * a - a, where b is b = pow(((1/ym)-1), 2) and a is a = 1.0 / (b - 1.0). The parameter ym is determining the steepness. See https://electronics.stackexchange.com/questions/304692/formula-for-logarithmic-audio-taper-pot
- C SimulatedAudioPot Simple simulated audio pot volume control inspired by https://eepower.com/resistor-guide/resistor-types/potentiometer-taper/# We split up the input/output curve into 2 linear pieces with a slow and a fast raising part. The slow raising part goes from (0,0) to (x,y). The fast raising part goes from (x,y) to (1,1)
- C WAVFormatX
- C WAVHeader Parser for Wav header data for details see https://de.wikipedia.org/wiki/RIFF_WAVE
- C WavIMAHeader
- ► C WiFiUDP
- C UDPStream
- ► C WindowFunction FFT Window Function
- C Blackman Blackman FFT Window function
- C BlackmanHarris BlackmanHarris FFT Window function
- C BlackmanNuttall BlackmanNuttall FFT Window function
- C BufferedWindow Buffered window function, so that we do not need to re-calculate the values
- C FlatTop FlatTop FFT Window function
- C Hamming Hamming FFT Window function
- C Hann Hann FFT Window function
- C Nuttall Nuttall FFT Window function
- C Rectange Rectange FFT Window function
- C Triangle Triangle FFT Window function
- C Welch Welch FFT Window function
+ C SilenceGenerator< T > Provides a fixed value (e.g. 0) as sound data. This can be used e.g. to test the output functionality which should optimally just output silence and no artifacts
+ C SineFromTable< T > A sine generator based on a table. The table is created based using degrees where one full wave is 360 degrees
+ ► C SineWaveGenerator< T > Generates a Sound with the help of sin() function. If you plan to change the amplitude or frequency (incrementally), I suggest to use SineFromTable instead
+ C FastSineGenerator< T > Sine wave which is based on a fast approximation function
+ C SquareWaveGenerator< T > Generates a square wave sound
+ C SoundGeneratorModulation< T > SoundGenerator using the ModulationBaseClass to generate the samples
+ C TestGenerator< T > Generates a test signal which is easy to check because the values are incremented or decremented by 1
+ C WhiteNoiseGenerator< T > Generates a random noise sound with the help of rand() function
+ ► C SoundGenerator< effect_t >
+ C AudioEffects< GeneratorT > OBSOLETE AudioEffects : the template class describes the input audio to which the effects are applied: e.g. SineWaveGenerator , SquareWaveGenerator , GeneratorFromStream etc. We support only one channel of int16_t data!
+ ► C SoundGenerator< int16_t >
+ C STKGenerator< StkCls, int16_t >
+ C MozziGenerator Support for https://sensorium.github.io/Mozzi/ Define your updateControl() method. Define your updateAudio() method. Start by calling begin(control_rate) do not call audioHook(); in the loop !
+ C Synthesizer A simple Synthesizer which can generate sound having multiple keys pressed. The main purpose of this class is managing the synthezizer channels
+ C Stack< T > LIFO Stack which is based on a List
+ C Stack< audio_tools::ParseObject >
+ ► C Str A simple wrapper to provide string functions on char*. If the underlying char* is a const we do not allow any updates; The ownership of the chr* must be managed externally!
+ C StrExt Str which keeps the data on the heap. We grow the allocated memory only if the copy source is not fitting
+ C StreamCopyT< T > Typed Stream Copy which supports the conversion from channel to 2 channels. We make sure that we allways copy full samples
+ ► C StreamCopyT< uint8_t >
+ C StreamCopy We provide the typeless StreamCopy as a subclass of StreamCopyT
+ ► C StreamingDecoder A Streaming Decoder where we provide both the input and output as streams
+ C FLACDecoder Decoder for FLAC. Depends on https://github.com/pschatzmann/arduino-libflac . We support an efficient streaming API and an very memory intensitiv standard interface. So you should prefer the streaming interface where you call setOutput() before the begin and copy() in the loop. Validated with http://www.2l.no/hires/
+ C VorbisDecoder Vorbis Streaming Decoder using https://github.com/pschatzmann/arduino-libvorbis-idec https://github.com/pschatzmann/arduino-libopus.git
+ C SynthesizerKey Arduino GPIO pin to note assossiation
+ ► C TfLiteAbstractRecognizeCommands Base class for implementing different primitive decoding models on top of the instantaneous results from running an audio recognition model on a single window of samples
+ C TfLiteMicroSpeechRecognizeCommands This class is designed to apply a very primitive decoding model on top of the instantaneous results from running an audio recognition model on a single window of samples. It applies smoothing over time so that noisy individual label scores are averaged, increasing the confidence that apparent matches are real. To use it, you should create a class object with the configuration you want, and then feed results from running a TensorFlow model into the processing method. The timestamp for each subsequent call should be increasing from the previous, since the class is designed to process a stream of data over time
+ C TfLiteConfig Configuration settings for TfLiteAudioStream
+ C TfLiteQuantizer Quantizer that helps to quantize and dequantize between float and int8
+ ► C TfLiteReader Input class which provides the next value if the TfLiteAudioStream is treated as an audio sourcce
+ C TfLiteSineReader Generate a sine output from a model that was trained on the sine method. (=hello_world)
+ ► C TfLiteWriter Output class which interprets audio data if TfLiteAudioStream is treated as audio sink
+ C TfLiteMicroSpeachWriter TfLiteMicroSpeachWriter for Audio Data
+ C Throttle Throttle the sending of the audio data to limit it to the indicated sample rate
+ C TimerAlarmRepeating Common Interface definition for TimerAlarmRepeating
+ ► C TimerAlarmRepeatingDriverBase
+ C TimerAlarmRepeatingDriverAVR Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating
+ C TimerAlarmRepeatingDriverESP8266 Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating
+ C TimerAlarmRepeatingDriverMBED Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating
+ C TimerAlarmRepeatingDriverRenesas Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating . By default we use a new GPT timer. You can also request 1 AGT timer by calling setTimer(1);
+ C TimerAlarmRepeatingDriverSTM32 STM32 Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating
+ C TransformationReader< T > ConverterStream Helper class which implements the converting readBytes with the help of write
+ C TransformationReader< audio_tools::ReformatBaseStream >
+ C TransformationReader< audio_tools::ResampleStream >
+ C UI Minimum implementation of UI parameters. We only support the setting and getting of values
+ C Url URL parser which breaks a full url string up into its individual parts
+ C URLHistory
+ C URLLoader
+ C VBan
+ C VBanHeader
+ C Vector< T > Vector implementation which provides the most important methods as defined by std::vector. This class it is quite handy to have and most of the times quite better then dealing with raw c arrays
+ C Vector< audio_tools::AbstractSynthesizerChannel * >
+ C Vector< audio_tools::AllocSize >
+ C Vector< audio_tools::AudioEffect * >
+ C Vector< audio_tools::AudioOutput * >
+ C Vector< audio_tools::AVIStreamHeader >
+ C Vector< audio_tools::BaseBuffer< T > * >
+ C Vector< audio_tools::BaseConverter * >
+ C Vector< audio_tools::ChannelSplitOutput::ChannelSelectionOutputDef >
+ C Vector< audio_tools::HttpHeaderLine * >
+ C Vector< audio_tools::MedianFilter::sMedianNode_t >
+ C Vector< audio_tools::PinInfoESP32 >
+ C Vector< audio_tools::RingBuffer< T > * >
+ C Vector< audio_tools::SoundGenerator< T > * >
+ C Vector< audio_tools::Stream * >
+ C Vector< audio_tools::TfLiteMicroSpeechRecognizeCommands::Result >
+ C Vector< audio_tools::URLStream * >
+ C Vector< bool >
+ C Vector< char >
+ C Vector< const char * >
+ C Vector< CRGB >
+ C Vector< effect_t >
+ C Vector< FLAC__int32 >
+ C Vector< float >
+ C Vector< int >
+ C Vector< int16_t >
+ C Vector< int24x_t >
+ C Vector< int8_t >
+ C Vector< mbed::PwmOut * >
+ C Vector< mp3d_sample_t >
+ C Vector< PwmOut * >
+ C Vector< PWMPin >
+ C Vector< StreamContentType >
+ C Vector< TSDPMTStreamType >
+ C Vector< uint16_t >
+ C Vector< uint8_t >
+ ► C VideoAudioSync Logic to Synchronize video and audio output: This is the minimum implementatin which actually does not synchronize, but directly processes the data. No additinal memory is used! Provide your own optimized platform specific implementation
+ C VideoAudioBufferedSync Logic to Synchronize video and audio output: we use a buffer to store the audio and instead of delaying the frames with delay() we play audio. The bufferSize defines the audio buffer in bytes. The correctionMs is used to slow down or speed up the playback of the video to prevent any audio buffer underflows
+ ► C VideoOutput Abstract class for video playback. This class is used to assemble a complete video frame in memory
+ C JpegOpenCV Display image with opencv to be used on the desktop
+ C JpegTFT Display jpeg image using https://github.com/Bodmer/TFT_eSPI and https://github.com/Bodmer/JPEGDecoder
+ ► C VolumeControl Abstract class for handling of the linear input volume to determine the multiplication factor which should be applied to the audio signal
+ C CachedVolumeControl In order to optimize the processing time we cache the last input & factor and recalculate the new factor only if the input has changed
+ C CallbackVolumeControl Provide the volume function as callback method: This is easy to use e.g together with a lamda function!
+ C ExponentialVolumeControl Simple exponentional volume control using the formula pow(2.0, input) - 1.0;
+ C LinearVolumeControl The simplest possible implementation of a VolumeControl : The input = output which describes a linear curve. You would use this implementation if you physically connect an audio pot!
+ C LogarithmicVolumeControl Parametric Logarithmic volume control. Using the formula pow(b,input) * a - a, where b is b = pow(((1/ym)-1), 2) and a is a = 1.0 / (b - 1.0). The parameter ym is determining the steepness. See https://electronics.stackexchange.com/questions/304692/formula-for-logarithmic-audio-taper-pot
+ C SimulatedAudioPot Simple simulated audio pot volume control inspired by https://eepower.com/resistor-guide/resistor-types/potentiometer-taper/# We split up the input/output curve into 2 linear pieces with a slow and a fast raising part. The slow raising part goes from (0,0) to (x,y). The fast raising part goes from (x,y) to (1,1)
+ C WAVFormatX
+ C WAVHeader Parser for Wav header data for details see https://de.wikipedia.org/wiki/RIFF_WAVE
+ C WavIMAHeader
+ ► C WiFiUDP
+ C UDPStream
+ ► C WindowFunction FFT Window Function
+ C Blackman Blackman FFT Window function
+ C BlackmanHarris BlackmanHarris FFT Window function
+ C BlackmanNuttall BlackmanNuttall FFT Window function
+ C BufferedWindow Buffered window function, so that we do not need to re-calculate the values
+ C FlatTop FlatTop FFT Window function
+ C Hamming Hamming FFT Window function
+ C Hann Hann FFT Window function
+ C Nuttall Nuttall FFT Window function
+ C Rectange Rectange FFT Window function
+ C Triangle Triangle FFT Window function
+ C Welch Welch FFT Window function
diff --git a/namespaceaudio__tools.html b/namespaceaudio__tools.html
index f378204751..d9d2dc7d82 100644
--- a/namespaceaudio__tools.html
+++ b/namespaceaudio__tools.html
@@ -781,6 +781,9 @@
class I2SConfig
configuration for all common i2s settings More...
+class I2SDriverESP32
+ Basic I2S API - for the ESP32. If we receive 1 channel, we expand the result to 2 channels. More...
+
class I2SDriverESP32V1
Basic I2S API for the ESP32 (using the new API). https://docs.espressif.com/projects/esp-idf/en/v5.0.1/esp32/api-reference/peripherals/i2s.html#i2s-communication-mode . More...
@@ -1538,7 +1541,7 @@
using HexDumpStream = HexDumpOutput
-using I2SDriver = I2SDriverESP32V1
+using I2SDriver = I2SDriverESP32
using JupyterAudio = JupyterAudioT < int16_t >
diff --git a/namespaces.html b/namespaces.html
index 6c19a1b2e8..7099be23d4 100644
--- a/namespaces.html
+++ b/namespaces.html
@@ -313,262 +313,263 @@
C HttpRequest Simple API to process get, put, post, del http requests I tried to use Arduino HttpClient, but I did not manage to extract the mime type from streaming get requests
C HttpRequestHeader Reading and writing of Http Requests
C I2SConfig Configuration for all common i2s settings
- ► C I2SDriverESP32V1 Basic I2S API for the ESP32 (using the new API). https://docs.espressif.com/projects/esp-idf/en/v5.0.1/esp32/api-reference/peripherals/i2s.html#i2s-communication-mode
- C DriverCommon
- C DriverI2S
- C I2SDriverESP8266 Basic I2S API - for the ESP8266 Only 16 bits are supported !
- C I2SDriverNanoBLE Basic I2S API - for the Arduino Nano BLE Sense See https://content.arduino.cc/assets/Nano_BLE_MCU-nRF52840_PS_v1.1.pdf Douplex mode (RXTX_MODE) is currently not supported, but it should be quite easy to implement
- C I2SDriverSAMD Basic I2S API - for the SAMD
- C I2SDriverSTM32 Basic I2S API - for the STM32 Depends on https://github.com/pschatzmann/stm32f411-i2s We just add a write and read buffer and pass some parameters to the STM32 API!
- C I2SStream We support the Stream interface for the I2S access. In addition we allow a separate mute pin which might also be used to drive a LED..
- C ICYStream Icecast/Shoutcast Audio Stream which splits the data into metadata and audio data. The Audio data is provided via the regular stream functions. The metadata is handled with the help of the MetaDataICY state machine and provided via a callback method
- C ICYStreamBuffered ICYStream implementation for the ESP32 based on a FreeRTOS task This is a Icecast/Shoutcast Audio Stream which splits the data into metadata and audio data. The Audio data is provided via the regular stream functions. The metadata is handled with the help of the MetaDataICY state machine and provided via a callback method
- C ICYUrlSetup Resolve icy-metaint from HttpRequest and execute metadata callbacks
- C ID3v1
- C ID3v1Enhanced
- C ID3v2
- C ID3v2Frame
- C ID3v2FrameString
- C IIR IIRFilter Converted from https://github.com/tttapa/Filters/blob/master/src/IIRFilter.h
- C ILBCDecoder Decoder for iLBC. Depends on https://github.com/pschatzmann/libilbc
- C ILBCEncoder Encoder for iLBC - Depends on https://github.com/pschatzmann/libopenilbc
- C IMAState
- C InputMerge Merges multiple input channels. The input must be mono! So if you provide 2 mono channels you get a stereo signal as result with the left channel from channel 0 and the right from channel 1
- C InputMixer MixerStream is mixing the input from Multiple Input Streams. All streams must have the same audo format (sample rate, channels, bits per sample)
- C int24_3bytes_t 24bit integer which is used for I2S sound processing. The values are really using 3 bytes. It works only on little endian machines!
- C int24_4bytes_t 24bit integer which is used for I2S sound processing. The values are represented as int32_t, but only 3 bytes are used. If you assign values which are too big, they are clipped
- C JpegOpenCV Display image with opencv to be used on the desktop
- C JpegTFT Display jpeg image using https://github.com/Bodmer/TFT_eSPI and https://github.com/Bodmer/JPEGDecoder
- C JupyterAudioT Output to Jupyter. We write the data just to a file from where we can load the data again for different representations
- C LastSampleFader If we end audio and the last sample is not close to 0 we can hear a popping noise. This functionality brings the last value slowly to 0. Typless implementation
- C LastSampleFaderT If we end audio and the last sample is not close to 0 we can hear a popping noise. This functionality brings the last value slowly to 0
- C LC3Decoder Decoder for LC3. Depends on https://github.com/pschatzmann/arduino-liblc3
- C LC3Encoder Encoder for LC3 - Depends on https://github.com/pschatzmann/arduino-liblc3
- C LEDOutput LED output using the FastLED library
- C LEDOutputConfig
- C LEDOutputUnoR4 LED output using the R4 LED matrix library
- C LEDOutputUnoR4Config
- C LinearVolumeControl The simplest possible implementation of a VolumeControl : The input = output which describes a linear curve. You would use this implementation if you physically connect an audio pot!
- ► C List Double linked list
- C Iterator
- C Node
- C Lock A simple RIA locking class for the ESP32 using _lock_t
- C LogarithmicVolumeControl Parametric Logarithmic volume control. Using the formula pow(b,input) * a - a, where b is b = pow(((1/ym)-1), 2) and a is a = 1.0 / (b - 1.0). The parameter ym is determining the steepness. See https://electronics.stackexchange.com/questions/304692/formula-for-logarithmic-audio-taper-pot
- C Maximilian AudioTools integration with Maximilian
- C MeasuringStream Class which measures the truput
- ► C MedianFilter An embedded friendly, fast one-dimensional median filter algorithm implementation in C and C++ Useful for spike and noise removal from analog signals or other DSP Also known as "salt-and-pepper noise" or "impulse noise" filter
- C sMedianFilter_t
- C sMedianNode_t
- C MemoryManager MemoryManager which activates the use of external SPIRAM memory. When external memory is in use, the allocation strategy is to initially try to satisfy smaller allocation requests with internal memory and larger requests with external memory. This sets the limit between the two, as well as generally enabling allocation in external memory
- C MemoryOutput Writes to a preallocated memory
- C MemoryStream A simple Stream implementation which is backed by allocated memory
- ► C MetaDataFilter Class which filters out ID3v1 and ID3v2 Metadata and provides only the audio data to the decoder
- C ID3v2 ID3 verion 2 TAG Header (10 bytes)
- C MetaDataICY Icecast/Shoutcast Metadata Handling. Metadata class which splits the data into audio and metadata. The result is provided via callback methods. see https://www.codeproject.com/Articles/11308/SHOUTcast-Stream-Ripper
- C MetaDataID3 Simple ID3 Meta Data Parser which supports ID3 V1 and V2 and implements the Stream interface. You just need to set the callback(s) to receive the result and copy the audio data to this stream
- C MetaDataID3Base ID3 Meta Data Common Functionality
- C MetaDataID3V1 Simple ID3 Meta Data API which supports ID3 V1
- C MetaDataID3V2 Simple ID3 Meta Data API which supports ID3 V2: We only support the "TALB", "TOPE", "TIT2", "TCON" tags
- C MetaDataOutput ID3 and Icecast/Shoutcast metadata output support. Just write the audio data to an object of this class and receive the metadata via the callback
- C MiniAudioConfig Configuration for MiniAudio
- C MiniAudioStream MiniAudio: https://miniaud.io/
- C ModulationBaseClass Class provides a wave table that can be populated with a number of preallocated waveforms. These can be used to generate audio in themselves or to modulate The parameters of another effect. Class initialised with sample rate
- C MozziConfig Mozzi Configuration for input or output stream
- C MozziGenerator Support for https://sensorium.github.io/Mozzi/ Define your updateControl() method. Define your updateAudio() method. Start by calling begin(control_rate) do not call audioHook(); in the loop !
- C MozziStream We use the output functionality of Mozzi to output audio data. We expect the data as array of int16_t with one or two channels. Though we support the setting of a sample rate, we recommend to use the default sample rate from Mozzi which is available with the AUDIO_RATE define
- C MP3DecoderHelix MP3 Decoder using libhelix: https://github.com/pschatzmann/arduino-libhelix This is basically just a simple wrapper to provide AudioInfo and AudioInfoSupport
- C MP3DecoderMAD MP3 Decoder using https://github.com/pschatzmann/arduino-libmad
- C MP3DecoderMini MP3 Decoder using https://github.com/pschatzmann/minimp3 . This decoder does not provide any good results and it is not suited to decode any audio above 32000 on an ESP32. So the sample rate is limited by the MINIMP3_MAX_SAMPLE_RATE variable
- C MP3EncoderLAME Encodes PCM data to the MP3 format and writes the result to a stream This is basically just a wrapper using https://github.com/pschatzmann/arduino-liblame
- C MP4Atom Represents a single MPEG4 atom
- C MP4ParseBuffer
- C MTSDecoder MPEG-TS (MTS) decoder. Extracts the AAC audio data from a MPEG-TS (MTS) data stream. You can define the relevant stream types via the API. Required dependency: https://github.com/pschatzmann/arduino-tsdemux
- C MultiConverter Combines multiple converters
- C MultiOutput Replicates the output to multiple destinations
- C MusicalNotes Determination of the frequency of a music note
- C Nano_BLE_freq_info Mapping Frequency constants to available frequencies
- C Nano_BLE_ratio_info Mapping from Ratio Constants to frequency ratios
- C NBuffer A lock free N buffer. If count=2 we create a DoubleBuffer, if count=3 a TripleBuffer etc
- C NoFilter No change to the input
- C NOPConverter Dummy converter which does nothing
- C NullStream The Arduino Stream which provides silence and simulates a null device when used as audio target or audio source
- C NumberConverter Converts from a source to a target number with a different type
- C NumberFormatConverterStream Converter which converts between bits_per_sample and 16 bits. The templated NumberFormatConverterStreamT class is used based on the information provided by the bits_per_sample in the configuration
- C NumberFormatConverterStreamT Converter which converts from source bits_per_sample to target bits_per_sample
- C NumberReader Reads n numbers from an Arduino Stream
- C Nuttall Nuttall FFT Window function
- C OggContainerDecoder Decoder for Ogg Container. Decodes a packet from an Ogg container. The Ogg begin segment contains the AudioInfo structure. You can subclass and overwrite the beginOfSegment() method to implement your own headers Dependency: https://github.com/pschatzmann/arduino-libopus
- C OggContainerEncoder Encoder for Ogg Container. Encodes a packet for an Ogg container. The Ogg begin segment contains the AudioInfo structure. You can subclass ond overwrite the writeHeader() method to implement your own header logic. When an optional encoder is specified in the constructor we package the encoded data. Dependency: https://github.com/pschatzmann/arduino-libopus
- C OggContainerOutput Output class for the OggContainerEncoder . Each write is ending up as container entry
- C OnOffOutput Switched Output class. Class which can be used to filter the output out based on a switch: If the switch is on the output is forwarded. If it is off it is just ignored
- C OpusAudioDecoder OpusAudioDecoder : Depends on https://github.com/pschatzmann/arduino-libopus.git
- C OpusAudioEncoder OpusAudioEncoder : Dependens on https://github.com/pschatzmann/arduino-libopus.git
- C OpusEncoderSettings Setting for Opus Encoder where the following values are valid: -1 indicates that the default value should be used and that this codec is not setting the value
- C OpusOggDecoder Opus Decoder which uses the Ogg Container. See https://datatracker.ietf.org/doc/html/rfc7845 . The audio data is transmitted in frames and the header information contains the sampler rate, channels and other critical info. Dependency: https://github.com/pschatzmann/arduino-libopus
- C OpusOggEncoder Opus Encoder which uses the Ogg Container: see https://datatracker.ietf.org/doc/html/rfc7845 Dependency: https://github.com/pschatzmann/arduino-libopus
- C OpusOggWriter
- C OpusSettings Setting for Opus Decoder
- C OutputMixer Mixing of multiple outputs to one final output
- C Parameter A constant value
- C ParseBuffer We try to keep the necessary buffer for parsing as small as possible, The data() method provides the start of the actual data and with consume we remove the processed data from the buffer to make space again
- C ParseObject
- C PinInfoESP32 Information for a PIN
- C PinkNoiseGenerator Generates pink noise
- C PitchShift Shifts the pitch by the indicated step size: e.g. 2 doubles the pitch
- C PitchShiftInfo Configuration for PitchShiftOutput : set the pitch_shift to define the shift
- C PitchShiftOutput Pitch Shift: Shifts the frequency up or down w/o impacting the length! We reduce the channels to 1 to calculate the pitch shift and provides the pitch shifted result in the correct number of channels. The pitch shifting is done with the help of a buffer that can have potentially multiple implementations
- C PoppingSoundRemover Big value gaps (at the beginning and the end of a recording) can lead to some popping sounds. We will try to set the values to 0 until the first transition thru 0 of the audio curve
- C PortAudioConfig PortAudio information
- C PortAudioStream Arduino Audio Stream using PortAudio
- C Print
- C ProcessedResult
- C ProgressStream Generic calss to measure the the total bytes which were processed in order to calculate the progress as a percentage of the total size
- C ProgressStreamInfo Configuration for ProgressStream
- C PWMAudioOutput Common functionality for PWM output. Please use the PWMAudioOutput typedef instead which references the implementation
- C PWMConfig Configuration data for PWM audio output
- C PWMDriverAVR Experimental: Audio output to PWM pins for the AVR. The AVR supports only up to 2 channels
- C PWMDriverESP32 Audio output to PWM pins for the ESP32. The ESP32 supports up to 16 channels
- C PWMDriverMBED Audio output to PWM pins for MBED based Arduino implementations
- C PWMDriverRenesas Audio output to PWM pins for Renesas based Arduino implementations
- C PWMDriverSTM32 Audio output to PWM pins for STM32. We use one timer to generate the sample rate and one timer for the PWM signal
- C Queue FIFO Queue which is based on a List
- ► C QueueLockFree Lock Free Queue
- C node
- C QueueStream AudioStream class which stores the data in a temporary queue buffer. The queue can be consumed e.g. by a callback function by calling readBytes();
- C RECT
- C Rectange Rectange FFT Window function
- C ReformatBaseStream Base class for chained converting streams
- C ResampleConfig Optional Configuration object. The critical information is the channels and the step_size. All other information is not used
- C ResampleStream Dynamic Resampling. We can use a variable factor to speed up or slow down the playback
- C RingBuffer Implements a typed Ringbuffer
- C RingBufferFile An File backed Ring Buffer that we can use to receive streaming audio. We expect an open p_file as parameter
- C RingBufferStream A Stream backed by a Ringbuffer. We can write to the end and read from the beginning of the stream
- C RTSPFormatAbtX AbtX format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
- C RTSPFormatAudioTools RTSPFormat which supports the AudioInfo class
- C RTSPFormatG711 G711 μ-Law format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats Packet intervall: 20, frame size: any
- C RTSPFormatGSM GSM format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
- C RTSPFormatOpus Opus format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
- C RTSPFormatPCM PCM format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
- C RTSPFormatPCM8 L8 format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
- C RTSPOutput We can write PCM data to the RTSPOutput . This is encoded by the indicated encoder (e.g. SBCEncoder ) and can be consumed by a RTSPServer. You have to make sure that the codec supports the provided audio format: e.g. GSM support only 8000 samples per second with one channel. Depends on the https://github.com/pschatzmann/Micro-RTSP-Audio/ library
- C RTSPOutputPCMInfo PCMInfo subclass which provides the audio information from the related AudioStream Depends on the https://github.com/pschatzmann/Micro-RTSP-Audio/ library
- C RTSPPCMAudioInfo PCMInfo subclass which provides the audio information from the AudioInfo parameter
- C RTSPSourceFromAudioStream Simple Facade which can turn AudioStream into a IAudioSource. This way we can e.g. use an I2SStream as source to stream data Depends on the https://github.com/pschatzmann/Micro-RTSP-Audio/ library
- C RTSPSourceStream Simple Facade which can turn any Stream into a IAudioSource. This way we can e.g. use an I2SStream as source to stream data Depends on the https://github.com/pschatzmann/Micro-RTSP-Audio/ library
- C SBCDecoder Decoder for SBC. Depends on https://github.com/pschatzmann/arduino-libsbc . Inspired by sbcdec.c
- C SBCEncoder Encoder for SBC - Depends on https://github.com/pschatzmann/arduino-libsbc . Inspired by sbcenc.c
- C ScaledParameter Scales a dynamic parameter to the indicated range
- C SDDirect We access the files directy with an index. The index is determined by a recurseve tree walk thru the directory. Unfortunatly the SDTFAT library has it's own API which is incompatible with the SDT API
- C SDIndex We store all the relevant file names in an sequential index file. Form there we can access them via an index
- C SilenceGenerator Provides a fixed value (e.g. 0) as sound data. This can be used e.g. to test the output functionality which should optimally just output silence and no artifacts
- C SilenceRemovalConverter Removes any silence from the buffer that is longer then n samples with a amplitude below the indicated threshhold. If you process multiple channels you need to multiply the channels with the number of samples to indicate n
- C SimpleChorus Simple Chorus effect with a single delay voice and mono output Chorus is effective between 15 and 20 miliseconds delay of original audio. Requires the sample rate when initialising
- C SimpleContainerConfig
- C SimpleContainerDataHeader
- C SimpleContainerMetaDataHeader
- C SimpleDelay Simple Delay effect consiting of a single tap delay with Effect Gain and feed back controls Constructor requires internal delay in samples
- C SimpleFlanger Simple Flanger Effect Consistig of a single voice flanger The flanger has an effective range between 0 and 15 miliseconds in this case dleay buffer should be set to sampleRate*3/200 Constructor requires internal delay in samples
- C SimpleLPF SimpleLPF
- C SimulatedAudioPot Simple simulated audio pot volume control inspired by https://eepower.com/resistor-guide/resistor-types/potentiometer-taper/# We split up the input/output curve into 2 linear pieces with a slow and a fast raising part. The slow raising part goes from (0,0) to (x,y). The fast raising part goes from (x,y) to (1,1)
- C SineFromTable A sine generator based on a table. The table is created based using degrees where one full wave is 360 degrees
- C SineWaveGenerator Generates a Sound with the help of sin() function. If you plan to change the amplitude or frequency (incrementally), I suggest to use SineFromTable instead
- C SingleBuffer A simple Buffer implementation which just uses a (dynamically sized) array
- C Slice Helps to split up a big memory array into smaller slices. There are no additinal heap allocations! Example: if we have an array with 9 entries (1,2,3,4,5,6,7,8,9): slices(5) gives 2. slice(5,0) returns size 5 with 1,2,3,4,5 and slice(5,1) returns size 4 with 6,7,8,9!
- C SmoothTransition Changes the samples at the beginning or at the end to slowly ramp up the volume
- C SOSFilter Second Order Filter : Instead of manually cascading BiQuad filters, you can use a Second Order Sections filter (SOS). converted from https://github.com/tttapa/Filters/blob/master/src/SOSFilter.h Use float or double (and not a integer type) as type parameter
- C SoundGenerator Base class to define the abstract interface for the sound generating classes
- C SoundGeneratorModulation SoundGenerator using the ModulationBaseClass to generate the samples
- C SPDIFConfig SPDIF configuration
- C SPDIFOutput Output as 16 bit stereo SPDIF on the I2S data output pin
- C SquareWaveGenerator Generates a square wave sound
- C Stack LIFO Stack which is based on a List
- C StdioStream
- C STKChorus Chorus Effect
- C STKChowningReverb John Chowning's reverberator class
- C STKEcho Echo Effect
- C STKEffect Use any effect from the STK framework: e.g. Chorus, Echo, FreeVerb, JCRev, PitShift... https://github.com/pschatzmann/Arduino-STK
- C STKFreeVerb Jezar at Dreampoint's FreeVerb, implemented in STK
- C STKGenerator The Synthesis ToolKit in C++ (STK) is a set of open source audio signal processing and algorithmic synthesis classes written in the C++ programming language.
+ C I2SDriverESP32 Basic I2S API - for the ESP32. If we receive 1 channel, we expand the result to 2 channels
+ ► C I2SDriverESP32V1 Basic I2S API for the ESP32 (using the new API). https://docs.espressif.com/projects/esp-idf/en/v5.0.1/esp32/api-reference/peripherals/i2s.html#i2s-communication-mode
+ C DriverCommon
+ C DriverI2S
+ C I2SDriverESP8266 Basic I2S API - for the ESP8266 Only 16 bits are supported !
+ C I2SDriverNanoBLE Basic I2S API - for the Arduino Nano BLE Sense See https://content.arduino.cc/assets/Nano_BLE_MCU-nRF52840_PS_v1.1.pdf Douplex mode (RXTX_MODE) is currently not supported, but it should be quite easy to implement
+ C I2SDriverSAMD Basic I2S API - for the SAMD
+ C I2SDriverSTM32 Basic I2S API - for the STM32 Depends on https://github.com/pschatzmann/stm32f411-i2s We just add a write and read buffer and pass some parameters to the STM32 API!
+ C I2SStream We support the Stream interface for the I2S access. In addition we allow a separate mute pin which might also be used to drive a LED..
+ C ICYStream Icecast/Shoutcast Audio Stream which splits the data into metadata and audio data. The Audio data is provided via the regular stream functions. The metadata is handled with the help of the MetaDataICY state machine and provided via a callback method
+ C ICYStreamBuffered ICYStream implementation for the ESP32 based on a FreeRTOS task This is a Icecast/Shoutcast Audio Stream which splits the data into metadata and audio data. The Audio data is provided via the regular stream functions. The metadata is handled with the help of the MetaDataICY state machine and provided via a callback method
+ C ICYUrlSetup Resolve icy-metaint from HttpRequest and execute metadata callbacks
+ C ID3v1
+ C ID3v1Enhanced
+ C ID3v2
+ C ID3v2Frame
+ C ID3v2FrameString
+ C IIR IIRFilter Converted from https://github.com/tttapa/Filters/blob/master/src/IIRFilter.h
+ C ILBCDecoder Decoder for iLBC. Depends on https://github.com/pschatzmann/libilbc
+ C ILBCEncoder Encoder for iLBC - Depends on https://github.com/pschatzmann/libopenilbc
+ C IMAState
+ C InputMerge Merges multiple input channels. The input must be mono! So if you provide 2 mono channels you get a stereo signal as result with the left channel from channel 0 and the right from channel 1
+ C InputMixer MixerStream is mixing the input from Multiple Input Streams. All streams must have the same audo format (sample rate, channels, bits per sample)
+ C int24_3bytes_t 24bit integer which is used for I2S sound processing. The values are really using 3 bytes. It works only on little endian machines!
+ C int24_4bytes_t 24bit integer which is used for I2S sound processing. The values are represented as int32_t, but only 3 bytes are used. If you assign values which are too big, they are clipped
+ C JpegOpenCV Display image with opencv to be used on the desktop
+ C JpegTFT Display jpeg image using https://github.com/Bodmer/TFT_eSPI and https://github.com/Bodmer/JPEGDecoder
+ C JupyterAudioT Output to Jupyter. We write the data just to a file from where we can load the data again for different representations
+ C LastSampleFader If we end audio and the last sample is not close to 0 we can hear a popping noise. This functionality brings the last value slowly to 0. Typless implementation
+ C LastSampleFaderT If we end audio and the last sample is not close to 0 we can hear a popping noise. This functionality brings the last value slowly to 0
+ C LC3Decoder Decoder for LC3. Depends on https://github.com/pschatzmann/arduino-liblc3
+ C LC3Encoder Encoder for LC3 - Depends on https://github.com/pschatzmann/arduino-liblc3
+ C LEDOutput LED output using the FastLED library
+ C LEDOutputConfig
+ C LEDOutputUnoR4 LED output using the R4 LED matrix library
+ C LEDOutputUnoR4Config
+ C LinearVolumeControl The simplest possible implementation of a VolumeControl : The input = output which describes a linear curve. You would use this implementation if you physically connect an audio pot!
+ ► C List Double linked list
+ C Iterator
+ C Node
+ C Lock A simple RIA locking class for the ESP32 using _lock_t
+ C LogarithmicVolumeControl Parametric Logarithmic volume control. Using the formula pow(b,input) * a - a, where b is b = pow(((1/ym)-1), 2) and a is a = 1.0 / (b - 1.0). The parameter ym is determining the steepness. See https://electronics.stackexchange.com/questions/304692/formula-for-logarithmic-audio-taper-pot
+ C Maximilian AudioTools integration with Maximilian
+ C MeasuringStream Class which measures the truput
+ ► C MedianFilter An embedded friendly, fast one-dimensional median filter algorithm implementation in C and C++ Useful for spike and noise removal from analog signals or other DSP Also known as "salt-and-pepper noise" or "impulse noise" filter
+ C sMedianFilter_t
+ C sMedianNode_t
+ C MemoryManager MemoryManager which activates the use of external SPIRAM memory. When external memory is in use, the allocation strategy is to initially try to satisfy smaller allocation requests with internal memory and larger requests with external memory. This sets the limit between the two, as well as generally enabling allocation in external memory
+ C MemoryOutput Writes to a preallocated memory
+ C MemoryStream A simple Stream implementation which is backed by allocated memory
+ ► C MetaDataFilter Class which filters out ID3v1 and ID3v2 Metadata and provides only the audio data to the decoder
+ C ID3v2 ID3 verion 2 TAG Header (10 bytes)
+ C MetaDataICY Icecast/Shoutcast Metadata Handling. Metadata class which splits the data into audio and metadata. The result is provided via callback methods. see https://www.codeproject.com/Articles/11308/SHOUTcast-Stream-Ripper
+ C MetaDataID3 Simple ID3 Meta Data Parser which supports ID3 V1 and V2 and implements the Stream interface. You just need to set the callback(s) to receive the result and copy the audio data to this stream
+ C MetaDataID3Base ID3 Meta Data Common Functionality
+ C MetaDataID3V1 Simple ID3 Meta Data API which supports ID3 V1
+ C MetaDataID3V2 Simple ID3 Meta Data API which supports ID3 V2: We only support the "TALB", "TOPE", "TIT2", "TCON" tags
+ C MetaDataOutput ID3 and Icecast/Shoutcast metadata output support. Just write the audio data to an object of this class and receive the metadata via the callback
+ C MiniAudioConfig Configuration for MiniAudio
+ C MiniAudioStream MiniAudio: https://miniaud.io/
+ C ModulationBaseClass Class provides a wave table that can be populated with a number of preallocated waveforms. These can be used to generate audio in themselves or to modulate The parameters of another effect. Class initialised with sample rate
+ C MozziConfig Mozzi Configuration for input or output stream
+ C MozziGenerator Support for https://sensorium.github.io/Mozzi/ Define your updateControl() method. Define your updateAudio() method. Start by calling begin(control_rate) do not call audioHook(); in the loop !
+ C MozziStream We use the output functionality of Mozzi to output audio data. We expect the data as array of int16_t with one or two channels. Though we support the setting of a sample rate, we recommend to use the default sample rate from Mozzi which is available with the AUDIO_RATE define
+ C MP3DecoderHelix MP3 Decoder using libhelix: https://github.com/pschatzmann/arduino-libhelix This is basically just a simple wrapper to provide AudioInfo and AudioInfoSupport
+ C MP3DecoderMAD MP3 Decoder using https://github.com/pschatzmann/arduino-libmad
+ C MP3DecoderMini MP3 Decoder using https://github.com/pschatzmann/minimp3 . This decoder does not provide any good results and it is not suited to decode any audio above 32000 on an ESP32. So the sample rate is limited by the MINIMP3_MAX_SAMPLE_RATE variable
+ C MP3EncoderLAME Encodes PCM data to the MP3 format and writes the result to a stream This is basically just a wrapper using https://github.com/pschatzmann/arduino-liblame
+ C MP4Atom Represents a single MPEG4 atom
+ C MP4ParseBuffer
+ C MTSDecoder MPEG-TS (MTS) decoder. Extracts the AAC audio data from a MPEG-TS (MTS) data stream. You can define the relevant stream types via the API. Required dependency: https://github.com/pschatzmann/arduino-tsdemux
+ C MultiConverter Combines multiple converters
+ C MultiOutput Replicates the output to multiple destinations
+ C MusicalNotes Determination of the frequency of a music note
+ C Nano_BLE_freq_info Mapping Frequency constants to available frequencies
+ C Nano_BLE_ratio_info Mapping from Ratio Constants to frequency ratios
+ C NBuffer A lock free N buffer. If count=2 we create a DoubleBuffer, if count=3 a TripleBuffer etc
+ C NoFilter No change to the input
+ C NOPConverter Dummy converter which does nothing
+ C NullStream The Arduino Stream which provides silence and simulates a null device when used as audio target or audio source
+ C NumberConverter Converts from a source to a target number with a different type
+ C NumberFormatConverterStream Converter which converts between bits_per_sample and 16 bits. The templated NumberFormatConverterStreamT class is used based on the information provided by the bits_per_sample in the configuration
+ C NumberFormatConverterStreamT Converter which converts from source bits_per_sample to target bits_per_sample
+ C NumberReader Reads n numbers from an Arduino Stream
+ C Nuttall Nuttall FFT Window function
+ C OggContainerDecoder Decoder for Ogg Container. Decodes a packet from an Ogg container. The Ogg begin segment contains the AudioInfo structure. You can subclass and overwrite the beginOfSegment() method to implement your own headers Dependency: https://github.com/pschatzmann/arduino-libopus
+ C OggContainerEncoder Encoder for Ogg Container. Encodes a packet for an Ogg container. The Ogg begin segment contains the AudioInfo structure. You can subclass ond overwrite the writeHeader() method to implement your own header logic. When an optional encoder is specified in the constructor we package the encoded data. Dependency: https://github.com/pschatzmann/arduino-libopus
+ C OggContainerOutput Output class for the OggContainerEncoder . Each write is ending up as container entry
+ C OnOffOutput Switched Output class. Class which can be used to filter the output out based on a switch: If the switch is on the output is forwarded. If it is off it is just ignored
+ C OpusAudioDecoder OpusAudioDecoder : Depends on https://github.com/pschatzmann/arduino-libopus.git
+ C OpusAudioEncoder OpusAudioEncoder : Dependens on https://github.com/pschatzmann/arduino-libopus.git
+ C OpusEncoderSettings Setting for Opus Encoder where the following values are valid: -1 indicates that the default value should be used and that this codec is not setting the value
+ C OpusOggDecoder Opus Decoder which uses the Ogg Container. See https://datatracker.ietf.org/doc/html/rfc7845 . The audio data is transmitted in frames and the header information contains the sampler rate, channels and other critical info. Dependency: https://github.com/pschatzmann/arduino-libopus
+ C OpusOggEncoder Opus Encoder which uses the Ogg Container: see https://datatracker.ietf.org/doc/html/rfc7845 Dependency: https://github.com/pschatzmann/arduino-libopus
+ C OpusOggWriter
+ C OpusSettings Setting for Opus Decoder
+ C OutputMixer Mixing of multiple outputs to one final output
+ C Parameter A constant value
+ C ParseBuffer We try to keep the necessary buffer for parsing as small as possible, The data() method provides the start of the actual data and with consume we remove the processed data from the buffer to make space again
+ C ParseObject
+ C PinInfoESP32 Information for a PIN
+ C PinkNoiseGenerator Generates pink noise
+ C PitchShift Shifts the pitch by the indicated step size: e.g. 2 doubles the pitch
+ C PitchShiftInfo Configuration for PitchShiftOutput : set the pitch_shift to define the shift
+ C PitchShiftOutput Pitch Shift: Shifts the frequency up or down w/o impacting the length! We reduce the channels to 1 to calculate the pitch shift and provides the pitch shifted result in the correct number of channels. The pitch shifting is done with the help of a buffer that can have potentially multiple implementations
+ C PoppingSoundRemover Big value gaps (at the beginning and the end of a recording) can lead to some popping sounds. We will try to set the values to 0 until the first transition thru 0 of the audio curve
+ C PortAudioConfig PortAudio information
+ C PortAudioStream Arduino Audio Stream using PortAudio
+ C Print
+ C ProcessedResult
+ C ProgressStream Generic calss to measure the the total bytes which were processed in order to calculate the progress as a percentage of the total size
+ C ProgressStreamInfo Configuration for ProgressStream
+ C PWMAudioOutput Common functionality for PWM output. Please use the PWMAudioOutput typedef instead which references the implementation
+ C PWMConfig Configuration data for PWM audio output
+ C PWMDriverAVR Experimental: Audio output to PWM pins for the AVR. The AVR supports only up to 2 channels
+ C PWMDriverESP32 Audio output to PWM pins for the ESP32. The ESP32 supports up to 16 channels
+ C PWMDriverMBED Audio output to PWM pins for MBED based Arduino implementations
+ C PWMDriverRenesas Audio output to PWM pins for Renesas based Arduino implementations
+ C PWMDriverSTM32 Audio output to PWM pins for STM32. We use one timer to generate the sample rate and one timer for the PWM signal
+ C Queue FIFO Queue which is based on a List
+ ► C QueueLockFree Lock Free Queue
+ C node
+ C QueueStream AudioStream class which stores the data in a temporary queue buffer. The queue can be consumed e.g. by a callback function by calling readBytes();
+ C RECT
+ C Rectange Rectange FFT Window function
+ C ReformatBaseStream Base class for chained converting streams
+ C ResampleConfig Optional Configuration object. The critical information is the channels and the step_size. All other information is not used
+ C ResampleStream Dynamic Resampling. We can use a variable factor to speed up or slow down the playback
+ C RingBuffer Implements a typed Ringbuffer
+ C RingBufferFile An File backed Ring Buffer that we can use to receive streaming audio. We expect an open p_file as parameter
+ C RingBufferStream A Stream backed by a Ringbuffer. We can write to the end and read from the beginning of the stream
+ C RTSPFormatAbtX AbtX format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
+ C RTSPFormatAudioTools RTSPFormat which supports the AudioInfo class
+ C RTSPFormatG711 G711 μ-Law format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats Packet intervall: 20, frame size: any
+ C RTSPFormatGSM GSM format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
+ C RTSPFormatOpus Opus format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
+ C RTSPFormatPCM PCM format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
+ C RTSPFormatPCM8 L8 format for RTSP https://en.wikipedia.org/wiki/RTP_payload_formats
+ C RTSPOutput We can write PCM data to the RTSPOutput . This is encoded by the indicated encoder (e.g. SBCEncoder ) and can be consumed by a RTSPServer. You have to make sure that the codec supports the provided audio format: e.g. GSM support only 8000 samples per second with one channel. Depends on the https://github.com/pschatzmann/Micro-RTSP-Audio/ library
+ C RTSPOutputPCMInfo PCMInfo subclass which provides the audio information from the related AudioStream Depends on the https://github.com/pschatzmann/Micro-RTSP-Audio/ library
+ C RTSPPCMAudioInfo PCMInfo subclass which provides the audio information from the AudioInfo parameter
+ C RTSPSourceFromAudioStream Simple Facade which can turn AudioStream into a IAudioSource. This way we can e.g. use an I2SStream as source to stream data Depends on the https://github.com/pschatzmann/Micro-RTSP-Audio/ library
+ C RTSPSourceStream Simple Facade which can turn any Stream into a IAudioSource. This way we can e.g. use an I2SStream as source to stream data Depends on the https://github.com/pschatzmann/Micro-RTSP-Audio/ library
+ C SBCDecoder Decoder for SBC. Depends on https://github.com/pschatzmann/arduino-libsbc . Inspired by sbcdec.c
+ C SBCEncoder Encoder for SBC - Depends on https://github.com/pschatzmann/arduino-libsbc . Inspired by sbcenc.c
+ C ScaledParameter Scales a dynamic parameter to the indicated range
+ C SDDirect We access the files directy with an index. The index is determined by a recurseve tree walk thru the directory. Unfortunatly the SDTFAT library has it's own API which is incompatible with the SDT API
+ C SDIndex We store all the relevant file names in an sequential index file. Form there we can access them via an index
+ C SilenceGenerator Provides a fixed value (e.g. 0) as sound data. This can be used e.g. to test the output functionality which should optimally just output silence and no artifacts
+ C SilenceRemovalConverter Removes any silence from the buffer that is longer then n samples with a amplitude below the indicated threshhold. If you process multiple channels you need to multiply the channels with the number of samples to indicate n
+ C SimpleChorus Simple Chorus effect with a single delay voice and mono output Chorus is effective between 15 and 20 miliseconds delay of original audio. Requires the sample rate when initialising
+ C SimpleContainerConfig
+ C SimpleContainerDataHeader
+ C SimpleContainerMetaDataHeader
+ C SimpleDelay Simple Delay effect consiting of a single tap delay with Effect Gain and feed back controls Constructor requires internal delay in samples
+ C SimpleFlanger Simple Flanger Effect Consistig of a single voice flanger The flanger has an effective range between 0 and 15 miliseconds in this case dleay buffer should be set to sampleRate*3/200 Constructor requires internal delay in samples
+ C SimpleLPF SimpleLPF
+ C SimulatedAudioPot Simple simulated audio pot volume control inspired by https://eepower.com/resistor-guide/resistor-types/potentiometer-taper/# We split up the input/output curve into 2 linear pieces with a slow and a fast raising part. The slow raising part goes from (0,0) to (x,y). The fast raising part goes from (x,y) to (1,1)
+ C SineFromTable A sine generator based on a table. The table is created based using degrees where one full wave is 360 degrees
+ C SineWaveGenerator Generates a Sound with the help of sin() function. If you plan to change the amplitude or frequency (incrementally), I suggest to use SineFromTable instead
+ C SingleBuffer A simple Buffer implementation which just uses a (dynamically sized) array
+ C Slice Helps to split up a big memory array into smaller slices. There are no additinal heap allocations! Example: if we have an array with 9 entries (1,2,3,4,5,6,7,8,9): slices(5) gives 2. slice(5,0) returns size 5 with 1,2,3,4,5 and slice(5,1) returns size 4 with 6,7,8,9!
+ C SmoothTransition Changes the samples at the beginning or at the end to slowly ramp up the volume
+ C SOSFilter Second Order Filter : Instead of manually cascading BiQuad filters, you can use a Second Order Sections filter (SOS). converted from https://github.com/tttapa/Filters/blob/master/src/SOSFilter.h Use float or double (and not a integer type) as type parameter
+ C SoundGenerator Base class to define the abstract interface for the sound generating classes
+ C SoundGeneratorModulation SoundGenerator using the ModulationBaseClass to generate the samples
+ C SPDIFConfig SPDIF configuration
+ C SPDIFOutput Output as 16 bit stereo SPDIF on the I2S data output pin
+ C SquareWaveGenerator Generates a square wave sound
+ C Stack LIFO Stack which is based on a List
+ C StdioStream
+ C STKChorus Chorus Effect
+ C STKChowningReverb John Chowning's reverberator class
+ C STKEcho Echo Effect
+ C STKEffect Use any effect from the STK framework: e.g. Chorus, Echo, FreeVerb, JCRev, PitShift... https://github.com/pschatzmann/Arduino-STK
+ C STKFreeVerb Jezar at Dreampoint's FreeVerb, implemented in STK
+ C STKGenerator The Synthesis ToolKit in C++ (STK) is a set of open source audio signal processing and algorithmic synthesis classes written in the C++ programming language.
- C STKLentPitShift Pitch shifter effect class based on the Lent algorithm
- C STKNReverb CCRMA's NRev reverberator class
- C STKPerryReverb Perry's simple reverberator class
- C STKPitShift Pitch shifter effect class based on the Lent algorithm
- C STKStream STK Stream for Instrument or Voicer
- C Str A simple wrapper to provide string functions on char*. If the underlying char* is a const we do not allow any updates; The ownership of the chr* must be managed externally!
- C Stream
- C StreamCopy We provide the typeless StreamCopy as a subclass of StreamCopyT
- C StreamCopyT Typed Stream Copy which supports the conversion from channel to 2 channels. We make sure that we allways copy full samples
- C StreamingDecoder A Streaming Decoder where we provide both the input and output as streams
- C StrExt Str which keeps the data on the heap. We grow the allocated memory only if the copy source is not fitting
- ► C Synthesizer A simple Synthesizer which can generate sound having multiple keys pressed. The main purpose of this class is managing the synthezizer channels
- C KeyParameter
- C SynthesizerKey Arduino GPIO pin to note assossiation
- C TestGenerator Generates a test signal which is easy to check because the values are incremented or decremented by 1
- C TfLiteAbstractRecognizeCommands Base class for implementing different primitive decoding models on top of the instantaneous results from running an audio recognition model on a single window of samples
- C TfLiteAudioErrorReporter Error Reporter using the Audio Tools Logger
- C TfLiteAudioStream TfLiteAudioStream which uses Tensorflow Light to analyze the data. If it is used as a generator (where we read audio data)
- C TfLiteAudioStreamBase Astract TfLiteAudioStream to provide access to TfLiteAudioStream for Reader and Writers
- C TfLiteConfig Configuration settings for TfLiteAudioStream
- C TfLiteMicroSpeachWriter TfLiteMicroSpeachWriter for Audio Data
- ► C TfLiteMicroSpeechRecognizeCommands This class is designed to apply a very primitive decoding model on top of the instantaneous results from running an audio recognition model on a single window of samples. It applies smoothing over time so that noisy individual label scores are averaged, increasing the confidence that apparent matches are real. To use it, you should create a class object with the configuration you want, and then feed results from running a TensorFlow model into the processing method. The timestamp for each subsequent call should be increasing from the previous, since the class is designed to process a stream of data over time
- C Result
- C TfLiteQuantizer Quantizer that helps to quantize and dequantize between float and int8
- C TfLiteReader Input class which provides the next value if the TfLiteAudioStream is treated as an audio sourcce
- C TfLiteSineReader Generate a sine output from a model that was trained on the sine method. (=hello_world)
- C TfLiteWriter Output class which interprets audio data if TfLiteAudioStream is treated as audio sink
- C Throttle Throttle the sending of the audio data to limit it to the indicated sample rate
- C ThrottleConfig Configure Throttle setting
- C TimedStream AudioStream class that can define a start and (an optional) stop time Usually it is used to wrap an Audio Sink (e.g. I2SStream ), but wrapping an Audio Source is supported as well. Only wrap classes which represent PCM data!
- C TimerAlarmRepeating Common Interface definition for TimerAlarmRepeating
- C TimerAlarmRepeatingDriverAVR Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating
- C TimerAlarmRepeatingDriverBase
- C TimerAlarmRepeatingDriverESP8266 Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating
- C TimerAlarmRepeatingDriverMBED Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating
- C TimerAlarmRepeatingDriverRenesas Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating . By default we use a new GPT timer. You can also request 1 AGT timer by calling setTimer(1);
- C TimerAlarmRepeatingDriverSTM32 STM32 Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating
- C TimerCallbackAudioStream Callback driven Audio Source (rx_tx_mode==RX_MODE) or Audio Sink (rx_tx_mode==TX_MODE). This class allows to to integrate external libraries in order to consume or generate a data stream which is based on a timer
- C TimerCallbackAudioStreamInfo TimerCallbackAudioStream Configuration
- ► C TransformationReader ConverterStream Helper class which implements the converting readBytes with the help of write
- C AdapterPrintToArray
- C Tremolo Tremolo AudioEffect
- C Triangle Triangle FFT Window function
- C UDPStream
- C Url URL parser which breaks a full url string up into its individual parts
- C URLHistory
- C URLLoader
- C URLStream Represents the content of a URL as Stream . We use the WiFi.h API
- C URLStreamBuffered URLStream implementation for the ESP32 based on a separate FreeRTOS task
- C VariableSpeedRingBuffer Optimized Buffer implementation for Pitch Shift. We try to interpolate the samples and restore the phase when the read pointer and write pointer overtake each other
- C VariableSpeedRingBuffer180 Varialbe speed ring buffer where we read with 0 and 180 degree and blend the result to prevent overrun artifacts. See https://github.com/YetAnotherElectronicsChannel/STM32_DSP_PitchShift
- C VariableSpeedRingBufferSimple Very Simple Buffer implementation for Pitch Shift. We write in constant speed, but reading can be done in a variable speed. We will hear some noise when the buffer read and write pointers overrun each other
- C VBANConfig
- C VBANStream VBAN Audio Source and Sink for the ESP32. For further details please see https://vb-audio.com/Voicemeeter/vban.htm . Inspired by https://github.com/rkinnett/ESP32-VBAN-Audio-Source/tree/master and https://github.com/rkinnett/ESP32-VBAN-Network-Audio-Player
- ► C Vector Vector implementation which provides the most important methods as defined by std::vector. This class it is quite handy to have and most of the times quite better then dealing with raw c arrays
- C iterator Iterator for the Vector class
- C VideoAudioBufferedSync Logic to Synchronize video and audio output: we use a buffer to store the audio and instead of delaying the frames with delay() we play audio. The bufferSize defines the audio buffer in bytes. The correctionMs is used to slow down or speed up the playback of the video to prevent any audio buffer underflows
- C VideoAudioSync Logic to Synchronize video and audio output: This is the minimum implementatin which actually does not synchronize, but directly processes the data. No additinal memory is used! Provide your own optimized platform specific implementation
- C VideoOutput Abstract class for video playback. This class is used to assemble a complete video frame in memory
- C VolumeControl Abstract class for handling of the linear input volume to determine the multiplication factor which should be applied to the audio signal
- C VolumeOutput A simple class to determine the volume
- C VolumeStream Adjust the volume of the related input or output: To work properly the class needs to know the bits per sample and number of channels! AudioChanges are forwareded to the related Print or Stream class
- C VolumeStreamConfig Config for VolumeStream
- C VorbisDecoder Vorbis Streaming Decoder using https://github.com/pschatzmann/arduino-libvorbis-idec https://github.com/pschatzmann/arduino-libopus.git
- C VS1053Config Configuration for VS1053Stream
- C VS1053Stream VS1053 Output Interface which processes PCM data by default. If you want to write encoded data set is_encoded_data = true in the configuration;
- C WAVAudioInfo Sound information which is available in the WAV header
- C WAVDecoder A simple WAVDecoder : We parse the header data on the first record to determine the format. If no AudioDecoderExt is specified we just write the PCM data to the output that is defined by calling setOutput() . You can define a ADPCM decoder to decode WAV files that contain ADPCM data
- C WAVEncoder A simple WAV file encoder. If no AudioEncoderExt is specified the WAV file contains PCM data, otherwise it is encoded as ADPCM. The WAV header is written with the first writing of audio data. Calling begin() is making sure that the header is written again
- C WAVFormatX
- C WAVHeader Parser for Wav header data for details see https://de.wikipedia.org/wiki/RIFF_WAVE
- C WavIMAAudioInfo Sound information which is available in the WAV header - adjusted for IMA ADPCM
- C WavIMADecoder Obsolete: WavIMADecoder - based on WAVDecoder - We parse the header data as we receive it and send the sound data to the stream which was indicated in the constructor. Only WAV files with WAVE_FORMAT_IMA_ADPCM are supported by this codec!
- C WavIMAHeader
- C Welch Welch FFT Window function
- C WhiteNoiseGenerator Generates a random noise sound with the help of rand() function
- C WindowFunction FFT Window Function
- C WM8960Config Configuration for WM8960
- C WM8960Stream Stream for reading and writing audio data using the WM8960 Codec Chip You need to install https://github.com/pschatzmann/arduino-wm8960
+ C STKLentPitShift Pitch shifter effect class based on the Lent algorithm
+ C STKNReverb CCRMA's NRev reverberator class
+ C STKPerryReverb Perry's simple reverberator class
+ C STKPitShift Pitch shifter effect class based on the Lent algorithm
+ C STKStream STK Stream for Instrument or Voicer
+ C Str A simple wrapper to provide string functions on char*. If the underlying char* is a const we do not allow any updates; The ownership of the chr* must be managed externally!
+ C Stream
+ C StreamCopy We provide the typeless StreamCopy as a subclass of StreamCopyT
+ C StreamCopyT Typed Stream Copy which supports the conversion from channel to 2 channels. We make sure that we allways copy full samples
+ C StreamingDecoder A Streaming Decoder where we provide both the input and output as streams
+ C StrExt Str which keeps the data on the heap. We grow the allocated memory only if the copy source is not fitting
+ ► C Synthesizer A simple Synthesizer which can generate sound having multiple keys pressed. The main purpose of this class is managing the synthezizer channels
+ C KeyParameter
+ C SynthesizerKey Arduino GPIO pin to note assossiation
+ C TestGenerator Generates a test signal which is easy to check because the values are incremented or decremented by 1
+ C TfLiteAbstractRecognizeCommands Base class for implementing different primitive decoding models on top of the instantaneous results from running an audio recognition model on a single window of samples
+ C TfLiteAudioErrorReporter Error Reporter using the Audio Tools Logger
+ C TfLiteAudioStream TfLiteAudioStream which uses Tensorflow Light to analyze the data. If it is used as a generator (where we read audio data)
+ C TfLiteAudioStreamBase Astract TfLiteAudioStream to provide access to TfLiteAudioStream for Reader and Writers
+ C TfLiteConfig Configuration settings for TfLiteAudioStream
+ C TfLiteMicroSpeachWriter TfLiteMicroSpeachWriter for Audio Data
+ ► C TfLiteMicroSpeechRecognizeCommands This class is designed to apply a very primitive decoding model on top of the instantaneous results from running an audio recognition model on a single window of samples. It applies smoothing over time so that noisy individual label scores are averaged, increasing the confidence that apparent matches are real. To use it, you should create a class object with the configuration you want, and then feed results from running a TensorFlow model into the processing method. The timestamp for each subsequent call should be increasing from the previous, since the class is designed to process a stream of data over time
+ C Result
+ C TfLiteQuantizer Quantizer that helps to quantize and dequantize between float and int8
+ C TfLiteReader Input class which provides the next value if the TfLiteAudioStream is treated as an audio sourcce
+ C TfLiteSineReader Generate a sine output from a model that was trained on the sine method. (=hello_world)
+ C TfLiteWriter Output class which interprets audio data if TfLiteAudioStream is treated as audio sink
+ C Throttle Throttle the sending of the audio data to limit it to the indicated sample rate
+ C ThrottleConfig Configure Throttle setting
+ C TimedStream AudioStream class that can define a start and (an optional) stop time Usually it is used to wrap an Audio Sink (e.g. I2SStream ), but wrapping an Audio Source is supported as well. Only wrap classes which represent PCM data!
+ C TimerAlarmRepeating Common Interface definition for TimerAlarmRepeating
+ C TimerAlarmRepeatingDriverAVR Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating
+ C TimerAlarmRepeatingDriverBase
+ C TimerAlarmRepeatingDriverESP8266 Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating
+ C TimerAlarmRepeatingDriverMBED Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating
+ C TimerAlarmRepeatingDriverRenesas Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating . By default we use a new GPT timer. You can also request 1 AGT timer by calling setTimer(1);
+ C TimerAlarmRepeatingDriverSTM32 STM32 Repeating Timer functions for repeated execution: Plaease use the typedef TimerAlarmRepeating
+ C TimerCallbackAudioStream Callback driven Audio Source (rx_tx_mode==RX_MODE) or Audio Sink (rx_tx_mode==TX_MODE). This class allows to to integrate external libraries in order to consume or generate a data stream which is based on a timer
+ C TimerCallbackAudioStreamInfo TimerCallbackAudioStream Configuration
+ ► C TransformationReader ConverterStream Helper class which implements the converting readBytes with the help of write
+ C AdapterPrintToArray
+ C Tremolo Tremolo AudioEffect
+ C Triangle Triangle FFT Window function
+ C UDPStream
+ C Url URL parser which breaks a full url string up into its individual parts
+ C URLHistory
+ C URLLoader
+ C URLStream Represents the content of a URL as Stream . We use the WiFi.h API
+ C URLStreamBuffered URLStream implementation for the ESP32 based on a separate FreeRTOS task
+ C VariableSpeedRingBuffer Optimized Buffer implementation for Pitch Shift. We try to interpolate the samples and restore the phase when the read pointer and write pointer overtake each other
+ C VariableSpeedRingBuffer180 Varialbe speed ring buffer where we read with 0 and 180 degree and blend the result to prevent overrun artifacts. See https://github.com/YetAnotherElectronicsChannel/STM32_DSP_PitchShift
+ C VariableSpeedRingBufferSimple Very Simple Buffer implementation for Pitch Shift. We write in constant speed, but reading can be done in a variable speed. We will hear some noise when the buffer read and write pointers overrun each other
+ C VBANConfig
+ C VBANStream VBAN Audio Source and Sink for the ESP32. For further details please see https://vb-audio.com/Voicemeeter/vban.htm . Inspired by https://github.com/rkinnett/ESP32-VBAN-Audio-Source/tree/master and https://github.com/rkinnett/ESP32-VBAN-Network-Audio-Player
+ ► C Vector Vector implementation which provides the most important methods as defined by std::vector. This class it is quite handy to have and most of the times quite better then dealing with raw c arrays
+ C iterator Iterator for the Vector class
+ C VideoAudioBufferedSync Logic to Synchronize video and audio output: we use a buffer to store the audio and instead of delaying the frames with delay() we play audio. The bufferSize defines the audio buffer in bytes. The correctionMs is used to slow down or speed up the playback of the video to prevent any audio buffer underflows
+ C VideoAudioSync Logic to Synchronize video and audio output: This is the minimum implementatin which actually does not synchronize, but directly processes the data. No additinal memory is used! Provide your own optimized platform specific implementation
+ C VideoOutput Abstract class for video playback. This class is used to assemble a complete video frame in memory
+ C VolumeControl Abstract class for handling of the linear input volume to determine the multiplication factor which should be applied to the audio signal
+ C VolumeOutput A simple class to determine the volume
+ C VolumeStream Adjust the volume of the related input or output: To work properly the class needs to know the bits per sample and number of channels! AudioChanges are forwareded to the related Print or Stream class
+ C VolumeStreamConfig Config for VolumeStream
+ C VorbisDecoder Vorbis Streaming Decoder using https://github.com/pschatzmann/arduino-libvorbis-idec https://github.com/pschatzmann/arduino-libopus.git
+ C VS1053Config Configuration for VS1053Stream
+ C VS1053Stream VS1053 Output Interface which processes PCM data by default. If you want to write encoded data set is_encoded_data = true in the configuration;
+ C WAVAudioInfo Sound information which is available in the WAV header
+ C WAVDecoder A simple WAVDecoder : We parse the header data on the first record to determine the format. If no AudioDecoderExt is specified we just write the PCM data to the output that is defined by calling setOutput() . You can define a ADPCM decoder to decode WAV files that contain ADPCM data
+ C WAVEncoder A simple WAV file encoder. If no AudioEncoderExt is specified the WAV file contains PCM data, otherwise it is encoded as ADPCM. The WAV header is written with the first writing of audio data. Calling begin() is making sure that the header is written again
+ C WAVFormatX
+ C WAVHeader Parser for Wav header data for details see https://de.wikipedia.org/wiki/RIFF_WAVE
+ C WavIMAAudioInfo Sound information which is available in the WAV header - adjusted for IMA ADPCM
+ C WavIMADecoder Obsolete: WavIMADecoder - based on WAVDecoder - We parse the header data as we receive it and send the sound data to the stream which was indicated in the constructor. Only WAV files with WAVE_FORMAT_IMA_ADPCM are supported by this codec!
+ C WavIMAHeader
+ C Welch Welch FFT Window function
+ C WhiteNoiseGenerator Generates a random noise sound with the help of rand() function
+ C WindowFunction FFT Window Function
+ C WM8960Config Configuration for WM8960
+ C WM8960Stream Stream for reading and writing audio data using the WM8960 Codec Chip You need to install https://github.com/pschatzmann/arduino-wm8960
► N ffft
C Array
C DynArray
diff --git a/search/all_1.js b/search/all_1.js
index 57ad276453..87da4f7367 100644
--- a/search/all_1.js
+++ b/search/all_1.js
@@ -22,7 +22,7 @@ var searchData=
['adapteraudiostreamtoaudiooutput_20',['AdapterAudioStreamToAudioOutput',['../classaudio__tools_1_1_adapter_audio_stream_to_audio_output.html',1,'audio_tools']]],
['adapterprinttoarray_21',['AdapterPrintToArray',['../classaudio__tools_1_1_transformation_reader_1_1_adapter_print_to_array.html',1,'audio_tools::TransformationReader']]],
['adapterprinttoaudiooutput_22',['AdapterPrintToAudioOutput',['../classaudio__tools_1_1_adapter_print_to_audio_output.html',1,'audio_tools']]],
- ['add_23',['add',['../classaudio__tools_1_1_str.html#ada7f3f476500471b1d768531442f7d21',1,'audio_tools::Str::add(double value, int precision=2, int withd=0)'],['../classaudio__tools_1_1_str.html#a84499f0dfa1c8794f5c8b47cfb1019f6',1,'audio_tools::Str::add(const char *append)'],['../classaudio__tools_1_1_str.html#a6b0504614868c1f5900a52eb852ab454',1,'audio_tools::Str::add(const char c)'],['../classaudio__tools_1_1_audio_actions.html#a251a13b88d6b778ec1f5babf5cf0a894',1,'audio_tools::AudioActions::add(int pin, void(*actionOn)(bool pinStatus, int pin, void *ref), ActiveLogic activeLogic=ActiveLow, void *ref=nullptr)'],['../classaudio__tools_1_1_audio_actions.html#aa79cf8ec4645005839c98dbe25e0864d',1,'audio_tools::AudioActions::add(int pin, void(*actionOn)(bool pinStatus, int pin, void *ref), void(*actionOff)(bool pinStatus, int pin, void *ref), ActiveLogic activeLogicPar=ActiveLow, void *ref=nullptr)'],['../classaudio__tools_1_1_multi_output.html#a19b249b67fdac8e965087eab883b26ab',1,'audio_tools::MultiOutput::add(AudioOutput &out)'],['../classaudio__tools_1_1_multi_output.html#a66824420addd2a9aaa989c5ac5462072',1,'audio_tools::MultiOutput::add(AudioStream &stream)'],['../classaudio__tools_1_1_input_mixer.html#a1356c580c466754a5f6afeb4389b9672',1,'audio_tools::InputMixer::add()'],['../classaudio__tools_1_1_input_merge.html#ae191d1c122ecaaf42df5f9e707ca5645',1,'audio_tools::InputMerge::add()'],['../classaudio__tools_1_1_str.html#af145c57539dd93a7875d325160f3ccf3',1,'audio_tools::Str::add()']]],
+ ['add_23',['add',['../classaudio__tools_1_1_str.html#a84499f0dfa1c8794f5c8b47cfb1019f6',1,'audio_tools::Str::add(const char *append)'],['../classaudio__tools_1_1_str.html#a6b0504614868c1f5900a52eb852ab454',1,'audio_tools::Str::add(const char c)'],['../classaudio__tools_1_1_audio_actions.html#a251a13b88d6b778ec1f5babf5cf0a894',1,'audio_tools::AudioActions::add(int pin, void(*actionOn)(bool pinStatus, int pin, void *ref), ActiveLogic activeLogic=ActiveLow, void *ref=nullptr)'],['../classaudio__tools_1_1_audio_actions.html#aa79cf8ec4645005839c98dbe25e0864d',1,'audio_tools::AudioActions::add(int pin, void(*actionOn)(bool pinStatus, int pin, void *ref), void(*actionOff)(bool pinStatus, int pin, void *ref), ActiveLogic activeLogicPar=ActiveLow, void *ref=nullptr)'],['../classaudio__tools_1_1_multi_output.html#a19b249b67fdac8e965087eab883b26ab',1,'audio_tools::MultiOutput::add(AudioOutput &out)'],['../classaudio__tools_1_1_multi_output.html#a66824420addd2a9aaa989c5ac5462072',1,'audio_tools::MultiOutput::add(AudioStream &stream)'],['../classaudio__tools_1_1_input_mixer.html#a1356c580c466754a5f6afeb4389b9672',1,'audio_tools::InputMixer::add()'],['../classaudio__tools_1_1_input_merge.html#ae191d1c122ecaaf42df5f9e707ca5645',1,'audio_tools::InputMerge::add()'],['../classaudio__tools_1_1_str.html#ada7f3f476500471b1d768531442f7d21',1,'audio_tools::Str::add(double value, int precision=2, int withd=0)'],['../classaudio__tools_1_1_str.html#af145c57539dd93a7875d325160f3ccf3',1,'audio_tools::Str::add(int value)']]],
['addaction_24',['addAction',['../classaudio__tools_1_1_audio_kit_stream.html#a24fac46b019688e1b0993569912128a1',1,'audio_tools::AudioKitStream::addAction(int pin, void(*action)(bool, int, void *), AudioActions::ActiveLogic activeLogic, void *ref=nullptr)'],['../classaudio__tools_1_1_audio_kit_stream.html#a08e8001d4d1048b8fd9e13a5e968d453',1,'audio_tools::AudioKitStream::addAction(int pin, void(*action)(bool, int, void *), void *ref=nullptr)']]],
['addcolumnbar_25',['addColumnBar',['../classaudio__tools_1_1_l_e_d_output.html#a4a9868c8067918772f7f48b33c36114a',1,'audio_tools::LEDOutput::addColumnBar()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a4a9868c8067918772f7f48b33c36114a',1,'audio_tools::LEDOutputUnoR4::addColumnBar()']]],
['addeffect_26',['addEffect',['../classaudio__tools_1_1_audio_effect_common.html#a8c1b8bfcd46d399503e45d49c32ce087',1,'audio_tools::AudioEffectCommon::addEffect(AudioEffect &effect)'],['../classaudio__tools_1_1_audio_effect_common.html#a76977e2ce53e1e0cb66e2dc76eb34500',1,'audio_tools::AudioEffectCommon::addEffect(AudioEffect *effect)'],['../classaudio__tools_1_1_audio_effects.html#a8c1b8bfcd46d399503e45d49c32ce087',1,'audio_tools::AudioEffects::addEffect(AudioEffect &effect)'],['../classaudio__tools_1_1_audio_effects.html#a76977e2ce53e1e0cb66e2dc76eb34500',1,'audio_tools::AudioEffects::addEffect(AudioEffect *effect)'],['../classaudio__tools_1_1_audio_effect_stream_t.html#a8c1b8bfcd46d399503e45d49c32ce087',1,'audio_tools::AudioEffectStreamT::addEffect(AudioEffect &effect)'],['../classaudio__tools_1_1_audio_effect_stream_t.html#a76977e2ce53e1e0cb66e2dc76eb34500',1,'audio_tools::AudioEffectStreamT::addEffect(AudioEffect *effect)']]],
@@ -31,7 +31,7 @@ var searchData=
['addpeer_29',['addPeer',['../classaudio__tools_1_1_e_s_p_now_stream.html#aa4e3e1a3203215d33273f6e68a00c281',1,'audio_tools::ESPNowStream::addPeer(esp_now_peer_info_t &peer)'],['../classaudio__tools_1_1_e_s_p_now_stream.html#a698e82ab7c77d5d37805864f7db3f07b',1,'audio_tools::ESPNowStream::addPeer(const char *address)']]],
['addpeers_30',['addPeers',['../classaudio__tools_1_1_e_s_p_now_stream.html#a8288d5243eafb638d5501e5deb714ae1',1,'audio_tools::ESPNowStream']]],
['addrequestheader_31',['addRequestHeader',['../classaudio__tools_1_1_http_request.html#ad3dc068c14d312a8315248f59675ace3',1,'audio_tools::HttpRequest::addRequestHeader()'],['../classaudio__tools_1_1_u_r_l_stream.html#ad3dc068c14d312a8315248f59675ace3',1,'audio_tools::URLStream::addRequestHeader()']]],
- ['address_32',['address',['../classaudio__tools_1_1_n_buffer.html#a225f852d959563be49658300547343b5',1,'audio_tools::NBuffer::address()'],['../classaudio__tools_1_1_ring_buffer_file.html#a001493d22a88d48242cc331551def442',1,'audio_tools::RingBufferFile::address()'],['../classaudio__tools_1_1_ring_buffer.html#a8790df7b9c12234348cad32e5652de5a',1,'audio_tools::RingBuffer::address()'],['../classaudio__tools_1_1_single_buffer.html#a001493d22a88d48242cc331551def442',1,'audio_tools::SingleBuffer::address()'],['../classaudio__tools_1_1_base_buffer.html#a1630a475441016638ee45edc5c3074f5',1,'audio_tools::BaseBuffer::address()'],['../classaudio__tools_1_1_variable_speed_ring_buffer.html#a8790df7b9c12234348cad32e5652de5a',1,'audio_tools::VariableSpeedRingBuffer::address()'],['../classaudio__tools_1_1_variable_speed_ring_buffer180.html#a8790df7b9c12234348cad32e5652de5a',1,'audio_tools::VariableSpeedRingBuffer180::address()'],['../classaudio__tools_1_1_variable_speed_ring_buffer_simple.html#a8790df7b9c12234348cad32e5652de5a',1,'audio_tools::VariableSpeedRingBufferSimple::address()']]],
+ ['address_32',['address',['../classaudio__tools_1_1_n_buffer.html#a225f852d959563be49658300547343b5',1,'audio_tools::NBuffer::address()'],['../classaudio__tools_1_1_ring_buffer_file.html#a001493d22a88d48242cc331551def442',1,'audio_tools::RingBufferFile::address()'],['../classaudio__tools_1_1_ring_buffer.html#a8790df7b9c12234348cad32e5652de5a',1,'audio_tools::RingBuffer::address()'],['../classaudio__tools_1_1_single_buffer.html#a001493d22a88d48242cc331551def442',1,'audio_tools::SingleBuffer::address()'],['../classaudio__tools_1_1_base_buffer.html#a1630a475441016638ee45edc5c3074f5',1,'audio_tools::BaseBuffer::address()'],['../classaudio__tools_1_1_variable_speed_ring_buffer_simple.html#a8790df7b9c12234348cad32e5652de5a',1,'audio_tools::VariableSpeedRingBufferSimple::address()'],['../classaudio__tools_1_1_variable_speed_ring_buffer180.html#a8790df7b9c12234348cad32e5652de5a',1,'audio_tools::VariableSpeedRingBuffer180::address()'],['../classaudio__tools_1_1_variable_speed_ring_buffer.html#a8790df7b9c12234348cad32e5652de5a',1,'audio_tools::VariableSpeedRingBuffer::address()']]],
['addurl_33',['addUrl',['../classaudio__tools_1_1_u_r_l_loader.html#a9c61bc6325af0c09c4be5f0ed835327c',1,'audio_tools::URLLoader']]],
['adpcmdecoder_34',['ADPCMDecoder',['../classaudio__tools_1_1_a_d_p_c_m_decoder.html',1,'audio_tools']]],
['adpcmdecoderxq_35',['ADPCMDecoderXQ',['../classaudio__tools_1_1_a_d_p_c_m_decoder_x_q.html',1,'audio_tools']]],
@@ -62,7 +62,7 @@ var searchData=
['aptxdecoder_60',['APTXDecoder',['../classaudio__tools_1_1_a_p_t_x_decoder.html',1,'audio_tools']]],
['aptxencoder_61',['APTXEncoder',['../classaudio__tools_1_1_a_p_t_x_encoder.html',1,'audio_tools']]],
['arduino_20audio_20tools_62',['Arduino Audio Tools',['../index.html',1,'(Global Namespace)'],['../group__main.html',1,'(Global Namespace)']]],
- ['array_63',['array',['../classaudio__tools_1_1_audio_e_s_p32_f_f_t.html#a66ae48c63153a8973ad0b5b2d95f86a1',1,'audio_tools::AudioESP32FFT::array()'],['../classaudio__tools_1_1_audio_cmsis_f_f_t.html#a66ae48c63153a8973ad0b5b2d95f86a1',1,'audio_tools::AudioCmsisFFT::array()']]],
+ ['array_63',['array',['../classaudio__tools_1_1_audio_cmsis_f_f_t.html#a66ae48c63153a8973ad0b5b2d95f86a1',1,'audio_tools::AudioCmsisFFT::array()'],['../classaudio__tools_1_1_audio_e_s_p32_f_f_t.html#a66ae48c63153a8973ad0b5b2d95f86a1',1,'audio_tools::AudioESP32FFT::array()']]],
['array_64',['Array',['../classffft_1_1_array.html',1,'ffft']]],
['array_3c_20ffft_3a_3aoscsincos_2c_20trigo_5fosc_5farr_5fsize_20_3e_65',['Array< ffft::OscSinCos, TRIGO_OSC_ARR_SIZE >',['../classffft_1_1_array.html',1,'ffft']]],
['as_5ffloat_66',['as_float',['../classaudio__tools_1_1float16.html#abc5fae42069592b7ba751f7b9d70d287',1,'audio_tools::float16']]],
@@ -87,7 +87,7 @@ var searchData=
['audioeffectstreamt_85',['AudioEffectStreamT',['../classaudio__tools_1_1_audio_effect_stream_t.html',1,'audio_tools']]],
['audioencoder_86',['AudioEncoder',['../classaudio__tools_1_1_audio_encoder.html',1,'audio_tools']]],
['audioencoderext_87',['AudioEncoderExt',['../classaudio__tools_1_1_audio_encoder_ext.html',1,'audio_tools']]],
- ['audioencoderserver_88',['AudioEncoderServer',['../classaudio__tools_1_1_audio_encoder_server.html',1,'AudioEncoderServer'],['../classaudio__tools_1_1_audio_encoder_server.html#a37e39fda24859db2f03f0dd9b1e3ee58',1,'audio_tools::AudioEncoderServer::AudioEncoderServer(AudioEncoder *encoder, const char *network, const char *password, int port=80)'],['../classaudio__tools_1_1_audio_encoder_server.html#af0943d471b7147ea7a8c109be5e9e7dd',1,'audio_tools::AudioEncoderServer::AudioEncoderServer(AudioEncoder *encoder, int port=80)']]],
+ ['audioencoderserver_88',['AudioEncoderServer',['../classaudio__tools_1_1_audio_encoder_server.html',1,'AudioEncoderServer'],['../classaudio__tools_1_1_audio_encoder_server.html#af0943d471b7147ea7a8c109be5e9e7dd',1,'audio_tools::AudioEncoderServer::AudioEncoderServer(AudioEncoder *encoder, int port=80)'],['../classaudio__tools_1_1_audio_encoder_server.html#a37e39fda24859db2f03f0dd9b1e3ee58',1,'audio_tools::AudioEncoderServer::AudioEncoderServer(AudioEncoder *encoder, const char *network, const char *password, int port=80)']]],
['audioesp32fft_89',['AudioESP32FFT',['../classaudio__tools_1_1_audio_e_s_p32_f_f_t.html',1,'audio_tools']]],
['audioesp32ulp_90',['AudioESP32ULP',['../class_audio_e_s_p32_u_l_p.html',1,'']]],
['audioesp32ulp_2eh_91',['AudioESP32ULP.h',['../_audio_e_s_p32_u_l_p_8h.html',1,'']]],
@@ -99,60 +99,59 @@ var searchData=
['audioformat_97',['AudioFormat',['../group__video.html#ga4fcb46758e1356d5ff7c6523c52810c1',1,'audio_tools']]],
['audioformat_2eh_98',['AudioFormat.h',['../_audio_format_8h.html',1,'']]],
['audioheader_99',['AudioHeader',['../structaudio__tools_1_1_audio_header.html',1,'audio_tools']]],
- ['audioinfo_100',['AudioInfo',['../structaudio__tools_1_1_audio_info.html',1,'audio_tools']]],
+ ['audioinfo_100',['AudioInfo',['../structaudio__tools_1_1_audio_info.html',1,'AudioInfo'],['../structaudio__tools_1_1_audio_info.html#aed5ea168bca8ad2991118811c4c83c6d',1,'audio_tools::AudioInfo::AudioInfo()=default'],['../structaudio__tools_1_1_audio_info.html#aad3abfde14e116305e1144124a04b547',1,'audio_tools::AudioInfo::AudioInfo(int sampleRate, int channelCount, int bitsPerSample)'],['../structaudio__tools_1_1_audio_info.html#a4cb03d08c1e6abee2be44eb0b8c05066',1,'audio_tools::AudioInfo::AudioInfo(const AudioInfo &)=default']]],
['audioinfo_101',['audioInfo',['../classaudio__tools_1_1_streaming_decoder.html#ae0d5f156b0564368220fa8d328db3880',1,'audio_tools::StreamingDecoder::audioInfo()'],['../classaudio__tools_1_1_f_l_a_c_decoder.html#a78cb84ad6d022a3d5f1b4267c4150b82',1,'audio_tools::FLACDecoder::audioInfo()'],['../classaudio__tools_1_1_m_p3_decoder_mini.html#a78cb84ad6d022a3d5f1b4267c4150b82',1,'audio_tools::MP3DecoderMini::audioInfo()'],['../classaudio__tools_1_1_vorbis_decoder.html#aed4bf0d5ce93f27242be485943d0b37d',1,'audio_tools::VorbisDecoder::audioInfo()'],['../classaudio__tools_1_1_w_a_v_header.html#af8e73b9ee5e107a8f2636b6efc0f3572',1,'audio_tools::WAVHeader::audioInfo()']]],
- ['audioinfo_102',['AudioInfo',['../structaudio__tools_1_1_audio_info.html#aed5ea168bca8ad2991118811c4c83c6d',1,'audio_tools::AudioInfo::AudioInfo()=default'],['../structaudio__tools_1_1_audio_info.html#aad3abfde14e116305e1144124a04b547',1,'audio_tools::AudioInfo::AudioInfo(int sampleRate, int channelCount, int bitsPerSample)'],['../structaudio__tools_1_1_audio_info.html#a4cb03d08c1e6abee2be44eb0b8c05066',1,'audio_tools::AudioInfo::AudioInfo(const AudioInfo &)=default']]],
- ['audioinfoex_103',['audioInfoEx',['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#aee542fc531c6d47ab1b36ffa8e8fc721',1,'audio_tools::MP3DecoderMAD']]],
- ['audioinfoext_104',['audioInfoExt',['../classaudio__tools_1_1_timer_callback_audio_stream.html#a22d369442a991ceb97781be3636bf203',1,'audio_tools::TimerCallbackAudioStream']]],
- ['audioinfolame_105',['AudioInfoLAME',['../structaudio__tools_1_1_audio_info_l_a_m_e.html',1,'audio_tools']]],
- ['audioinfosource_106',['AudioInfoSource',['../classaudio__tools_1_1_audio_info_source.html',1,'audio_tools']]],
- ['audioinfosupport_107',['AudioInfoSupport',['../classaudio__tools_1_1_audio_info_support.html',1,'audio_tools']]],
- ['audiokissfft_108',['AudioKissFFT',['../classaudio__tools_1_1_audio_kiss_f_f_t.html',1,'audio_tools']]],
- ['audiokitstream_109',['AudioKitStream',['../classaudio__tools_1_1_audio_kit_stream.html',1,'audio_tools']]],
- ['audiokitstreamconfig_110',['AudioKitStreamConfig',['../classaudio__tools_1_1_audio_kit_stream_config.html',1,'audio_tools']]],
- ['audiomp34dt05_111',['AudioMP34DT05',['../classaudio__tools_1_1_audio_m_p34_d_t05.html',1,'audio_tools']]],
- ['audiomp34dt05config_112',['AudioMP34DT05Config',['../structaudio__tools_1_1_audio_m_p34_d_t05_config.html',1,'audio_tools']]],
- ['audiooutput_113',['AudioOutput',['../classaudio__tools_1_1_audio_output.html',1,'audio_tools']]],
- ['audiooutputadapter_114',['AudioOutputAdapter',['../classaudio__tools_1_1_audio_output_adapter.html',1,'audio_tools']]],
- ['audiooutputwithcallback_115',['AudioOutputWithCallback',['../classaudio__tools_1_1_audio_output_with_callback.html',1,'audio_tools']]],
- ['audioplayer_116',['AudioPlayer',['../classaudio__tools_1_1_audio_player.html',1,'AudioPlayer'],['../classaudio__tools_1_1_audio_player.html#af866d70dfc7325dfb74d9e81fcebe638',1,'audio_tools::AudioPlayer::AudioPlayer(AudioSource &source, Print &output, AudioDecoder &decoder, AudioInfoSupport *notify=nullptr)'],['../classaudio__tools_1_1_audio_player.html#af06d02e485431063eb93d1f73e7abd7b',1,'audio_tools::AudioPlayer::AudioPlayer(AudioSource &source, AudioOutput &output, AudioDecoder &decoder)'],['../classaudio__tools_1_1_audio_player.html#a9e7fea065b86e784a0019cf99a3cc585',1,'audio_tools::AudioPlayer::AudioPlayer()'],['../classaudio__tools_1_1_audio_player.html#a17a8ba5d0dba0571c267ef6e53847d7e',1,'audio_tools::AudioPlayer::AudioPlayer(AudioSource &source, AudioStream &output, AudioDecoder &decoder)']]],
- ['audiorealfft_117',['AudioRealFFT',['../classaudio__tools_1_1_audio_real_f_f_t.html',1,'audio_tools']]],
- ['audioruntime_2ecpp_118',['AudioRuntime.cpp',['../_audio_runtime_8cpp.html',1,'']]],
- ['audiosenddata_119',['AudioSendData',['../structaudio__tools_1_1_audio_send_data.html',1,'audio_tools']]],
- ['audioserver_120',['AudioServer',['../classaudio__tools_1_1_audio_server.html',1,'AudioServer'],['../classaudio__tools_1_1_audio_server.html#ab7c39877dabd3014eb24ac98627ab7a0',1,'audio_tools::AudioServer::AudioServer(int port=80)'],['../classaudio__tools_1_1_audio_server.html#ac84177017ebb77f2dd98707ee47f0b4e',1,'audio_tools::AudioServer::AudioServer(const char *network, const char *password, int port=80)']]],
- ['audioserverdatacallback_121',['AudioServerDataCallback',['../namespaceaudio__tools.html#ae6d40783cdf760069729786896fc23b2',1,'audio_tools']]],
- ['audioserverex_122',['AudioServerEx',['../classaudio__tools_1_1_audio_server_ex.html',1,'AudioServerEx'],['../classaudio__tools_1_1_audio_server_ex.html#aec62606e3be52a06d46cd6178e300c28',1,'audio_tools::AudioServerEx::AudioServerEx()']]],
- ['audioserverexconfig_123',['AudioServerExConfig',['../structaudio__tools_1_1_audio_server_ex_config.html',1,'audio_tools']]],
- ['audiosource_124',['AudioSource',['../classaudio__tools_1_1_audio_source.html',1,'audio_tools']]],
- ['audiosourcecallback_125',['AudioSourceCallback',['../classaudio__tools_1_1_audio_source_callback.html',1,'audio_tools']]],
- ['audiosourceidxsd_126',['AudioSourceIdxSD',['../classaudio__tools_1_1_audio_source_idx_s_d.html',1,'AudioSourceIdxSD'],['../classaudio__tools_1_1_audio_source_idx_s_d.html#a39194a0faaa356de2529179d83854545',1,'audio_tools::AudioSourceIdxSD::AudioSourceIdxSD()']]],
- ['audiosourceidxsdfat_127',['AudioSourceIdxSDFAT',['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html',1,'AudioSourceIdxSDFAT'],['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#aa93d3c8fec79725f28c9adf68aeb5c78',1,'audio_tools::AudioSourceIdxSDFAT::AudioSourceIdxSDFAT()']]],
- ['audiosourceidxsdmmc_128',['AudioSourceIdxSDMMC',['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html',1,'AudioSourceIdxSDMMC'],['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html#ad7406c44c13168206a2f072a5c27d123',1,'audio_tools::AudioSourceIdxSDMMC::AudioSourceIdxSDMMC()']]],
- ['audiosourcelittlefs_129',['AudioSourceLittleFS',['../classaudio__tools_1_1_audio_source_little_f_s.html',1,'AudioSourceLittleFS'],['../classaudio__tools_1_1_audio_source_little_f_s.html#a72f68241f8bfd35bbdb5f3f0fe94d25a',1,'audio_tools::AudioSourceLittleFS::AudioSourceLittleFS()']]],
- ['audiosourcesd_130',['AudioSourceSD',['../classaudio__tools_1_1_audio_source_s_d.html',1,'AudioSourceSD'],['../classaudio__tools_1_1_audio_source_s_d.html#aab37cfb8e35d616335c7c56aa21ec3e6',1,'audio_tools::AudioSourceSD::AudioSourceSD()']]],
- ['audiosourcesdfat_131',['AudioSourceSDFAT',['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html',1,'AudioSourceSDFAT'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a0c08ec9fb4fe7670b89a3e747c349c3e',1,'audio_tools::AudioSourceSDFAT::AudioSourceSDFAT(const char *startFilePath, const char *ext, SdSpiConfig &config, bool setupIndex=true)'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a6bda4ea31c9e0982368e6063a23cabb4',1,'audio_tools::AudioSourceSDFAT::AudioSourceSDFAT(const char *startFilePath="/", const char *ext=".mp3", int chipSelect=PIN_CS, int speedMHz=10, int spi_mode=DEDICATED_SPI, bool setupIndex=true)'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a9fa54034dcef9ee71d7f35c919f40ec9',1,'audio_tools::AudioSourceSDFAT::AudioSourceSDFAT(const char *startFilePath, const char *ext, SdSpiConfig &config)'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a7305e63e4c26b444ec50b9b05c169dd4',1,'audio_tools::AudioSourceSDFAT::AudioSourceSDFAT(const char *startFilePath="/", const char *ext=".mp3", int chipSelect=PIN_CS, int speedMHz=10)'],['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#a0c08ec9fb4fe7670b89a3e747c349c3e',1,'audio_tools::AudioSourceIdxSDFAT::AudioSourceSDFAT()']]],
- ['audiosourcesdmmc_132',['AudioSourceSDMMC',['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html',1,'AudioSourceSDMMC'],['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html#a9ec33b3846c90d4cfd9098535ae2ae31',1,'audio_tools::AudioSourceSDMMC::AudioSourceSDMMC()']]],
- ['audiosourcespiffs_133',['AudioSourceSPIFFS',['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html',1,'AudioSourceSPIFFS'],['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html#a064ecbfe9c67c85db67266f0e6da026a',1,'audio_tools::AudioSourceSPIFFS::AudioSourceSPIFFS()']]],
- ['audiosourcestd_134',['AudioSourceSTD',['../classaudio__tools_1_1_audio_source_s_t_d.html',1,'AudioSourceSTD'],['../classaudio__tools_1_1_audio_source_s_t_d.html#a242edb5ddefdd20ce03542e05a254530',1,'audio_tools::AudioSourceSTD::AudioSourceSTD()']]],
- ['audiosourceurl_135',['AudioSourceURL',['../classaudio__tools_1_1_audio_source_u_r_l.html',1,'audio_tools']]],
- ['audiospdif_2eh_136',['AudioSPDIF.h',['../_audio_s_p_d_i_f_8h.html',1,'']]],
- ['audiostream_137',['AudioStream',['../classaudio__tools_1_1_audio_stream.html',1,'audio_tools']]],
- ['audiostreamwrapper_138',['AudioStreamWrapper',['../classaudio__tools_1_1_audio_stream_wrapper.html',1,'audio_tools']]],
- ['audiosyncreader_139',['AudioSyncReader',['../classaudio__tools_1_1_audio_sync_reader.html',1,'audio_tools']]],
- ['audiosyncwriter_140',['AudioSyncWriter',['../classaudio__tools_1_1_audio_sync_writer.html',1,'audio_tools']]],
- ['audiotime_141',['AudioTime',['../classaudio__tools_1_1_audio_time.html',1,'audio_tools']]],
- ['audiotools_2eh_142',['AudioTools.h',['../_audio_tools_8h.html',1,'']]],
- ['audiowavserver_143',['AudioWAVServer',['../classaudio__tools_1_1_audio_w_a_v_server.html',1,'AudioWAVServer'],['../classaudio__tools_1_1_audio_w_a_v_server.html#ac74ed9f26576493d517f58d26137b28f',1,'audio_tools::AudioWAVServer::AudioWAVServer(int port=80)'],['../classaudio__tools_1_1_audio_w_a_v_server.html#a5b341c64814f84c39a5d3e0068d697fc',1,'audio_tools::AudioWAVServer::AudioWAVServer(const char *network, const char *password, int port=80)']]],
- ['audiowavserverex_144',['AudioWAVServerEx',['../classaudio__tools_1_1_audio_w_a_v_server_ex.html',1,'AudioWAVServerEx'],['../classaudio__tools_1_1_audio_w_a_v_server_ex.html#a1544b00124e77a01a864435f05b029c4',1,'audio_tools::AudioWAVServerEx::AudioWAVServerEx()']]],
- ['audiowriter_145',['AudioWriter',['../classaudio__tools_1_1_audio_writer.html',1,'audio_tools']]],
- ['audiowritertoaudiooutput_146',['AudioWriterToAudioOutput',['../classaudio__tools_1_1_audio_writer_to_audio_output.html',1,'audio_tools']]],
- ['available_147',['available',['../classaudio__tools_1_1_base_buffer.html#aebd60457902debb30b07971a16f24ebd',1,'audio_tools::BaseBuffer::available()'],['../classaudio__tools_1_1_volume_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::VolumeStream::available()'],['../classaudio__tools_1_1_stream_copy_t.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::StreamCopyT::available()'],['../classaudio__tools_1_1_n_buffer.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::NBuffer::available()'],['../classaudio__tools_1_1_ring_buffer_file.html#a692e2b18b3c2452e38e3f558ad87e9a5',1,'audio_tools::RingBufferFile::available()'],['../classaudio__tools_1_1_ring_buffer.html#a512cfced3ab951dde7a9a78f1274fe63',1,'audio_tools::RingBuffer::available()'],['../classaudio__tools_1_1_single_buffer.html#a692e2b18b3c2452e38e3f558ad87e9a5',1,'audio_tools::SingleBuffer::available()'],['../classaudio__tools_1_1_input_merge.html#a692e2b18b3c2452e38e3f558ad87e9a5',1,'audio_tools::InputMerge::available()'],['../classaudio__tools_1_1_converter_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::ConverterStream::available()'],['../classaudio__tools_1_1_buffered_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::BufferedStream::available()'],['../classaudio__tools_1_1_generated_sound_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::GeneratedSoundStream::available()'],['../classaudio__tools_1_1_tf_lite_audio_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::TfLiteAudioStream::available()'],['../classaudio__tools_1_1_u_d_p_stream.html#a692e2b18b3c2452e38e3f558ad87e9a5',1,'audio_tools::UDPStream::available()'],['../classaudio__tools_1_1_audio_kit_stream.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::AudioKitStream::available()'],['../classaudio__tools_1_1_i2_s_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::I2SStream::available()'],['../classaudio__tools_1_1_variable_speed_ring_buffer_simple.html#a512cfced3ab951dde7a9a78f1274fe63',1,'audio_tools::VariableSpeedRingBufferSimple::available()'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::I2SDriverSTM32::available()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::I2SDriverESP8266::available()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::I2SDriverESP32V1::available()'],['../classaudio__tools_1_1_buffered_task_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::BufferedTaskStream::available()'],['../classaudio__tools_1_1_i_c_y_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::ICYStream::available()'],['../classaudio__tools_1_1_u_r_l_loader.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::URLLoader::available()'],['../classaudio__tools_1_1_timed_stream.html#a692e2b18b3c2452e38e3f558ad87e9a5',1,'audio_tools::TimedStream::available()'],['../classaudio__tools_1_1_variable_speed_ring_buffer180.html#a512cfced3ab951dde7a9a78f1274fe63',1,'audio_tools::VariableSpeedRingBuffer180::available()'],['../classaudio__tools_1_1_variable_speed_ring_buffer.html#a512cfced3ab951dde7a9a78f1274fe63',1,'audio_tools::VariableSpeedRingBuffer::available()']]],
- ['availablebytes_148',['availableBytes',['../classaudio__tools_1_1_input_mixer.html#a901b9bd204a4845e3e7e61ad47ef81a2',1,'audio_tools::InputMixer']]],
- ['availableforwrite_149',['availableForWrite',['../classaudio__tools_1_1_volume_stream.html#a6ff0d6d1b0f3f9b652c9d5298ed0863c',1,'audio_tools::VolumeStream::availableForWrite()'],['../classaudio__tools_1_1_n_buffer.html#a86aa7db83a28e2662e01c57a36681cb0',1,'audio_tools::NBuffer::availableForWrite()'],['../classaudio__tools_1_1_ring_buffer_file.html#a87b51853b7bf1bc90d9efa9f3b8d4fea',1,'audio_tools::RingBufferFile::availableForWrite()'],['../classaudio__tools_1_1_ring_buffer.html#a473a08fbb41a997860a55213bc367d44',1,'audio_tools::RingBuffer::availableForWrite()'],['../classaudio__tools_1_1_single_buffer.html#a87b51853b7bf1bc90d9efa9f3b8d4fea',1,'audio_tools::SingleBuffer::availableForWrite()'],['../classaudio__tools_1_1_base_buffer.html#a9953a7c3a981eb3a83adb4f9ecfb9ac5',1,'audio_tools::BaseBuffer::availableForWrite()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#a87b51853b7bf1bc90d9efa9f3b8d4fea',1,'audio_tools::AudioFFTBase::availableForWrite()'],['../classaudio__tools_1_1_progress_stream.html#a6ff0d6d1b0f3f9b652c9d5298ed0863c',1,'audio_tools::ProgressStream::availableForWrite()'],['../classaudio__tools_1_1_measuring_stream.html#a6ff0d6d1b0f3f9b652c9d5298ed0863c',1,'audio_tools::MeasuringStream::availableForWrite()'],['../classaudio__tools_1_1_output_mixer.html#ad19e788ef2c620faad7b476ad50d7fd8',1,'audio_tools::OutputMixer::availableForWrite()'],['../classaudio__tools_1_1_r_t_s_p_output.html#a86aa7db83a28e2662e01c57a36681cb0',1,'audio_tools::RTSPOutput::availableForWrite()'],['../classaudio__tools_1_1_variable_speed_ring_buffer_simple.html#a473a08fbb41a997860a55213bc367d44',1,'audio_tools::VariableSpeedRingBufferSimple::availableForWrite()'],['../classaudio__tools_1_1_variable_speed_ring_buffer180.html#a473a08fbb41a997860a55213bc367d44',1,'audio_tools::VariableSpeedRingBuffer180::availableForWrite()'],['../classaudio__tools_1_1_variable_speed_ring_buffer.html#a473a08fbb41a997860a55213bc367d44',1,'audio_tools::VariableSpeedRingBuffer::availableForWrite()'],['../classaudio__tools_1_1_abstract_u_r_l_stream.html#a87b51853b7bf1bc90d9efa9f3b8d4fea',1,'audio_tools::AbstractURLStream::availableForWrite()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#a86aa7db83a28e2662e01c57a36681cb0',1,'audio_tools::I2SDriverESP32V1::availableForWrite()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#a86aa7db83a28e2662e01c57a36681cb0',1,'audio_tools::I2SDriverESP8266::availableForWrite()'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#a86aa7db83a28e2662e01c57a36681cb0',1,'audio_tools::I2SDriverSTM32::availableForWrite()'],['../classaudio__tools_1_1_i2_s_stream.html#a6ff0d6d1b0f3f9b652c9d5298ed0863c',1,'audio_tools::I2SStream::availableForWrite()'],['../classaudio__tools_1_1_mozzi_stream.html#a473a08fbb41a997860a55213bc367d44',1,'audio_tools::MozziStream::availableForWrite()'],['../classaudio__tools_1_1_u_d_p_stream.html#a86aa7db83a28e2662e01c57a36681cb0',1,'audio_tools::UDPStream::availableForWrite()'],['../classaudio__tools_1_1_output_mixer.html#a87b51853b7bf1bc90d9efa9f3b8d4fea',1,'audio_tools::OutputMixer::availableForWrite()']]],
- ['availabletowrite_150',['availableToWrite',['../classaudio__tools_1_1_tf_lite_audio_stream.html#af3f33ecee7917f696d36797ab0ff8617',1,'audio_tools::TfLiteAudioStream']]],
- ['aviaudioinfo_151',['aviAudioInfo',['../classaudio__tools_1_1_a_v_i_decoder.html#ae9b14384a2500a6d469ab34a4e642af6',1,'audio_tools::AVIDecoder']]],
- ['avidecoder_152',['AVIDecoder',['../classaudio__tools_1_1_a_v_i_decoder.html',1,'audio_tools']]],
- ['avimainheader_153',['AVIMainHeader',['../structaudio__tools_1_1_a_v_i_main_header.html',1,'audio_tools']]],
- ['avistreamheader_154',['AVIStreamHeader',['../structaudio__tools_1_1_a_v_i_stream_header.html',1,'audio_tools']]],
- ['avivideoinfo_155',['aviVideoInfo',['../classaudio__tools_1_1_a_v_i_decoder.html#aaef28edae57ceea8bfc418bd51835aaf',1,'audio_tools::AVIDecoder']]]
+ ['audioinfoex_102',['audioInfoEx',['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#aee542fc531c6d47ab1b36ffa8e8fc721',1,'audio_tools::MP3DecoderMAD']]],
+ ['audioinfoext_103',['audioInfoExt',['../classaudio__tools_1_1_timer_callback_audio_stream.html#a22d369442a991ceb97781be3636bf203',1,'audio_tools::TimerCallbackAudioStream']]],
+ ['audioinfolame_104',['AudioInfoLAME',['../structaudio__tools_1_1_audio_info_l_a_m_e.html',1,'audio_tools']]],
+ ['audioinfosource_105',['AudioInfoSource',['../classaudio__tools_1_1_audio_info_source.html',1,'audio_tools']]],
+ ['audioinfosupport_106',['AudioInfoSupport',['../classaudio__tools_1_1_audio_info_support.html',1,'audio_tools']]],
+ ['audiokissfft_107',['AudioKissFFT',['../classaudio__tools_1_1_audio_kiss_f_f_t.html',1,'audio_tools']]],
+ ['audiokitstream_108',['AudioKitStream',['../classaudio__tools_1_1_audio_kit_stream.html',1,'audio_tools']]],
+ ['audiokitstreamconfig_109',['AudioKitStreamConfig',['../classaudio__tools_1_1_audio_kit_stream_config.html',1,'audio_tools']]],
+ ['audiomp34dt05_110',['AudioMP34DT05',['../classaudio__tools_1_1_audio_m_p34_d_t05.html',1,'audio_tools']]],
+ ['audiomp34dt05config_111',['AudioMP34DT05Config',['../structaudio__tools_1_1_audio_m_p34_d_t05_config.html',1,'audio_tools']]],
+ ['audiooutput_112',['AudioOutput',['../classaudio__tools_1_1_audio_output.html',1,'audio_tools']]],
+ ['audiooutputadapter_113',['AudioOutputAdapter',['../classaudio__tools_1_1_audio_output_adapter.html',1,'audio_tools']]],
+ ['audiooutputwithcallback_114',['AudioOutputWithCallback',['../classaudio__tools_1_1_audio_output_with_callback.html',1,'audio_tools']]],
+ ['audioplayer_115',['AudioPlayer',['../classaudio__tools_1_1_audio_player.html',1,'AudioPlayer'],['../classaudio__tools_1_1_audio_player.html#af866d70dfc7325dfb74d9e81fcebe638',1,'audio_tools::AudioPlayer::AudioPlayer(AudioSource &source, Print &output, AudioDecoder &decoder, AudioInfoSupport *notify=nullptr)'],['../classaudio__tools_1_1_audio_player.html#af06d02e485431063eb93d1f73e7abd7b',1,'audio_tools::AudioPlayer::AudioPlayer(AudioSource &source, AudioOutput &output, AudioDecoder &decoder)'],['../classaudio__tools_1_1_audio_player.html#a9e7fea065b86e784a0019cf99a3cc585',1,'audio_tools::AudioPlayer::AudioPlayer()'],['../classaudio__tools_1_1_audio_player.html#a17a8ba5d0dba0571c267ef6e53847d7e',1,'audio_tools::AudioPlayer::AudioPlayer(AudioSource &source, AudioStream &output, AudioDecoder &decoder)']]],
+ ['audiorealfft_116',['AudioRealFFT',['../classaudio__tools_1_1_audio_real_f_f_t.html',1,'audio_tools']]],
+ ['audioruntime_2ecpp_117',['AudioRuntime.cpp',['../_audio_runtime_8cpp.html',1,'']]],
+ ['audiosenddata_118',['AudioSendData',['../structaudio__tools_1_1_audio_send_data.html',1,'audio_tools']]],
+ ['audioserver_119',['AudioServer',['../classaudio__tools_1_1_audio_server.html',1,'AudioServer'],['../classaudio__tools_1_1_audio_server.html#ab7c39877dabd3014eb24ac98627ab7a0',1,'audio_tools::AudioServer::AudioServer(int port=80)'],['../classaudio__tools_1_1_audio_server.html#ac84177017ebb77f2dd98707ee47f0b4e',1,'audio_tools::AudioServer::AudioServer(const char *network, const char *password, int port=80)']]],
+ ['audioserverdatacallback_120',['AudioServerDataCallback',['../namespaceaudio__tools.html#ae6d40783cdf760069729786896fc23b2',1,'audio_tools']]],
+ ['audioserverex_121',['AudioServerEx',['../classaudio__tools_1_1_audio_server_ex.html',1,'AudioServerEx'],['../classaudio__tools_1_1_audio_server_ex.html#aec62606e3be52a06d46cd6178e300c28',1,'audio_tools::AudioServerEx::AudioServerEx()']]],
+ ['audioserverexconfig_122',['AudioServerExConfig',['../structaudio__tools_1_1_audio_server_ex_config.html',1,'audio_tools']]],
+ ['audiosource_123',['AudioSource',['../classaudio__tools_1_1_audio_source.html',1,'audio_tools']]],
+ ['audiosourcecallback_124',['AudioSourceCallback',['../classaudio__tools_1_1_audio_source_callback.html',1,'audio_tools']]],
+ ['audiosourceidxsd_125',['AudioSourceIdxSD',['../classaudio__tools_1_1_audio_source_idx_s_d.html',1,'AudioSourceIdxSD'],['../classaudio__tools_1_1_audio_source_idx_s_d.html#a39194a0faaa356de2529179d83854545',1,'audio_tools::AudioSourceIdxSD::AudioSourceIdxSD()']]],
+ ['audiosourceidxsdfat_126',['AudioSourceIdxSDFAT',['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html',1,'AudioSourceIdxSDFAT'],['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#aa93d3c8fec79725f28c9adf68aeb5c78',1,'audio_tools::AudioSourceIdxSDFAT::AudioSourceIdxSDFAT()']]],
+ ['audiosourceidxsdmmc_127',['AudioSourceIdxSDMMC',['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html',1,'AudioSourceIdxSDMMC'],['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html#ad7406c44c13168206a2f072a5c27d123',1,'audio_tools::AudioSourceIdxSDMMC::AudioSourceIdxSDMMC()']]],
+ ['audiosourcelittlefs_128',['AudioSourceLittleFS',['../classaudio__tools_1_1_audio_source_little_f_s.html',1,'AudioSourceLittleFS'],['../classaudio__tools_1_1_audio_source_little_f_s.html#a72f68241f8bfd35bbdb5f3f0fe94d25a',1,'audio_tools::AudioSourceLittleFS::AudioSourceLittleFS()']]],
+ ['audiosourcesd_129',['AudioSourceSD',['../classaudio__tools_1_1_audio_source_s_d.html',1,'AudioSourceSD'],['../classaudio__tools_1_1_audio_source_s_d.html#aab37cfb8e35d616335c7c56aa21ec3e6',1,'audio_tools::AudioSourceSD::AudioSourceSD()']]],
+ ['audiosourcesdfat_130',['AudioSourceSDFAT',['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html',1,'AudioSourceSDFAT'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a0c08ec9fb4fe7670b89a3e747c349c3e',1,'audio_tools::AudioSourceSDFAT::AudioSourceSDFAT(const char *startFilePath, const char *ext, SdSpiConfig &config, bool setupIndex=true)'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a9fa54034dcef9ee71d7f35c919f40ec9',1,'audio_tools::AudioSourceSDFAT::AudioSourceSDFAT(const char *startFilePath, const char *ext, SdSpiConfig &config)'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a6bda4ea31c9e0982368e6063a23cabb4',1,'audio_tools::AudioSourceSDFAT::AudioSourceSDFAT(const char *startFilePath="/", const char *ext=".mp3", int chipSelect=PIN_CS, int speedMHz=10, int spi_mode=DEDICATED_SPI, bool setupIndex=true)'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a7305e63e4c26b444ec50b9b05c169dd4',1,'audio_tools::AudioSourceSDFAT::AudioSourceSDFAT(const char *startFilePath="/", const char *ext=".mp3", int chipSelect=PIN_CS, int speedMHz=10)'],['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#a0c08ec9fb4fe7670b89a3e747c349c3e',1,'audio_tools::AudioSourceIdxSDFAT::AudioSourceSDFAT()']]],
+ ['audiosourcesdmmc_131',['AudioSourceSDMMC',['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html',1,'AudioSourceSDMMC'],['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html#a9ec33b3846c90d4cfd9098535ae2ae31',1,'audio_tools::AudioSourceSDMMC::AudioSourceSDMMC()']]],
+ ['audiosourcespiffs_132',['AudioSourceSPIFFS',['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html',1,'AudioSourceSPIFFS'],['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html#a064ecbfe9c67c85db67266f0e6da026a',1,'audio_tools::AudioSourceSPIFFS::AudioSourceSPIFFS()']]],
+ ['audiosourcestd_133',['AudioSourceSTD',['../classaudio__tools_1_1_audio_source_s_t_d.html',1,'AudioSourceSTD'],['../classaudio__tools_1_1_audio_source_s_t_d.html#a242edb5ddefdd20ce03542e05a254530',1,'audio_tools::AudioSourceSTD::AudioSourceSTD()']]],
+ ['audiosourceurl_134',['AudioSourceURL',['../classaudio__tools_1_1_audio_source_u_r_l.html',1,'audio_tools']]],
+ ['audiospdif_2eh_135',['AudioSPDIF.h',['../_audio_s_p_d_i_f_8h.html',1,'']]],
+ ['audiostream_136',['AudioStream',['../classaudio__tools_1_1_audio_stream.html',1,'audio_tools']]],
+ ['audiostreamwrapper_137',['AudioStreamWrapper',['../classaudio__tools_1_1_audio_stream_wrapper.html',1,'audio_tools']]],
+ ['audiosyncreader_138',['AudioSyncReader',['../classaudio__tools_1_1_audio_sync_reader.html',1,'audio_tools']]],
+ ['audiosyncwriter_139',['AudioSyncWriter',['../classaudio__tools_1_1_audio_sync_writer.html',1,'audio_tools']]],
+ ['audiotime_140',['AudioTime',['../classaudio__tools_1_1_audio_time.html',1,'audio_tools']]],
+ ['audiotools_2eh_141',['AudioTools.h',['../_audio_tools_8h.html',1,'']]],
+ ['audiowavserver_142',['AudioWAVServer',['../classaudio__tools_1_1_audio_w_a_v_server.html',1,'AudioWAVServer'],['../classaudio__tools_1_1_audio_w_a_v_server.html#ac74ed9f26576493d517f58d26137b28f',1,'audio_tools::AudioWAVServer::AudioWAVServer(int port=80)'],['../classaudio__tools_1_1_audio_w_a_v_server.html#a5b341c64814f84c39a5d3e0068d697fc',1,'audio_tools::AudioWAVServer::AudioWAVServer(const char *network, const char *password, int port=80)']]],
+ ['audiowavserverex_143',['AudioWAVServerEx',['../classaudio__tools_1_1_audio_w_a_v_server_ex.html',1,'AudioWAVServerEx'],['../classaudio__tools_1_1_audio_w_a_v_server_ex.html#a1544b00124e77a01a864435f05b029c4',1,'audio_tools::AudioWAVServerEx::AudioWAVServerEx()']]],
+ ['audiowriter_144',['AudioWriter',['../classaudio__tools_1_1_audio_writer.html',1,'audio_tools']]],
+ ['audiowritertoaudiooutput_145',['AudioWriterToAudioOutput',['../classaudio__tools_1_1_audio_writer_to_audio_output.html',1,'audio_tools']]],
+ ['available_146',['available',['../classaudio__tools_1_1_base_buffer.html#aebd60457902debb30b07971a16f24ebd',1,'audio_tools::BaseBuffer::available()'],['../classaudio__tools_1_1_volume_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::VolumeStream::available()'],['../classaudio__tools_1_1_stream_copy_t.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::StreamCopyT::available()'],['../classaudio__tools_1_1_n_buffer.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::NBuffer::available()'],['../classaudio__tools_1_1_ring_buffer_file.html#a692e2b18b3c2452e38e3f558ad87e9a5',1,'audio_tools::RingBufferFile::available()'],['../classaudio__tools_1_1_ring_buffer.html#a512cfced3ab951dde7a9a78f1274fe63',1,'audio_tools::RingBuffer::available()'],['../classaudio__tools_1_1_single_buffer.html#a692e2b18b3c2452e38e3f558ad87e9a5',1,'audio_tools::SingleBuffer::available()'],['../classaudio__tools_1_1_input_merge.html#a692e2b18b3c2452e38e3f558ad87e9a5',1,'audio_tools::InputMerge::available()'],['../classaudio__tools_1_1_converter_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::ConverterStream::available()'],['../classaudio__tools_1_1_buffered_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::BufferedStream::available()'],['../classaudio__tools_1_1_generated_sound_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::GeneratedSoundStream::available()'],['../classaudio__tools_1_1_timed_stream.html#a692e2b18b3c2452e38e3f558ad87e9a5',1,'audio_tools::TimedStream::available()'],['../classaudio__tools_1_1_u_d_p_stream.html#a692e2b18b3c2452e38e3f558ad87e9a5',1,'audio_tools::UDPStream::available()'],['../classaudio__tools_1_1_tf_lite_audio_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::TfLiteAudioStream::available()'],['../classaudio__tools_1_1_variable_speed_ring_buffer.html#a512cfced3ab951dde7a9a78f1274fe63',1,'audio_tools::VariableSpeedRingBuffer::available()'],['../classaudio__tools_1_1_variable_speed_ring_buffer180.html#a512cfced3ab951dde7a9a78f1274fe63',1,'audio_tools::VariableSpeedRingBuffer180::available()'],['../classaudio__tools_1_1_u_r_l_loader.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::URLLoader::available()'],['../classaudio__tools_1_1_i_c_y_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::ICYStream::available()'],['../classaudio__tools_1_1_buffered_task_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::BufferedTaskStream::available()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::I2SDriverESP32::available()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::I2SDriverESP8266::available()'],['../classaudio__tools_1_1_variable_speed_ring_buffer_simple.html#a512cfced3ab951dde7a9a78f1274fe63',1,'audio_tools::VariableSpeedRingBufferSimple::available()'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::I2SDriverSTM32::available()'],['../classaudio__tools_1_1_i2_s_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::I2SStream::available()'],['../classaudio__tools_1_1_audio_kit_stream.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::AudioKitStream::available()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::I2SDriverESP32V1::available()']]],
+ ['availablebytes_147',['availableBytes',['../classaudio__tools_1_1_input_mixer.html#a901b9bd204a4845e3e7e61ad47ef81a2',1,'audio_tools::InputMixer']]],
+ ['availableforwrite_148',['availableForWrite',['../classaudio__tools_1_1_output_mixer.html#a87b51853b7bf1bc90d9efa9f3b8d4fea',1,'audio_tools::OutputMixer::availableForWrite() override'],['../classaudio__tools_1_1_output_mixer.html#ad19e788ef2c620faad7b476ad50d7fd8',1,'audio_tools::OutputMixer::availableForWrite(int idx)'],['../classaudio__tools_1_1_measuring_stream.html#a6ff0d6d1b0f3f9b652c9d5298ed0863c',1,'audio_tools::MeasuringStream::availableForWrite()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#a87b51853b7bf1bc90d9efa9f3b8d4fea',1,'audio_tools::AudioFFTBase::availableForWrite()'],['../classaudio__tools_1_1_progress_stream.html#a6ff0d6d1b0f3f9b652c9d5298ed0863c',1,'audio_tools::ProgressStream::availableForWrite()'],['../classaudio__tools_1_1_base_buffer.html#a9953a7c3a981eb3a83adb4f9ecfb9ac5',1,'audio_tools::BaseBuffer::availableForWrite()'],['../classaudio__tools_1_1_single_buffer.html#a87b51853b7bf1bc90d9efa9f3b8d4fea',1,'audio_tools::SingleBuffer::availableForWrite()'],['../classaudio__tools_1_1_ring_buffer.html#a473a08fbb41a997860a55213bc367d44',1,'audio_tools::RingBuffer::availableForWrite()'],['../classaudio__tools_1_1_ring_buffer_file.html#a87b51853b7bf1bc90d9efa9f3b8d4fea',1,'audio_tools::RingBufferFile::availableForWrite()'],['../classaudio__tools_1_1_n_buffer.html#a86aa7db83a28e2662e01c57a36681cb0',1,'audio_tools::NBuffer::availableForWrite()'],['../classaudio__tools_1_1_volume_stream.html#a6ff0d6d1b0f3f9b652c9d5298ed0863c',1,'audio_tools::VolumeStream::availableForWrite()'],['../classaudio__tools_1_1_u_d_p_stream.html#a86aa7db83a28e2662e01c57a36681cb0',1,'audio_tools::UDPStream::availableForWrite()'],['../classaudio__tools_1_1_variable_speed_ring_buffer_simple.html#a473a08fbb41a997860a55213bc367d44',1,'audio_tools::VariableSpeedRingBufferSimple::availableForWrite()'],['../classaudio__tools_1_1_variable_speed_ring_buffer180.html#a473a08fbb41a997860a55213bc367d44',1,'audio_tools::VariableSpeedRingBuffer180::availableForWrite()'],['../classaudio__tools_1_1_variable_speed_ring_buffer.html#a473a08fbb41a997860a55213bc367d44',1,'audio_tools::VariableSpeedRingBuffer::availableForWrite()'],['../classaudio__tools_1_1_abstract_u_r_l_stream.html#a87b51853b7bf1bc90d9efa9f3b8d4fea',1,'audio_tools::AbstractURLStream::availableForWrite()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32.html#a86aa7db83a28e2662e01c57a36681cb0',1,'audio_tools::I2SDriverESP32::availableForWrite()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#a86aa7db83a28e2662e01c57a36681cb0',1,'audio_tools::I2SDriverESP32V1::availableForWrite()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#a86aa7db83a28e2662e01c57a36681cb0',1,'audio_tools::I2SDriverESP8266::availableForWrite()'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#a86aa7db83a28e2662e01c57a36681cb0',1,'audio_tools::I2SDriverSTM32::availableForWrite()'],['../classaudio__tools_1_1_i2_s_stream.html#a6ff0d6d1b0f3f9b652c9d5298ed0863c',1,'audio_tools::I2SStream::availableForWrite()'],['../classaudio__tools_1_1_mozzi_stream.html#a473a08fbb41a997860a55213bc367d44',1,'audio_tools::MozziStream::availableForWrite()'],['../classaudio__tools_1_1_r_t_s_p_output.html#a86aa7db83a28e2662e01c57a36681cb0',1,'audio_tools::RTSPOutput::availableForWrite()']]],
+ ['availabletowrite_149',['availableToWrite',['../classaudio__tools_1_1_tf_lite_audio_stream.html#af3f33ecee7917f696d36797ab0ff8617',1,'audio_tools::TfLiteAudioStream']]],
+ ['aviaudioinfo_150',['aviAudioInfo',['../classaudio__tools_1_1_a_v_i_decoder.html#ae9b14384a2500a6d469ab34a4e642af6',1,'audio_tools::AVIDecoder']]],
+ ['avidecoder_151',['AVIDecoder',['../classaudio__tools_1_1_a_v_i_decoder.html',1,'audio_tools']]],
+ ['avimainheader_152',['AVIMainHeader',['../structaudio__tools_1_1_a_v_i_main_header.html',1,'audio_tools']]],
+ ['avistreamheader_153',['AVIStreamHeader',['../structaudio__tools_1_1_a_v_i_stream_header.html',1,'audio_tools']]],
+ ['avivideoinfo_154',['aviVideoInfo',['../classaudio__tools_1_1_a_v_i_decoder.html#aaef28edae57ceea8bfc418bd51835aaf',1,'audio_tools::AVIDecoder']]]
];
diff --git a/search/all_17.js b/search/all_17.js
index a14614bc2d..054732b319 100644
--- a/search/all_17.js
+++ b/search/all_17.js
@@ -18,20 +18,21 @@ var searchData=
['wire_1365',['wire',['../classaudio__tools_1_1_w_m8960_config.html#ab8d8f9af97a698a5a73132c347acbaf4',1,'audio_tools::WM8960Config']]],
['wm8960config_1366',['WM8960Config',['../classaudio__tools_1_1_w_m8960_config.html',1,'audio_tools']]],
['wm8960stream_1367',['WM8960Stream',['../classaudio__tools_1_1_w_m8960_stream.html',1,'audio_tools']]],
- ['write_1368',['write',['../classaudio__tools_1_1_meta_data_i_d3_v1.html#afd7270e10d851383ff7b53c1241f6ba1',1,'audio_tools::MetaDataID3V1::write()'],['../classaudio__tools_1_1_meta_data_i_c_y.html#aae89c571048794f27f3cb5fcc7e8b87b',1,'audio_tools::MetaDataICY::write()'],['../classaudio__tools_1_1_meta_data_filter.html#a7247dbfe416d15659671ab1561d76739',1,'audio_tools::MetaDataFilter::write()'],['../classaudio__tools_1_1_meta_data_i_d3_v2.html#afd7270e10d851383ff7b53c1241f6ba1',1,'audio_tools::MetaDataID3V2::write()'],['../classaudio__tools_1_1_meta_data_output.html#a0bc4cb6e5fbb01c214120c7a98ca47bb',1,'audio_tools::MetaDataOutput::write()'],['../classaudio__tools_1_1_v_s1053_stream.html#ae74e483484f1f059fc9ee780b1a7cc29',1,'audio_tools::VS1053Stream::write()'],['../classaudio__tools_1_1_tf_lite_audio_stream.html#a8c9b62168557af21ef8ded031747ddd5',1,'audio_tools::TfLiteAudioStream::write()'],['../classaudio__tools_1_1_tf_lite_audio_stream_base.html#a6e5c54247d654a08f84b46f61abbf2a2',1,'audio_tools::TfLiteAudioStreamBase::write()'],['../classaudio__tools_1_1_r_t_s_p_output.html#ad91d65aa5a5911f5533d8d0e44133cc6',1,'audio_tools::RTSPOutput::write()'],['../classaudio__tools_1_1_u_d_p_stream.html#a183cb7a3c6dce3202f9a4c205bd09e11',1,'audio_tools::UDPStream::write()'],['../classaudio__tools_1_1_e_s_p_now_stream.html#a7597ef706dd1aa590903ce9e095db20a',1,'audio_tools::ESPNowStream::write()'],['../classaudio__tools_1_1_audio_server_ex.html#a7597ef706dd1aa590903ce9e095db20a',1,'audio_tools::AudioServerEx::write()'],['../classaudio__tools_1_1_mozzi_stream.html#ab951bb19f06d4e5151474659cfdfd807',1,'audio_tools::MozziStream::write()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#a7597ef706dd1aa590903ce9e095db20a',1,'audio_tools::AudioFFTBase::write()'],['../classaudio__tools_1_1_faust_stream.html#afb17c26f4788c43eaeaea97bc935343d',1,'audio_tools::FaustStream::write()'],['../classaudio__tools_1_1_http_request.html#af1940d609c13ffaee3c71a906fbac31f',1,'audio_tools::HttpRequest::write()'],['../classaudio__tools_1_1_a2_d_p_stream.html#a7597ef706dd1aa590903ce9e095db20a',1,'audio_tools::A2DPStream::write()'],['../classaudio__tools_1_1_progress_stream.html#ae74e483484f1f059fc9ee780b1a7cc29',1,'audio_tools::ProgressStream::write()'],['../classaudio__tools_1_1_volume_stream.html#ae74e483484f1f059fc9ee780b1a7cc29',1,'audio_tools::VolumeStream::write()'],['../classaudio__tools_1_1_stream_copy_t.html#a41290aaf7225cf713948222a05e9494b',1,'audio_tools::StreamCopyT::write()'],['../classaudio__tools_1_1_resample_stream.html#a0284c414da66b48385a66b676b2e2356',1,'audio_tools::ResampleStream::write()'],['../classaudio__tools_1_1_n_buffer.html#a5a7b764c471a4ddcd2ffc3893769c874',1,'audio_tools::NBuffer::write()'],['../classaudio__tools_1_1_ring_buffer_file.html#a7098400d9e88b57179cee1fbd589601d',1,'audio_tools::RingBufferFile::write()'],['../classaudio__tools_1_1_ring_buffer.html#a762c87ce3d749ba209ff05e6af210be5',1,'audio_tools::RingBuffer::write()'],['../classaudio__tools_1_1_single_buffer.html#a297f30ced5108b4589f5aa46ef366b7b',1,'audio_tools::SingleBuffer::write()'],['../classaudio__tools_1_1_base_buffer.html#add0fdb7ecaaeadb3a231119d7d602311',1,'audio_tools::BaseBuffer::write()'],['../classaudio__tools_1_1_meta_data_i_d3.html#a0bc4cb6e5fbb01c214120c7a98ca47bb',1,'audio_tools::MetaDataID3::write()'],['../classaudio__tools_1_1_measuring_stream.html#ae74e483484f1f059fc9ee780b1a7cc29',1,'audio_tools::MeasuringStream::write()'],['../classaudio__tools_1_1_buffered_stream.html#a016bb39af201e717c1975551b7ecc1b3',1,'audio_tools::BufferedStream::write(const uint8_t *data, size_t len) override'],['../classaudio__tools_1_1_buffered_stream.html#aaf33c44b7e9ab693bc5e2f5f501f4747',1,'audio_tools::BufferedStream::write(uint8_t c) override'],['../classaudio__tools_1_1_s_p_d_i_f_output.html#ac2b8b03ece84865865c2e918dfcafe12',1,'audio_tools::SPDIFOutput::write()'],['../classaudio__tools_1_1_output_mixer.html#a69fce743755f71ed4b89417b0a8f3408',1,'audio_tools::OutputMixer::write(int idx, const uint8_t *buffer_c, size_t bytes)'],['../classaudio__tools_1_1_output_mixer.html#a91c8fc5c52681e7c3fae7f0fa4c8b3ed',1,'audio_tools::OutputMixer::write(const uint8_t *buffer_c, size_t bytes) override'],['../classaudio__tools_1_1_csv_output.html#a016bb39af201e717c1975551b7ecc1b3',1,'audio_tools::CsvOutput::write()'],['../classaudio__tools_1_1_timed_stream.html#af39b27e52134485635e8d670c47ab365',1,'audio_tools::TimedStream::write()'],['../classaudio__tools_1_1_encoder_base64.html#a109253af7e76210d9e79971cbaf774b6',1,'audio_tools::EncoderBase64::write()'],['../classaudio__tools_1_1_m_p3_decoder_helix.html#ac4a3ffc04adff8a2d008116bbd5150a4',1,'audio_tools::MP3DecoderHelix::write()'],['../classaudio__tools_1_1_encoder_l8.html#ac9df001cacfb1816fb8f2cf871450c4a',1,'audio_tools::EncoderL8::write()'],['../classaudio__tools_1_1_encoder_l16.html#a1b29912258e11751cfa24707a4e328ca',1,'audio_tools::EncoderL16::write()'],['../classaudio__tools_1_1_decoder_helix.html#a2685d88d9d964c749bce462858634b6e',1,'audio_tools::DecoderHelix::write()'],['../classaudio__tools_1_1_encoder_float.html#a1b29912258e11751cfa24707a4e328ca',1,'audio_tools::EncoderFloat::write()'],['../classaudio__tools_1_1_decoder_float.html#aeb37cdb728cff1e60e8d7309d8baa08a',1,'audio_tools::DecoderFloat::write()'],['../classaudio__tools_1_1_f_l_a_c_encoder.html#a1b29912258e11751cfa24707a4e328ca',1,'audio_tools::FLACEncoder::write()'],['../classaudio__tools_1_1_encoder_basic.html#a1b29912258e11751cfa24707a4e328ca',1,'audio_tools::EncoderBasic::write()'],['../classaudio__tools_1_1_buffered_task_stream.html#a016bb39af201e717c1975551b7ecc1b3',1,'audio_tools::BufferedTaskStream::write()'],['../classaudio__tools_1_1_a_d_t_s_decoder.html#a1a770cfd1c8d336bdf8eaea18028db6d',1,'audio_tools::ADTSDecoder::write()'],['../classaudio__tools_1_1_a_a_c_decoder_helix.html#a11f4323fb39ca0ba4a703465ae04e542',1,'audio_tools::AACDecoderHelix::write()'],['../classaudio__tools_1_1_a_a_c_decoder_f_a_a_d.html#ade6ec60e71760083752b4949e68b59c9',1,'audio_tools::AACDecoderFAAD::write()'],['../classaudio__tools_1_1_encoded_audio_output.html#a016bb39af201e717c1975551b7ecc1b3',1,'audio_tools::EncodedAudioOutput::write()'],['../classaudio__tools_1_1_analog_driver_m_b_e_d.html#a360ffe5435df7f910720c0f3faa04dee',1,'audio_tools::AnalogDriverMBED::write()'],['../classaudio__tools_1_1_analog_driver_e_s_p32_v1.html#a360ffe5435df7f910720c0f3faa04dee',1,'audio_tools::AnalogDriverESP32V1::write()'],['../classaudio__tools_1_1_analog_driver_e_s_p32.html#a360ffe5435df7f910720c0f3faa04dee',1,'audio_tools::AnalogDriverESP32::write()'],['../classaudio__tools_1_1_analog_audio_stream.html#a360ffe5435df7f910720c0f3faa04dee',1,'audio_tools::AnalogAudioStream::write()'],['../classaudio__tools_1_1_audio_effect_stream_t.html#af39b27e52134485635e8d670c47ab365',1,'audio_tools::AudioEffectStreamT::write()'],['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#a2685d88d9d964c749bce462858634b6e',1,'audio_tools::MP3DecoderMAD::write()'],['../classaudio__tools_1_1_i2_s_stream.html#a2ea68b231c423a554ea84d14f88e271e',1,'audio_tools::I2SStream::write()'],['../classaudio__tools_1_1_buffered_task_stream.html#aaf33c44b7e9ab693bc5e2f5f501f4747',1,'audio_tools::BufferedTaskStream::write()'],['../classaudio__tools_1_1_http_header.html#a85a50bfb440e119c8740b9f37334a401',1,'audio_tools::HttpHeader::write()'],['../classaudio__tools_1_1_variable_speed_ring_buffer.html#a9f7e466737f4b476929238c84dd6e923',1,'audio_tools::VariableSpeedRingBuffer::write()'],['../classaudio__tools_1_1_variable_speed_ring_buffer180.html#a9f7e466737f4b476929238c84dd6e923',1,'audio_tools::VariableSpeedRingBuffer180::write()'],['../classaudio__tools_1_1_variable_speed_ring_buffer_simple.html#a9f7e466737f4b476929238c84dd6e923',1,'audio_tools::VariableSpeedRingBufferSimple::write()'],['../classaudio__tools_1_1_ogg_container_encoder.html#a1b29912258e11751cfa24707a4e328ca',1,'audio_tools::OggContainerEncoder::write()'],['../classaudio__tools_1_1_ogg_container_output.html#a59bfbf3ae12454d43d363e60e0e98824',1,'audio_tools::OggContainerOutput::write()'],['../classaudio__tools_1_1_container_m_p4.html#af1ee46b5654a0a16612efb1a89d44d0f',1,'audio_tools::ContainerMP4::write()'],['../classaudio__tools_1_1_binary_container_encoder.html#a2685d88d9d964c749bce462858634b6e',1,'audio_tools::BinaryContainerEncoder::write()'],['../classaudio__tools_1_1_w_a_v_encoder.html#a1b29912258e11751cfa24707a4e328ca',1,'audio_tools::WAVEncoder::write()'],['../classaudio__tools_1_1_w_a_v_header.html#ac5337a69587f5346c0cd64349b2add13',1,'audio_tools::WAVHeader::write()'],['../classaudio__tools_1_1_opus_audio_encoder.html#ac9df001cacfb1816fb8f2cf871450c4a',1,'audio_tools::OpusAudioEncoder::write()'],['../classaudio__tools_1_1_m_p3_decoder_mini.html#a2685d88d9d964c749bce462858634b6e',1,'audio_tools::MP3DecoderMini::write()'],['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#a706ebbcf51b12fecae232566409223ad',1,'audio_tools::MP3DecoderMAD::write()']]],
+ ['write_1368',['write',['../classaudio__tools_1_1_meta_data_i_d3_v1.html#afd7270e10d851383ff7b53c1241f6ba1',1,'audio_tools::MetaDataID3V1::write()'],['../classaudio__tools_1_1_meta_data_i_c_y.html#aae89c571048794f27f3cb5fcc7e8b87b',1,'audio_tools::MetaDataICY::write()'],['../classaudio__tools_1_1_meta_data_i_d3_v2.html#afd7270e10d851383ff7b53c1241f6ba1',1,'audio_tools::MetaDataID3V2::write()'],['../classaudio__tools_1_1_meta_data_filter.html#a7247dbfe416d15659671ab1561d76739',1,'audio_tools::MetaDataFilter::write()'],['../classaudio__tools_1_1_meta_data_output.html#a0bc4cb6e5fbb01c214120c7a98ca47bb',1,'audio_tools::MetaDataOutput::write()'],['../classaudio__tools_1_1_v_s1053_stream.html#ae74e483484f1f059fc9ee780b1a7cc29',1,'audio_tools::VS1053Stream::write()'],['../classaudio__tools_1_1_tf_lite_audio_stream.html#a8c9b62168557af21ef8ded031747ddd5',1,'audio_tools::TfLiteAudioStream::write()'],['../classaudio__tools_1_1_tf_lite_audio_stream_base.html#a6e5c54247d654a08f84b46f61abbf2a2',1,'audio_tools::TfLiteAudioStreamBase::write()'],['../classaudio__tools_1_1_r_t_s_p_output.html#ad91d65aa5a5911f5533d8d0e44133cc6',1,'audio_tools::RTSPOutput::write()'],['../classaudio__tools_1_1_u_d_p_stream.html#a183cb7a3c6dce3202f9a4c205bd09e11',1,'audio_tools::UDPStream::write()'],['../classaudio__tools_1_1_e_s_p_now_stream.html#a7597ef706dd1aa590903ce9e095db20a',1,'audio_tools::ESPNowStream::write()'],['../classaudio__tools_1_1_audio_server_ex.html#a7597ef706dd1aa590903ce9e095db20a',1,'audio_tools::AudioServerEx::write()'],['../classaudio__tools_1_1_mozzi_stream.html#ab951bb19f06d4e5151474659cfdfd807',1,'audio_tools::MozziStream::write()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#a7597ef706dd1aa590903ce9e095db20a',1,'audio_tools::AudioFFTBase::write()'],['../classaudio__tools_1_1_faust_stream.html#afb17c26f4788c43eaeaea97bc935343d',1,'audio_tools::FaustStream::write()'],['../classaudio__tools_1_1_buffered_task_stream.html#aaf33c44b7e9ab693bc5e2f5f501f4747',1,'audio_tools::BufferedTaskStream::write()'],['../classaudio__tools_1_1_a2_d_p_stream.html#a7597ef706dd1aa590903ce9e095db20a',1,'audio_tools::A2DPStream::write()'],['../classaudio__tools_1_1_progress_stream.html#ae74e483484f1f059fc9ee780b1a7cc29',1,'audio_tools::ProgressStream::write()'],['../classaudio__tools_1_1_volume_stream.html#ae74e483484f1f059fc9ee780b1a7cc29',1,'audio_tools::VolumeStream::write()'],['../classaudio__tools_1_1_stream_copy_t.html#a41290aaf7225cf713948222a05e9494b',1,'audio_tools::StreamCopyT::write()'],['../classaudio__tools_1_1_resample_stream.html#a0284c414da66b48385a66b676b2e2356',1,'audio_tools::ResampleStream::write()'],['../classaudio__tools_1_1_n_buffer.html#a5a7b764c471a4ddcd2ffc3893769c874',1,'audio_tools::NBuffer::write()'],['../classaudio__tools_1_1_ring_buffer_file.html#a7098400d9e88b57179cee1fbd589601d',1,'audio_tools::RingBufferFile::write()'],['../classaudio__tools_1_1_ring_buffer.html#a762c87ce3d749ba209ff05e6af210be5',1,'audio_tools::RingBuffer::write()'],['../classaudio__tools_1_1_single_buffer.html#a297f30ced5108b4589f5aa46ef366b7b',1,'audio_tools::SingleBuffer::write()'],['../classaudio__tools_1_1_base_buffer.html#add0fdb7ecaaeadb3a231119d7d602311',1,'audio_tools::BaseBuffer::write()'],['../classaudio__tools_1_1_meta_data_i_d3.html#a0bc4cb6e5fbb01c214120c7a98ca47bb',1,'audio_tools::MetaDataID3::write()'],['../classaudio__tools_1_1_measuring_stream.html#ae74e483484f1f059fc9ee780b1a7cc29',1,'audio_tools::MeasuringStream::write()'],['../classaudio__tools_1_1_buffered_stream.html#a016bb39af201e717c1975551b7ecc1b3',1,'audio_tools::BufferedStream::write(const uint8_t *data, size_t len) override'],['../classaudio__tools_1_1_buffered_stream.html#aaf33c44b7e9ab693bc5e2f5f501f4747',1,'audio_tools::BufferedStream::write(uint8_t c) override'],['../classaudio__tools_1_1_s_p_d_i_f_output.html#ac2b8b03ece84865865c2e918dfcafe12',1,'audio_tools::SPDIFOutput::write()'],['../classaudio__tools_1_1_output_mixer.html#a69fce743755f71ed4b89417b0a8f3408',1,'audio_tools::OutputMixer::write(int idx, const uint8_t *buffer_c, size_t bytes)'],['../classaudio__tools_1_1_output_mixer.html#a91c8fc5c52681e7c3fae7f0fa4c8b3ed',1,'audio_tools::OutputMixer::write(const uint8_t *buffer_c, size_t bytes) override'],['../classaudio__tools_1_1_csv_output.html#a016bb39af201e717c1975551b7ecc1b3',1,'audio_tools::CsvOutput::write()'],['../classaudio__tools_1_1_timed_stream.html#af39b27e52134485635e8d670c47ab365',1,'audio_tools::TimedStream::write()'],['../classaudio__tools_1_1_encoder_base64.html#a109253af7e76210d9e79971cbaf774b6',1,'audio_tools::EncoderBase64::write()'],['../classaudio__tools_1_1_m_p3_decoder_helix.html#ac4a3ffc04adff8a2d008116bbd5150a4',1,'audio_tools::MP3DecoderHelix::write()'],['../classaudio__tools_1_1_encoder_l8.html#ac9df001cacfb1816fb8f2cf871450c4a',1,'audio_tools::EncoderL8::write()'],['../classaudio__tools_1_1_encoder_l16.html#a1b29912258e11751cfa24707a4e328ca',1,'audio_tools::EncoderL16::write()'],['../classaudio__tools_1_1_decoder_helix.html#a2685d88d9d964c749bce462858634b6e',1,'audio_tools::DecoderHelix::write()'],['../classaudio__tools_1_1_encoder_float.html#a1b29912258e11751cfa24707a4e328ca',1,'audio_tools::EncoderFloat::write()'],['../classaudio__tools_1_1_decoder_float.html#aeb37cdb728cff1e60e8d7309d8baa08a',1,'audio_tools::DecoderFloat::write()'],['../classaudio__tools_1_1_f_l_a_c_encoder.html#a1b29912258e11751cfa24707a4e328ca',1,'audio_tools::FLACEncoder::write()'],['../classaudio__tools_1_1_encoder_basic.html#a1b29912258e11751cfa24707a4e328ca',1,'audio_tools::EncoderBasic::write()'],['../classaudio__tools_1_1_buffered_task_stream.html#a016bb39af201e717c1975551b7ecc1b3',1,'audio_tools::BufferedTaskStream::write()'],['../classaudio__tools_1_1_a_d_t_s_decoder.html#a1a770cfd1c8d336bdf8eaea18028db6d',1,'audio_tools::ADTSDecoder::write()'],['../classaudio__tools_1_1_a_a_c_decoder_helix.html#a11f4323fb39ca0ba4a703465ae04e542',1,'audio_tools::AACDecoderHelix::write()'],['../classaudio__tools_1_1_a_a_c_decoder_f_a_a_d.html#ade6ec60e71760083752b4949e68b59c9',1,'audio_tools::AACDecoderFAAD::write()'],['../classaudio__tools_1_1_encoded_audio_output.html#a016bb39af201e717c1975551b7ecc1b3',1,'audio_tools::EncodedAudioOutput::write()'],['../classaudio__tools_1_1_analog_driver_m_b_e_d.html#a360ffe5435df7f910720c0f3faa04dee',1,'audio_tools::AnalogDriverMBED::write()'],['../classaudio__tools_1_1_analog_driver_e_s_p32_v1.html#a360ffe5435df7f910720c0f3faa04dee',1,'audio_tools::AnalogDriverESP32V1::write()'],['../classaudio__tools_1_1_analog_driver_e_s_p32.html#a360ffe5435df7f910720c0f3faa04dee',1,'audio_tools::AnalogDriverESP32::write()'],['../classaudio__tools_1_1_analog_audio_stream.html#a360ffe5435df7f910720c0f3faa04dee',1,'audio_tools::AnalogAudioStream::write()'],['../classaudio__tools_1_1_variable_speed_ring_buffer_simple.html#a9f7e466737f4b476929238c84dd6e923',1,'audio_tools::VariableSpeedRingBufferSimple::write()'],['../classaudio__tools_1_1_i2_s_stream.html#a2ea68b231c423a554ea84d14f88e271e',1,'audio_tools::I2SStream::write()'],['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#a2685d88d9d964c749bce462858634b6e',1,'audio_tools::MP3DecoderMAD::write()'],['../classaudio__tools_1_1_http_request.html#af1940d609c13ffaee3c71a906fbac31f',1,'audio_tools::HttpRequest::write()'],['../classaudio__tools_1_1_http_header.html#a85a50bfb440e119c8740b9f37334a401',1,'audio_tools::HttpHeader::write()'],['../classaudio__tools_1_1_variable_speed_ring_buffer.html#a9f7e466737f4b476929238c84dd6e923',1,'audio_tools::VariableSpeedRingBuffer::write()'],['../classaudio__tools_1_1_variable_speed_ring_buffer180.html#a9f7e466737f4b476929238c84dd6e923',1,'audio_tools::VariableSpeedRingBuffer180::write()'],['../classaudio__tools_1_1_audio_effect_stream_t.html#af39b27e52134485635e8d670c47ab365',1,'audio_tools::AudioEffectStreamT::write()'],['../classaudio__tools_1_1_ogg_container_encoder.html#a1b29912258e11751cfa24707a4e328ca',1,'audio_tools::OggContainerEncoder::write()'],['../classaudio__tools_1_1_ogg_container_output.html#a59bfbf3ae12454d43d363e60e0e98824',1,'audio_tools::OggContainerOutput::write()'],['../classaudio__tools_1_1_container_m_p4.html#af1ee46b5654a0a16612efb1a89d44d0f',1,'audio_tools::ContainerMP4::write()'],['../classaudio__tools_1_1_binary_container_encoder.html#a2685d88d9d964c749bce462858634b6e',1,'audio_tools::BinaryContainerEncoder::write()'],['../classaudio__tools_1_1_w_a_v_encoder.html#a1b29912258e11751cfa24707a4e328ca',1,'audio_tools::WAVEncoder::write()'],['../classaudio__tools_1_1_w_a_v_header.html#ac5337a69587f5346c0cd64349b2add13',1,'audio_tools::WAVHeader::write()'],['../classaudio__tools_1_1_opus_audio_encoder.html#ac9df001cacfb1816fb8f2cf871450c4a',1,'audio_tools::OpusAudioEncoder::write()'],['../classaudio__tools_1_1_m_p3_decoder_mini.html#a2685d88d9d964c749bce462858634b6e',1,'audio_tools::MP3DecoderMini::write()'],['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#a706ebbcf51b12fecae232566409223ad',1,'audio_tools::MP3DecoderMAD::write()']]],
['write1_1369',['write1',['../classaudio__tools_1_1_tf_lite_micro_speach_writer.html#aa0216b27084c7453b3587e43e3fdb3fc',1,'audio_tools::TfLiteMicroSpeachWriter']]],
['write_5fcallback_1370',['write_callback',['../classaudio__tools_1_1_f_l_a_c_decoder.html#ad65b9acb1c0c9401aacf5e711c2c6cf7',1,'audio_tools::FLACDecoder']]],
- ['writearray_1371',['writeArray',['../classaudio__tools_1_1_ring_buffer_file.html#aad1958ec38b63a35ddc8209d646f1ed0',1,'audio_tools::RingBufferFile::writeArray()'],['../classaudio__tools_1_1_base_buffer.html#a2b6c561aac2af64aafac1946b6e46393',1,'audio_tools::BaseBuffer::writeArray(const T data[], int len)']]],
+ ['writearray_1371',['writeArray',['../classaudio__tools_1_1_base_buffer.html#a2b6c561aac2af64aafac1946b6e46393',1,'audio_tools::BaseBuffer::writeArray()'],['../classaudio__tools_1_1_ring_buffer_file.html#aad1958ec38b63a35ddc8209d646f1ed0',1,'audio_tools::RingBufferFile::writeArray()']]],
['writearrayoverwrite_1372',['writeArrayOverwrite',['../classaudio__tools_1_1_base_buffer.html#a4d3100be7fa69e3ddd9896141f143c99',1,'audio_tools::BaseBuffer']]],
- ['writeaudio_1373',['writeAudio',['../classaudio__tools_1_1_video_audio_sync.html#aa689e59e312ea8466171526e60d85f9e',1,'audio_tools::VideoAudioSync::writeAudio()'],['../classaudio__tools_1_1_video_audio_buffered_sync.html#ac3cf31a4852aa3d77849a3b64904083a',1,'audio_tools::VideoAudioBufferedSync::writeAudio()']]],
+ ['writeaudio_1373',['writeAudio',['../classaudio__tools_1_1_video_audio_buffered_sync.html#ac3cf31a4852aa3d77849a3b64904083a',1,'audio_tools::VideoAudioBufferedSync::writeAudio()'],['../classaudio__tools_1_1_video_audio_sync.html#aa689e59e312ea8466171526e60d85f9e',1,'audio_tools::VideoAudioSync::writeAudio()']]],
['writebuffer_1374',['writeBuffer',['../classaudio__tools_1_1_analog_driver_m_b_e_d.html#ae8b9b72550fdea4fd2fa6c8c2c9cb7f9',1,'audio_tools::AnalogDriverMBED']]],
- ['writebytes_1375',['writeBytes',['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#ae2a2bf0126c0c1fd4baa01f858ffd4d0',1,'audio_tools::I2SDriverESP32V1::writeBytes()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#ae2a2bf0126c0c1fd4baa01f858ffd4d0',1,'audio_tools::I2SDriverESP8266::writeBytes()'],['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#ae2a2bf0126c0c1fd4baa01f858ffd4d0',1,'audio_tools::I2SDriverNanoBLE::writeBytes()'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#ae2a2bf0126c0c1fd4baa01f858ffd4d0',1,'audio_tools::I2SDriverSTM32::writeBytes()']]],
+ ['writebytes_1375',['writeBytes',['../classaudio__tools_1_1_i2_s_driver_e_s_p32.html#ae2a2bf0126c0c1fd4baa01f858ffd4d0',1,'audio_tools::I2SDriverESP32::writeBytes()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#ae2a2bf0126c0c1fd4baa01f858ffd4d0',1,'audio_tools::I2SDriverESP32V1::writeBytes()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#ae2a2bf0126c0c1fd4baa01f858ffd4d0',1,'audio_tools::I2SDriverESP8266::writeBytes()'],['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#ae2a2bf0126c0c1fd4baa01f858ffd4d0',1,'audio_tools::I2SDriverNanoBLE::writeBytes()'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#ae2a2bf0126c0c1fd4baa01f858ffd4d0',1,'audio_tools::I2SDriverSTM32::writeBytes()']]],
['writedata_1376',['writeData',['../classaudio__tools_1_1_a_p_t_x_decoder.html#afcfdf8cac8adf3cecd498347d2fbcc61',1,'audio_tools::APTXDecoder']]],
- ['writeext_1377',['writeExt',['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#a99a8f1db5a1afb834903480ab1e6913c',1,'audio_tools::I2SDriverESP8266']]],
- ['writefromreceive_1378',['writeFromReceive',['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#a79908b9928cf48bb309f19dbdf2fa4f9',1,'audio_tools::I2SDriverSTM32']]],
- ['writeheader_1379',['writeHeader',['../classaudio__tools_1_1_w_a_v_header.html#ac012624c961a3cdd2f76933fed3c2f65',1,'audio_tools::WAVHeader']]],
- ['writemeta_1380',['writeMeta',['../classaudio__tools_1_1_binary_container_encoder.html#a43a30da913185727325494f8d559f939',1,'audio_tools::BinaryContainerEncoder']]],
- ['writesamples_1381',['writeSamples',['../namespaceaudio__tools.html#ae4bf1846916254f6051fdf1437159163',1,'audio_tools']]],
- ['writesilence_1382',['writeSilence',['../classaudio__tools_1_1_audio_output.html#ad89418aeb557f65a8f1a0aed755633b1',1,'audio_tools::AudioOutput::writeSilence()'],['../classaudio__tools_1_1_audio_stream.html#ad89418aeb557f65a8f1a0aed755633b1',1,'audio_tools::AudioStream::writeSilence()']]],
- ['writet_1383',['writeT',['../classaudio__tools_1_1_faust_stream.html#ac4da9f76fd157970e06fda582c52008a',1,'audio_tools::FaustStream']]]
+ ['writeexpandchannel_1377',['writeExpandChannel',['../classaudio__tools_1_1_i2_s_driver_e_s_p32.html#a02fbc21599be69326c5e97c693978adc',1,'audio_tools::I2SDriverESP32']]],
+ ['writeext_1378',['writeExt',['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#a99a8f1db5a1afb834903480ab1e6913c',1,'audio_tools::I2SDriverESP8266']]],
+ ['writefromreceive_1379',['writeFromReceive',['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#a79908b9928cf48bb309f19dbdf2fa4f9',1,'audio_tools::I2SDriverSTM32']]],
+ ['writeheader_1380',['writeHeader',['../classaudio__tools_1_1_w_a_v_header.html#ac012624c961a3cdd2f76933fed3c2f65',1,'audio_tools::WAVHeader']]],
+ ['writemeta_1381',['writeMeta',['../classaudio__tools_1_1_binary_container_encoder.html#a43a30da913185727325494f8d559f939',1,'audio_tools::BinaryContainerEncoder']]],
+ ['writesamples_1382',['writeSamples',['../namespaceaudio__tools.html#ae4bf1846916254f6051fdf1437159163',1,'audio_tools']]],
+ ['writesilence_1383',['writeSilence',['../classaudio__tools_1_1_audio_output.html#ad89418aeb557f65a8f1a0aed755633b1',1,'audio_tools::AudioOutput::writeSilence()'],['../classaudio__tools_1_1_audio_stream.html#ad89418aeb557f65a8f1a0aed755633b1',1,'audio_tools::AudioStream::writeSilence()']]],
+ ['writet_1384',['writeT',['../classaudio__tools_1_1_faust_stream.html#ac4da9f76fd157970e06fda582c52008a',1,'audio_tools::FaustStream']]]
];
diff --git a/search/all_18.js b/search/all_18.js
index 52da25d63e..e58a61fb0a 100644
--- a/search/all_18.js
+++ b/search/all_18.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['x_1384',['x',['../structaudio__tools_1_1_l_e_d_output_config.html#a6150e0515f7202e2fb518f7206ed97dc',1,'audio_tools::LEDOutputConfig::x()'],['../structaudio__tools_1_1_l_e_d_output_uno_r4_config.html#a6150e0515f7202e2fb518f7206ed97dc',1,'audio_tools::LEDOutputUnoR4Config::x()']]]
+ ['x_1385',['x',['../structaudio__tools_1_1_l_e_d_output_config.html#a6150e0515f7202e2fb518f7206ed97dc',1,'audio_tools::LEDOutputConfig::x()'],['../structaudio__tools_1_1_l_e_d_output_uno_r4_config.html#a6150e0515f7202e2fb518f7206ed97dc',1,'audio_tools::LEDOutputUnoR4Config::x()']]]
];
diff --git a/search/all_19.js b/search/all_19.js
index f5814a988f..930212df26 100644
--- a/search/all_19.js
+++ b/search/all_19.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['y_1385',['y',['../structaudio__tools_1_1_l_e_d_output_config.html#a0a2f84ed7838f07779ae24c5a9086d33',1,'audio_tools::LEDOutputConfig::y()'],['../structaudio__tools_1_1_l_e_d_output_uno_r4_config.html#a0a2f84ed7838f07779ae24c5a9086d33',1,'audio_tools::LEDOutputUnoR4Config::y()']]],
- ['y_5fmirror_1386',['y_mirror',['../structaudio__tools_1_1_l_e_d_output_uno_r4_config.html#afa757062d785457a773a042ce11eab8c',1,'audio_tools::LEDOutputUnoR4Config']]]
+ ['y_1386',['y',['../structaudio__tools_1_1_l_e_d_output_config.html#a0a2f84ed7838f07779ae24c5a9086d33',1,'audio_tools::LEDOutputConfig::y()'],['../structaudio__tools_1_1_l_e_d_output_uno_r4_config.html#a0a2f84ed7838f07779ae24c5a9086d33',1,'audio_tools::LEDOutputUnoR4Config::y()']]],
+ ['y_5fmirror_1387',['y_mirror',['../structaudio__tools_1_1_l_e_d_output_uno_r4_config.html#afa757062d785457a773a042ce11eab8c',1,'audio_tools::LEDOutputUnoR4Config']]]
];
diff --git a/search/all_1a.js b/search/all_1a.js
index 389b63bd0f..5876b6616c 100644
--- a/search/all_1a.js
+++ b/search/all_1a.js
@@ -1,28 +1,28 @@
var searchData=
[
- ['_7ea2dpstream_1387',['~A2DPStream',['../classaudio__tools_1_1_a2_d_p_stream.html#ab0d564de999c4f749ce7a04e1e6eecb1',1,'audio_tools::A2DPStream']]],
- ['_7eaacdecoderhelix_1388',['~AACDecoderHelix',['../classaudio__tools_1_1_a_a_c_decoder_helix.html#ab44140b0944b1ad9ebea7310786b3668',1,'audio_tools::AACDecoderHelix']]],
- ['_7eanalogaudiostream_1389',['~AnalogAudioStream',['../classaudio__tools_1_1_analog_audio_stream.html#aba931b0caac2fb7d903fc6ed41dedf55',1,'audio_tools::AnalogAudioStream']]],
- ['_7eanalogdriveresp32_1390',['~AnalogDriverESP32',['../classaudio__tools_1_1_analog_driver_e_s_p32.html#ad6adf8a8f39c09edf7a0a8b2564e1205',1,'audio_tools::AnalogDriverESP32']]],
- ['_7eanalogdriveresp32v1_1391',['~AnalogDriverESP32V1',['../classaudio__tools_1_1_analog_driver_e_s_p32_v1.html#a068c49059c57ee4498fd4adde16a0ea1',1,'audio_tools::AnalogDriverESP32V1']]],
- ['_7eanalogdrivermbed_1392',['~AnalogDriverMBED',['../classaudio__tools_1_1_analog_driver_m_b_e_d.html#aa244364ffea05bd06605752fc0cee9f7',1,'audio_tools::AnalogDriverMBED']]],
- ['_7eaudioeffects_1393',['~AudioEffects',['../classaudio__tools_1_1_audio_effects.html#a50360ab6af0458c4e577963fe4c8a72c',1,'audio_tools::AudioEffects']]],
- ['_7eaudioencoderserver_1394',['~AudioEncoderServer',['../classaudio__tools_1_1_audio_encoder_server.html#a196da6fe5b8ac97f4796bcd4770254f0',1,'audio_tools::AudioEncoderServer']]],
- ['_7eaudioplayer_1395',['~AudioPlayer',['../classaudio__tools_1_1_audio_player.html#aed4b99eee8ff173df248014fb14774c3',1,'audio_tools::AudioPlayer']]],
- ['_7eaudiosourcesdfat_1396',['~AudioSourceSDFAT',['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a97820d8eb65564cb3425f94f52083df5',1,'audio_tools::AudioSourceSDFAT']]],
- ['_7eaudiowavserver_1397',['~AudioWAVServer',['../classaudio__tools_1_1_audio_w_a_v_server.html#a9f9c9fbcb9d3d39671b3ae841ea9fa8b',1,'audio_tools::AudioWAVServer']]],
- ['_7econverternchannels_1398',['~ConverterNChannels',['../classaudio__tools_1_1_converter_n_channels.html#aafc1c7ee920b787960f0677cf38f4901',1,'audio_tools::ConverterNChannels']]],
- ['_7edelayeffectbase_1399',['~DelayEffectBase',['../classaudio__tools_1_1_delay_effect_base.html#a11662b2fb04d28db2e11ba6bf687611d',1,'audio_tools::DelayEffectBase']]],
- ['_7eenvelopefilter_1400',['~EnvelopeFilter',['../classaudio__tools_1_1_envelope_filter.html#a04db3a4ed0c377d43fc7224b3ee55813',1,'audio_tools::EnvelopeFilter']]],
- ['_7efiltereddelay_1401',['~FilteredDelay',['../classaudio__tools_1_1_filtered_delay.html#a093af9a97e9a396c45b904d9fce29525',1,'audio_tools::FilteredDelay']]],
- ['_7efiltereffectbase_1402',['~FilterEffectBase',['../classaudio__tools_1_1_filter_effect_base.html#aa6c9f9d32021f3d65952a4524df4b04a',1,'audio_tools::FilterEffectBase']]],
- ['_7emodulationbaseclass_1403',['~ModulationBaseClass',['../classaudio__tools_1_1_modulation_base_class.html#a8a4682a3a4fc0e59545d246827aff355',1,'audio_tools::ModulationBaseClass']]],
- ['_7emp3decoderhelix_1404',['~MP3DecoderHelix',['../classaudio__tools_1_1_m_p3_decoder_helix.html#a4e3ff218051614b352b28ff3ccf8703a',1,'audio_tools::MP3DecoderHelix']]],
- ['_7emp3decodermini_1405',['~MP3DecoderMini',['../classaudio__tools_1_1_m_p3_decoder_mini.html#a8e661f75a67450958a20f7436a871109',1,'audio_tools::MP3DecoderMini']]],
- ['_7esimpledelay_1406',['~SimpleDelay',['../classaudio__tools_1_1_simple_delay.html#a0f8d575798554a675fda4a7393a8af9a',1,'audio_tools::SimpleDelay']]],
- ['_7esimpleflanger_1407',['~SimpleFlanger',['../classaudio__tools_1_1_simple_flanger.html#a349bd03631de2dfcb14e5cada67bbf11',1,'audio_tools::SimpleFlanger']]],
- ['_7esimplelpf_1408',['~SimpleLPF',['../classaudio__tools_1_1_simple_l_p_f.html#a1a09261340aeebd7ce6fdf658e6acc0a',1,'audio_tools::SimpleLPF']]],
- ['_7espdifoutput_1409',['~SPDIFOutput',['../classaudio__tools_1_1_s_p_d_i_f_output.html#a56be726241f8d4665f9521568b6776da',1,'audio_tools::SPDIFOutput']]],
- ['_7evector_1410',['~Vector',['../classaudio__tools_1_1_vector.html#a33fc4934cb870683ae08af71594844c7',1,'audio_tools::Vector']]],
- ['_7evorbisdecoder_1411',['~VorbisDecoder',['../classaudio__tools_1_1_vorbis_decoder.html#a033ec40ab1f251adba6a061cf093772a',1,'audio_tools::VorbisDecoder']]]
+ ['_7ea2dpstream_1388',['~A2DPStream',['../classaudio__tools_1_1_a2_d_p_stream.html#ab0d564de999c4f749ce7a04e1e6eecb1',1,'audio_tools::A2DPStream']]],
+ ['_7eaacdecoderhelix_1389',['~AACDecoderHelix',['../classaudio__tools_1_1_a_a_c_decoder_helix.html#ab44140b0944b1ad9ebea7310786b3668',1,'audio_tools::AACDecoderHelix']]],
+ ['_7eanalogaudiostream_1390',['~AnalogAudioStream',['../classaudio__tools_1_1_analog_audio_stream.html#aba931b0caac2fb7d903fc6ed41dedf55',1,'audio_tools::AnalogAudioStream']]],
+ ['_7eanalogdriveresp32_1391',['~AnalogDriverESP32',['../classaudio__tools_1_1_analog_driver_e_s_p32.html#ad6adf8a8f39c09edf7a0a8b2564e1205',1,'audio_tools::AnalogDriverESP32']]],
+ ['_7eanalogdriveresp32v1_1392',['~AnalogDriverESP32V1',['../classaudio__tools_1_1_analog_driver_e_s_p32_v1.html#a068c49059c57ee4498fd4adde16a0ea1',1,'audio_tools::AnalogDriverESP32V1']]],
+ ['_7eanalogdrivermbed_1393',['~AnalogDriverMBED',['../classaudio__tools_1_1_analog_driver_m_b_e_d.html#aa244364ffea05bd06605752fc0cee9f7',1,'audio_tools::AnalogDriverMBED']]],
+ ['_7eaudioeffects_1394',['~AudioEffects',['../classaudio__tools_1_1_audio_effects.html#a50360ab6af0458c4e577963fe4c8a72c',1,'audio_tools::AudioEffects']]],
+ ['_7eaudioencoderserver_1395',['~AudioEncoderServer',['../classaudio__tools_1_1_audio_encoder_server.html#a196da6fe5b8ac97f4796bcd4770254f0',1,'audio_tools::AudioEncoderServer']]],
+ ['_7eaudioplayer_1396',['~AudioPlayer',['../classaudio__tools_1_1_audio_player.html#aed4b99eee8ff173df248014fb14774c3',1,'audio_tools::AudioPlayer']]],
+ ['_7eaudiosourcesdfat_1397',['~AudioSourceSDFAT',['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a97820d8eb65564cb3425f94f52083df5',1,'audio_tools::AudioSourceSDFAT']]],
+ ['_7eaudiowavserver_1398',['~AudioWAVServer',['../classaudio__tools_1_1_audio_w_a_v_server.html#a9f9c9fbcb9d3d39671b3ae841ea9fa8b',1,'audio_tools::AudioWAVServer']]],
+ ['_7econverternchannels_1399',['~ConverterNChannels',['../classaudio__tools_1_1_converter_n_channels.html#aafc1c7ee920b787960f0677cf38f4901',1,'audio_tools::ConverterNChannels']]],
+ ['_7edelayeffectbase_1400',['~DelayEffectBase',['../classaudio__tools_1_1_delay_effect_base.html#a11662b2fb04d28db2e11ba6bf687611d',1,'audio_tools::DelayEffectBase']]],
+ ['_7eenvelopefilter_1401',['~EnvelopeFilter',['../classaudio__tools_1_1_envelope_filter.html#a04db3a4ed0c377d43fc7224b3ee55813',1,'audio_tools::EnvelopeFilter']]],
+ ['_7efiltereddelay_1402',['~FilteredDelay',['../classaudio__tools_1_1_filtered_delay.html#a093af9a97e9a396c45b904d9fce29525',1,'audio_tools::FilteredDelay']]],
+ ['_7efiltereffectbase_1403',['~FilterEffectBase',['../classaudio__tools_1_1_filter_effect_base.html#aa6c9f9d32021f3d65952a4524df4b04a',1,'audio_tools::FilterEffectBase']]],
+ ['_7emodulationbaseclass_1404',['~ModulationBaseClass',['../classaudio__tools_1_1_modulation_base_class.html#a8a4682a3a4fc0e59545d246827aff355',1,'audio_tools::ModulationBaseClass']]],
+ ['_7emp3decoderhelix_1405',['~MP3DecoderHelix',['../classaudio__tools_1_1_m_p3_decoder_helix.html#a4e3ff218051614b352b28ff3ccf8703a',1,'audio_tools::MP3DecoderHelix']]],
+ ['_7emp3decodermini_1406',['~MP3DecoderMini',['../classaudio__tools_1_1_m_p3_decoder_mini.html#a8e661f75a67450958a20f7436a871109',1,'audio_tools::MP3DecoderMini']]],
+ ['_7esimpledelay_1407',['~SimpleDelay',['../classaudio__tools_1_1_simple_delay.html#a0f8d575798554a675fda4a7393a8af9a',1,'audio_tools::SimpleDelay']]],
+ ['_7esimpleflanger_1408',['~SimpleFlanger',['../classaudio__tools_1_1_simple_flanger.html#a349bd03631de2dfcb14e5cada67bbf11',1,'audio_tools::SimpleFlanger']]],
+ ['_7esimplelpf_1409',['~SimpleLPF',['../classaudio__tools_1_1_simple_l_p_f.html#a1a09261340aeebd7ce6fdf658e6acc0a',1,'audio_tools::SimpleLPF']]],
+ ['_7espdifoutput_1410',['~SPDIFOutput',['../classaudio__tools_1_1_s_p_d_i_f_output.html#a56be726241f8d4665f9521568b6776da',1,'audio_tools::SPDIFOutput']]],
+ ['_7evector_1411',['~Vector',['../classaudio__tools_1_1_vector.html#a33fc4934cb870683ae08af71594844c7',1,'audio_tools::Vector']]],
+ ['_7evorbisdecoder_1412',['~VorbisDecoder',['../classaudio__tools_1_1_vorbis_decoder.html#a033ec40ab1f251adba6a061cf093772a',1,'audio_tools::VorbisDecoder']]]
];
diff --git a/search/all_2.js b/search/all_2.js
index 9b7d283d62..ad6029f7ec 100644
--- a/search/all_2.js
+++ b/search/all_2.js
@@ -1,32 +1,32 @@
var searchData=
[
- ['balance_156',['balance',['../classaudio__tools_1_1_v_s1053_stream.html#a179c2cf71d02cfb726cbfbbec0bd8699',1,'audio_tools::VS1053Stream']]],
- ['base_157',['base',['../classaudio__tools_1_1_simple_chorus.html#a4b9d927a352137ca958022a72f253d11',1,'audio_tools::SimpleChorus']]],
- ['basebuffer_158',['BaseBuffer',['../classaudio__tools_1_1_base_buffer.html',1,'audio_tools']]],
- ['basebuffer_3c_20uint8_5ft_20_3e_159',['BaseBuffer< uint8_t >',['../classaudio__tools_1_1_base_buffer.html',1,'audio_tools']]],
- ['baseconverter_160',['BaseConverter',['../classaudio__tools_1_1_base_converter.html',1,'audio_tools']]],
- ['basic_161',['Basic',['../group__basic.html',1,'']]],
- ['begin_162',['begin',['../classaudio__tools_1_1_e_s_p_now_stream.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::ESPNowStream::begin()'],['../classaudio__tools_1_1_v_s1053_stream.html#aea4a6cd1dd0e1bafd65f482ff3195734',1,'audio_tools::VS1053Stream::begin()'],['../classaudio__tools_1_1_e_s_p_now_stream.html#ad3f942324662d935f8a90233ed43a252',1,'audio_tools::ESPNowStream::begin()'],['../classaudio__tools_1_1_u_d_p_stream.html#a6996736f780f803e5526a83c0c26ba69',1,'audio_tools::UDPStream::begin(IPAddress a, uint16_t port)'],['../classaudio__tools_1_1_u_d_p_stream.html#a8b281c48f356477aa8256b9d030e0b2e',1,'audio_tools::UDPStream::begin(uint16_t port, uint16_t port_ext=0)'],['../classaudio__tools_1_1_window_function.html#a838612f9ae4330b86d40ebbd7018b8a3',1,'audio_tools::WindowFunction::begin()'],['../classaudio__tools_1_1_buffered_window.html#a3546c7cbf10b15df2f9e4db1e3bbad16',1,'audio_tools::BufferedWindow::begin()'],['../classaudio__tools_1_1_l_e_d_output.html#aab6570fa867d03509c8437e02f0f4e1d',1,'audio_tools::LEDOutput::begin()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::LEDOutputUnoR4::begin()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a3d9e493def31bc795d1b9b193ce0bba3',1,'audio_tools::LEDOutputUnoR4::begin(LEDOutputUnoR4Config config)'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceSDFAT::begin()'],['../classaudio__tools_1_1_maximilian.html#afd420696e82e3c9725541a0dbab9c767',1,'audio_tools::Maximilian::begin()'],['../classaudio__tools_1_1_memory_manager.html#a82d0ab6c73ec481b35d04834df57aeed',1,'audio_tools::MemoryManager::begin()'],['../classaudio__tools_1_1_tf_lite_micro_speech_recognize_commands.html#a95c67a7619c06b54011d13b6da2f1e52',1,'audio_tools::TfLiteMicroSpeechRecognizeCommands::begin()'],['../classaudio__tools_1_1_tf_lite_micro_speach_writer.html#ac2c31d5df91d0199ef6cebdf5d5c09cd',1,'audio_tools::TfLiteMicroSpeachWriter::begin()'],['../classaudio__tools_1_1_tf_lite_audio_stream.html#a64cc02fe86cc5430e1f27298ec99a1b1',1,'audio_tools::TfLiteAudioStream::begin()'],['../classaudio__tools_1_1_v_s1053_stream.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::VS1053Stream::begin()'],['../classaudio__tools_1_1_a2_d_p_stream.html#aee349d45a33f77500a1d59928339d8f2',1,'audio_tools::A2DPStream::begin()'],['../classaudio__tools_1_1_audio_source_idx_s_d.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceIdxSD::begin()'],['../classaudio__tools_1_1_faust_stream.html#af99303e9bfe78c84f1abd84376477ec7',1,'audio_tools::FaustStream::begin()'],['../class_audio_e_s_p32_u_l_p.html#af1a0fe2d8421c464e2b0d0fe10690fb1',1,'AudioESP32ULP::begin()'],['../classaudio__tools_1_1_audio_output_with_callback.html#a50f45551c10ca30a0bc7f447e70188b1',1,'audio_tools::AudioOutputWithCallback::begin()'],['../classdsp__memory__manager.html#a7ee293e5f1dab88ca6cbce71cecaf750',1,'dsp_memory_manager::begin()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#ab0ae7809bb6be9afc89dee67cdc72db4',1,'audio_tools::AudioFFTBase::begin()'],['../classaudio__tools_1_1_audio_kit_stream.html#add4d8aad406c704d324345231e74f43a',1,'audio_tools::AudioKitStream::begin()'],['../classaudio__tools_1_1_mozzi_stream.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MozziStream::begin()'],['../classaudio__tools_1_1_audio_w_a_v_server_ex.html#a01ec5d4dc2d747bed66224dbc4178741',1,'audio_tools::AudioWAVServerEx::begin()'],['../classaudio__tools_1_1_s_t_k_generator.html#af99303e9bfe78c84f1abd84376477ec7',1,'audio_tools::STKGenerator::begin()'],['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceIdxSDFAT::begin()'],['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceIdxSDMMC::begin()'],['../classaudio__tools_1_1_audio_source_little_f_s.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceLittleFS::begin()'],['../classaudio__tools_1_1_audio_source_s_d.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceSD::begin()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceSDFAT::begin()'],['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceSDMMC::begin()'],['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceSPIFFS::begin()'],['../classaudio__tools_1_1_audio_source_s_t_d.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceSTD::begin()'],['../classaudio__tools_1_1_generated_sound_stream.html#af99303e9bfe78c84f1abd84376477ec7',1,'audio_tools::GeneratedSoundStream::begin()'],['../classaudio__tools_1_1_audio_player.html#aa83ff9b2ca349dc7352f9904d883a5e0',1,'audio_tools::AudioPlayer::begin()'],['../classaudio__tools_1_1_audio_source.html#aaf893c33f3c041e289a12c153dcc9789',1,'audio_tools::AudioSource::begin()'],['../classaudio__tools_1_1_audio_source_callback.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceCallback::begin()'],['../classaudio__tools_1_1_audio_source_u_r_l.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceURL::begin()'],['../classaudio__tools_1_1_s_p_d_i_f_output.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::SPDIFOutput::begin()'],['../classaudio__tools_1_1_s_p_d_i_f_output.html#aa79ba5bd7f6bfbf5364e994427b5f9a8',1,'audio_tools::SPDIFOutput::begin(SPDIFConfig config)'],['../classaudio__tools_1_1_dynamic_memory_stream.html#a4d2a8f208d69989c8676b0c632c9ea5c',1,'audio_tools::DynamicMemoryStream::begin()'],['../classaudio__tools_1_1_generated_sound_stream.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::GeneratedSoundStream::begin()'],['../classaudio__tools_1_1_on_off_output.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::OnOffOutput::begin()'],['../classaudio__tools_1_1_queue_stream.html#a4d2a8f208d69989c8676b0c632c9ea5c',1,'audio_tools::QueueStream::begin()'],['../classaudio__tools_1_1_progress_stream.html#a000a10e426384c9aa5876979cd4d5be9',1,'audio_tools::ProgressStream::begin()'],['../classaudio__tools_1_1_timer_callback_audio_stream.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::TimerCallbackAudioStream::begin()'],['../classaudio__tools_1_1_transformation_reader.html#a122055b2ed7a47728ee984d173696ba3',1,'audio_tools::TransformationReader::begin()'],['../classaudio__tools_1_1_stream_copy_t.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::StreamCopyT::begin()'],['../classaudio__tools_1_1_stream_copy_t.html#aac230d8a4cf8cce0396d3723324c57f3',1,'audio_tools::StreamCopyT::begin(Print &to, Stream &from)'],['../classaudio__tools_1_1_stream_copy_t.html#af50f2b897e67c05dd9602ec494409d4a',1,'audio_tools::StreamCopyT::begin(Print &to, AudioStream &from)'],['../classaudio__tools_1_1_volume_stream.html#a768231c4c54c56db34a0d3a1b8a391bd',1,'audio_tools::VolumeStream::begin()'],['../classaudio__tools_1_1_timer_alarm_repeating_driver_a_v_r.html#aef983045eff2dc8f8ea76f40aa095cca',1,'audio_tools::TimerAlarmRepeatingDriverAVR::begin()'],['../classaudio__tools_1_1_w_m8960_stream.html#a87ca9efc5d81c756053820733e88b184',1,'audio_tools::WM8960Stream::begin()'],['../classaudio__tools_1_1_meta_data_output.html#a9348a7795c13e8d6437b2a641f3a8320',1,'audio_tools::MetaDataOutput::begin(HttpRequest &http)'],['../classaudio__tools_1_1_meta_data_output.html#a92b1c95465e92012367bc96996880413',1,'audio_tools::MetaDataOutput::begin(int iceMetaint=0)'],['../classaudio__tools_1_1_meta_data_filter.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MetaDataFilter::begin()'],['../classaudio__tools_1_1_meta_data_i_c_y.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::MetaDataICY::begin()'],['../classaudio__tools_1_1_meta_data_i_d3_v1.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MetaDataID3V1::begin()'],['../classaudio__tools_1_1_meta_data_i_d3_v2.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MetaDataID3V2::begin()'],['../classaudio__tools_1_1_p_w_m_audio_output.html#ab90844720b1d1eb48de817b0a49f3b30',1,'audio_tools::PWMAudioOutput::begin()'],['../classaudio__tools_1_1_w_m8960_stream.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::WM8960Stream::begin()'],['../classaudio__tools_1_1_timer_alarm_repeating_driver_e_s_p8266.html#aef983045eff2dc8f8ea76f40aa095cca',1,'audio_tools::TimerAlarmRepeatingDriverESP8266::begin()'],['../classaudio__tools_1_1_timer_alarm_repeating_driver_m_b_e_d.html#aef983045eff2dc8f8ea76f40aa095cca',1,'audio_tools::TimerAlarmRepeatingDriverMBED::begin()'],['../classaudio__tools_1_1_timer_alarm_repeating_driver_renesas.html#abfdcebf73e7c4974e4f5b6401bce3020',1,'audio_tools::TimerAlarmRepeatingDriverRenesas::begin()'],['../classaudio__tools_1_1_timer_alarm_repeating_driver_s_t_m32.html#aef983045eff2dc8f8ea76f40aa095cca',1,'audio_tools::TimerAlarmRepeatingDriverSTM32::begin()'],['../classaudio__tools_1_1_csv_output.html#ac70f7349fc3915c58de8f2f5493422dc',1,'audio_tools::CsvOutput::begin(AudioInfo info) override'],['../classaudio__tools_1_1_csv_output.html#a83c4fcc607172ab6cb0e8a837133e2c9',1,'audio_tools::CsvOutput::begin(int channels)'],['../classaudio__tools_1_1_csv_output.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::CsvOutput::begin() override'],['../classaudio__tools_1_1_output_mixer.html#a837c24b86686e363ee3fb1428385c073',1,'audio_tools::OutputMixer::begin()'],['../classaudio__tools_1_1_f_l_a_c_decoder.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::FLACDecoder::begin()'],['../classaudio__tools_1_1_opus_audio_encoder.html#a7c3e14d99bd3dc0e3670d6956dafcaf2',1,'audio_tools::OpusAudioEncoder::begin()'],['../classaudio__tools_1_1_m_p3_decoder_mini.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MP3DecoderMini::begin()'],['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MP3DecoderMAD::begin()'],['../classaudio__tools_1_1_m_p3_encoder_l_a_m_e.html#aa012465253aa64aa70a44d07a443e592',1,'audio_tools::MP3EncoderLAME::begin()'],['../classaudio__tools_1_1_m_p3_decoder_helix.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MP3DecoderHelix::begin()'],['../classaudio__tools_1_1_encoder_l8.html#abff6eaabd9829e911a1dbf8850192f05',1,'audio_tools::EncoderL8::begin(Print &out)'],['../classaudio__tools_1_1_encoder_l8.html#a7c3e14d99bd3dc0e3670d6956dafcaf2',1,'audio_tools::EncoderL8::begin() override'],['../classaudio__tools_1_1_encoder_l16.html#abff6eaabd9829e911a1dbf8850192f05',1,'audio_tools::EncoderL16::begin(Print &out)'],['../classaudio__tools_1_1_encoder_l16.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::EncoderL16::begin() override'],['../classaudio__tools_1_1_decoder_helix.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::DecoderHelix::begin()'],['../classaudio__tools_1_1_encoder_float.html#abff6eaabd9829e911a1dbf8850192f05',1,'audio_tools::EncoderFloat::begin(Print &out)'],['../classaudio__tools_1_1_encoder_float.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::EncoderFloat::begin() override'],['../classaudio__tools_1_1_f_l_a_c_encoder.html#abff6eaabd9829e911a1dbf8850192f05',1,'audio_tools::FLACEncoder::begin(Print &out)'],['../classaudio__tools_1_1_f_l_a_c_encoder.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::FLACEncoder::begin() override'],['../classaudio__tools_1_1_i2_s_stream.html#ab5eefc9d5f5c0ebd0b205d09985de96c',1,'audio_tools::I2SStream::begin()'],['../classaudio__tools_1_1_encoder_basic.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::EncoderBasic::begin()'],['../classaudio__tools_1_1_encoder_base64.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::EncoderBase64::begin()'],['../classaudio__tools_1_1_a_a_c_decoder_helix.html#a7c3e14d99bd3dc0e3670d6956dafcaf2',1,'audio_tools::AACDecoderHelix::begin()'],['../classaudio__tools_1_1_a_a_c_encoder_f_d_k.html#a9a7848e744108b3a83796af0a086c322',1,'audio_tools::AACEncoderFDK::begin(int input_channels=2, int input_sample_rate=44100, int input_bits_per_sample=16)'],['../classaudio__tools_1_1_a_a_c_encoder_f_d_k.html#a6c23593971c66b1fee16958a3ad1b0a6',1,'audio_tools::AACEncoderFDK::begin(AudioInfo info)'],['../classaudio__tools_1_1_a_a_c_decoder_f_a_a_d.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::AACDecoderFAAD::begin()'],['../classaudio__tools_1_1_encoded_audio_output.html#afc6a65076a1246faeb6415b2811bbb35',1,'audio_tools::EncodedAudioOutput::begin(AudioInfo cfg)'],['../classaudio__tools_1_1_encoded_audio_output.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::EncodedAudioOutput::begin() override'],['../classaudio__tools_1_1_streaming_decoder.html#aaf893c33f3c041e289a12c153dcc9789',1,'audio_tools::StreamingDecoder::begin()'],['../classaudio__tools_1_1_analog_driver_m_b_e_d.html#a5b57d1fefbbb011e8e8672dcc6750895',1,'audio_tools::AnalogDriverMBED::begin()'],['../classaudio__tools_1_1_analog_driver_e_s_p32_v1.html#a8d98ae19dd79f27ebbe0f373cb1583a5',1,'audio_tools::AnalogDriverESP32V1::begin()'],['../classaudio__tools_1_1_analog_driver_e_s_p32.html#a1a6736486fe8e0df47e3430799bf2498',1,'audio_tools::AnalogDriverESP32::begin()'],['../classaudio__tools_1_1_analog_audio_stream.html#a5b57d1fefbbb011e8e8672dcc6750895',1,'audio_tools::AnalogAudioStream::begin(AnalogConfig cfg)'],['../classaudio__tools_1_1_analog_audio_stream.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::AnalogAudioStream::begin() override'],['../classaudio__tools_1_1_s_b_c_encoder.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::SBCEncoder::begin()'],['../classaudio__tools_1_1_a2_d_p_stream.html#a98f971b078dd42cc9f2912b236aeaf93',1,'audio_tools::A2DPStream::begin()'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#ab5eefc9d5f5c0ebd0b205d09985de96c',1,'audio_tools::I2SDriverSTM32::begin(I2SConfig cfg)'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#af260c77cb6124c2c07117a870ce06c0c',1,'audio_tools::I2SDriverSTM32::begin(RxTxMode mode=TX_MODE)'],['../classaudio__tools_1_1_i2_s_driver_s_a_m_d.html#ab5eefc9d5f5c0ebd0b205d09985de96c',1,'audio_tools::I2SDriverSAMD::begin(I2SConfig cfg)'],['../classaudio__tools_1_1_i2_s_driver_s_a_m_d.html#ab88584f8eaec1d79f5ee7e3ff56a8b5c',1,'audio_tools::I2SDriverSAMD::begin(RxTxMode mode)'],['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#ab5eefc9d5f5c0ebd0b205d09985de96c',1,'audio_tools::I2SDriverNanoBLE::begin(I2SConfig cfg)'],['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#af260c77cb6124c2c07117a870ce06c0c',1,'audio_tools::I2SDriverNanoBLE::begin(RxTxMode mode=TX_MODE)'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#ab5eefc9d5f5c0ebd0b205d09985de96c',1,'audio_tools::I2SDriverESP8266::begin(I2SConfig cfg)'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#af260c77cb6124c2c07117a870ce06c0c',1,'audio_tools::I2SDriverESP8266::begin(RxTxMode mode=TX_MODE)'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#aea50aa7329ae4f65a90c84b9d6e7fe7f',1,'audio_tools::I2SDriverESP32V1::begin(I2SConfig cfg, int txPin, int rxPin)'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#ab5eefc9d5f5c0ebd0b205d09985de96c',1,'audio_tools::I2SDriverESP32V1::begin(I2SConfig cfg)'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::I2SDriverESP32V1::begin()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#ab88584f8eaec1d79f5ee7e3ff56a8b5c',1,'audio_tools::I2SDriverESP32V1::begin(RxTxMode mode)'],['../classaudio__tools_1_1_audio_encoder_server.html#ab9451a7fc70f87638035c65ce8a4dd87',1,'audio_tools::AudioEncoderServer::begin(AudioServerDataCallback cb, int sample_rate, int channels, int bits_per_sample=16)'],['../classaudio__tools_1_1_audio_encoder_server.html#ac2f0cdf2ba37d9f06d9485464abdaaf9',1,'audio_tools::AudioEncoderServer::begin(Stream &in, int sample_rate, int channels, int bits_per_sample=16, BaseConverter *converter=nullptr)'],['../classaudio__tools_1_1_audio_encoder_server.html#addba6829c68c6922c57aa28b0988282c',1,'audio_tools::AudioEncoderServer::begin(Stream &in, AudioInfo info, BaseConverter *converter=nullptr)'],['../classaudio__tools_1_1_s_b_c_encoder.html#ae011a2d42c0a1fffd980430371394512',1,'audio_tools::SBCEncoder::begin()'],['../classaudio__tools_1_1_vorbis_decoder.html#a7c3e14d99bd3dc0e3670d6956dafcaf2',1,'audio_tools::VorbisDecoder::begin()'],['../classaudio__tools_1_1_w_a_v_encoder.html#a70e0bdc6c2f9b03b327778b866b1215b',1,'audio_tools::WAVEncoder::begin(WAVAudioInfo ai)'],['../classaudio__tools_1_1_w_a_v_encoder.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::WAVEncoder::begin() override'],['../classaudio__tools_1_1_container_m_p4.html#a7c3e14d99bd3dc0e3670d6956dafcaf2',1,'audio_tools::ContainerMP4::begin()'],['../classaudio__tools_1_1_ogg_container_output.html#a4d2a8f208d69989c8676b0c632c9ea5c',1,'audio_tools::OggContainerOutput::begin()'],['../classaudio__tools_1_1_generator_from_array.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::GeneratorFromArray::begin()'],['../classaudio__tools_1_1_generator_fixed_value.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::GeneratorFixedValue::begin()'],['../classaudio__tools_1_1_abstract_synthesizer_channel.html#aa7d2399ca5312676ceccaa270ba23e4c',1,'audio_tools::AbstractSynthesizerChannel::begin()'],['../classaudio__tools_1_1_default_synthesizer_channel.html#a26228c844a1066f1c3694831b6a5a8c5',1,'audio_tools::DefaultSynthesizerChannel::begin()'],['../classaudio__tools_1_1_audio_server.html#aa0b24dec6c29a164f14e4b24128621be',1,'audio_tools::AudioServer::begin(Stream &in, const char *contentType)'],['../classaudio__tools_1_1_audio_server.html#afe2c3d60d32a1f2cd8891c8bd7665b04',1,'audio_tools::AudioServer::begin(AudioServerDataCallback cb, const char *contentType)'],['../classaudio__tools_1_1_ogg_container_encoder.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::OggContainerEncoder::begin()']]],
- ['binarycontainerdecoder_163',['BinaryContainerDecoder',['../classaudio__tools_1_1_binary_container_decoder.html',1,'audio_tools']]],
- ['binarycontainerencoder_164',['BinaryContainerEncoder',['../classaudio__tools_1_1_binary_container_encoder.html',1,'audio_tools']]],
- ['biquaddf1_165',['BiQuadDF1',['../classaudio__tools_1_1_bi_quad_d_f1.html',1,'audio_tools']]],
- ['biquaddf2_166',['BiQuadDF2',['../classaudio__tools_1_1_bi_quad_d_f2.html',1,'audio_tools']]],
- ['bitmapinfoheader_167',['BitmapInfoHeader',['../structaudio__tools_1_1_bitmap_info_header.html',1,'audio_tools']]],
- ['bitrate_168',['bitrate',['../structaudio__tools_1_1_opus_encoder_settings.html#ab5d8e1788d02d0e52941a0778776e289',1,'audio_tools::OpusEncoderSettings']]],
- ['blackman_169',['Blackman',['../classaudio__tools_1_1_blackman.html',1,'audio_tools']]],
- ['blackmanharris_170',['BlackmanHarris',['../classaudio__tools_1_1_blackman_harris.html',1,'audio_tools']]],
- ['blackmannuttall_171',['BlackmanNuttall',['../classaudio__tools_1_1_blackman_nuttall.html',1,'audio_tools']]],
- ['blocksize_172',['blockSize',['../classaudio__tools_1_1_a_d_p_c_m_encoder.html#acce57d9e9018d5ce183ede161c776b6d',1,'audio_tools::ADPCMEncoder']]],
- ['boost_173',['Boost',['../classaudio__tools_1_1_boost.html',1,'Boost'],['../classaudio__tools_1_1_boost.html#af191c4af195d48e13b647f34007e9c22',1,'audio_tools::Boost::Boost()']]],
- ['bufferedarray_174',['BufferedArray',['../classaudio__tools_1_1_buffered_array.html',1,'audio_tools']]],
- ['bufferedstream_175',['BufferedStream',['../classaudio__tools_1_1_buffered_stream.html',1,'audio_tools']]],
- ['bufferedtaskstream_176',['BufferedTaskStream',['../classaudio__tools_1_1_buffered_task_stream.html',1,'audio_tools']]],
- ['bufferedwindow_177',['BufferedWindow',['../classaudio__tools_1_1_buffered_window.html',1,'audio_tools']]],
- ['bufferindex_178',['bufferIndex',['../classaudio__tools_1_1_filter_effect_base.html#a73b963945a418c57630c1b66ce2aa74f',1,'audio_tools::FilterEffectBase']]],
- ['bufferrefill_179',['bufferRefill',['../classaudio__tools_1_1_u_r_l_loader.html#a034016f1f7bf5783f75913f7730c9693',1,'audio_tools::URLLoader']]],
- ['buffers_180',['Buffers',['../group__buffers.html',1,'']]],
- ['buffersize_181',['bufferSize',['../classaudio__tools_1_1_stream_copy_t.html#ab30bc84f9ea0a116951f3ad2a281c54f',1,'audio_tools::StreamCopyT']]],
- ['bytefactor_182',['byteFactor',['../classaudio__tools_1_1_format_converter_stream.html#a7ed464c23066e6abb70174360d2acc6c',1,'audio_tools::FormatConverterStream']]],
- ['bytescompressed_183',['bytesCompressed',['../classaudio__tools_1_1_s_b_c_decoder.html#a3511918f60a4c3f0135dc79573c5a502',1,'audio_tools::SBCDecoder']]],
- ['bytespersecond_184',['bytesPerSecond',['../classaudio__tools_1_1_timed_stream.html#af8e4bd4a3ed944b9b3d49001690aeb85',1,'audio_tools::TimedStream::bytesPerSecond()'],['../classaudio__tools_1_1_measuring_stream.html#af8e4bd4a3ed944b9b3d49001690aeb85',1,'audio_tools::MeasuringStream::bytesPerSecond()']]]
+ ['balance_155',['balance',['../classaudio__tools_1_1_v_s1053_stream.html#a179c2cf71d02cfb726cbfbbec0bd8699',1,'audio_tools::VS1053Stream']]],
+ ['base_156',['base',['../classaudio__tools_1_1_simple_chorus.html#a4b9d927a352137ca958022a72f253d11',1,'audio_tools::SimpleChorus']]],
+ ['basebuffer_157',['BaseBuffer',['../classaudio__tools_1_1_base_buffer.html',1,'audio_tools']]],
+ ['basebuffer_3c_20uint8_5ft_20_3e_158',['BaseBuffer< uint8_t >',['../classaudio__tools_1_1_base_buffer.html',1,'audio_tools']]],
+ ['baseconverter_159',['BaseConverter',['../classaudio__tools_1_1_base_converter.html',1,'audio_tools']]],
+ ['basic_160',['Basic',['../group__basic.html',1,'']]],
+ ['begin_161',['begin',['../classaudio__tools_1_1_audio_source_s_t_d.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceSTD::begin()'],['../classaudio__tools_1_1_v_s1053_stream.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::VS1053Stream::begin()'],['../classaudio__tools_1_1_s_t_k_generator.html#af99303e9bfe78c84f1abd84376477ec7',1,'audio_tools::STKGenerator::begin()'],['../classaudio__tools_1_1_e_s_p_now_stream.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::ESPNowStream::begin()'],['../classaudio__tools_1_1_e_s_p_now_stream.html#ad3f942324662d935f8a90233ed43a252',1,'audio_tools::ESPNowStream::begin(ESPNowStreamConfig cfg)'],['../classaudio__tools_1_1_u_d_p_stream.html#a6996736f780f803e5526a83c0c26ba69',1,'audio_tools::UDPStream::begin(IPAddress a, uint16_t port)'],['../classaudio__tools_1_1_u_d_p_stream.html#a8b281c48f356477aa8256b9d030e0b2e',1,'audio_tools::UDPStream::begin(uint16_t port, uint16_t port_ext=0)'],['../classaudio__tools_1_1_window_function.html#a838612f9ae4330b86d40ebbd7018b8a3',1,'audio_tools::WindowFunction::begin()'],['../classaudio__tools_1_1_buffered_window.html#a3546c7cbf10b15df2f9e4db1e3bbad16',1,'audio_tools::BufferedWindow::begin()'],['../classaudio__tools_1_1_l_e_d_output.html#aab6570fa867d03509c8437e02f0f4e1d',1,'audio_tools::LEDOutput::begin()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::LEDOutputUnoR4::begin()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a3d9e493def31bc795d1b9b193ce0bba3',1,'audio_tools::LEDOutputUnoR4::begin(LEDOutputUnoR4Config config)'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceSDFAT::begin()'],['../classaudio__tools_1_1_maximilian.html#afd420696e82e3c9725541a0dbab9c767',1,'audio_tools::Maximilian::begin()'],['../classaudio__tools_1_1_memory_manager.html#a82d0ab6c73ec481b35d04834df57aeed',1,'audio_tools::MemoryManager::begin()'],['../classaudio__tools_1_1_tf_lite_micro_speech_recognize_commands.html#a95c67a7619c06b54011d13b6da2f1e52',1,'audio_tools::TfLiteMicroSpeechRecognizeCommands::begin()'],['../classaudio__tools_1_1_tf_lite_micro_speach_writer.html#ac2c31d5df91d0199ef6cebdf5d5c09cd',1,'audio_tools::TfLiteMicroSpeachWriter::begin()'],['../classaudio__tools_1_1_tf_lite_audio_stream.html#a64cc02fe86cc5430e1f27298ec99a1b1',1,'audio_tools::TfLiteAudioStream::begin()'],['../classaudio__tools_1_1_i2_s_stream.html#ab5eefc9d5f5c0ebd0b205d09985de96c',1,'audio_tools::I2SStream::begin()'],['../classaudio__tools_1_1_mozzi_stream.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MozziStream::begin()'],['../class_audio_e_s_p32_u_l_p.html#af1a0fe2d8421c464e2b0d0fe10690fb1',1,'AudioESP32ULP::begin()'],['../classaudio__tools_1_1_a2_d_p_stream.html#a98f971b078dd42cc9f2912b236aeaf93',1,'audio_tools::A2DPStream::begin(RxTxMode mode, const char *name)'],['../classaudio__tools_1_1_a2_d_p_stream.html#aee349d45a33f77500a1d59928339d8f2',1,'audio_tools::A2DPStream::begin(A2DPConfig cfg)'],['../classaudio__tools_1_1_audio_output_with_callback.html#a50f45551c10ca30a0bc7f447e70188b1',1,'audio_tools::AudioOutputWithCallback::begin()'],['../classaudio__tools_1_1_faust_stream.html#af99303e9bfe78c84f1abd84376477ec7',1,'audio_tools::FaustStream::begin()'],['../classdsp__memory__manager.html#a7ee293e5f1dab88ca6cbce71cecaf750',1,'dsp_memory_manager::begin()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#ab0ae7809bb6be9afc89dee67cdc72db4',1,'audio_tools::AudioFFTBase::begin()'],['../classaudio__tools_1_1_audio_kit_stream.html#add4d8aad406c704d324345231e74f43a',1,'audio_tools::AudioKitStream::begin()'],['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceSPIFFS::begin()'],['../classaudio__tools_1_1_audio_w_a_v_server_ex.html#a01ec5d4dc2d747bed66224dbc4178741',1,'audio_tools::AudioWAVServerEx::begin()'],['../classaudio__tools_1_1_audio_source_idx_s_d.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceIdxSD::begin()'],['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceIdxSDFAT::begin()'],['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceIdxSDMMC::begin()'],['../classaudio__tools_1_1_audio_source_little_f_s.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceLittleFS::begin()'],['../classaudio__tools_1_1_audio_source_s_d.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceSD::begin()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceSDFAT::begin()'],['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceSDMMC::begin()'],['../classaudio__tools_1_1_generated_sound_stream.html#af99303e9bfe78c84f1abd84376477ec7',1,'audio_tools::GeneratedSoundStream::begin()'],['../classaudio__tools_1_1_on_off_output.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::OnOffOutput::begin()'],['../classaudio__tools_1_1_audio_player.html#aa83ff9b2ca349dc7352f9904d883a5e0',1,'audio_tools::AudioPlayer::begin()'],['../classaudio__tools_1_1_audio_source.html#aaf893c33f3c041e289a12c153dcc9789',1,'audio_tools::AudioSource::begin()'],['../classaudio__tools_1_1_audio_source_callback.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceCallback::begin()'],['../classaudio__tools_1_1_audio_source_u_r_l.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceURL::begin()'],['../classaudio__tools_1_1_s_p_d_i_f_output.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::SPDIFOutput::begin()'],['../classaudio__tools_1_1_s_p_d_i_f_output.html#aa79ba5bd7f6bfbf5364e994427b5f9a8',1,'audio_tools::SPDIFOutput::begin(SPDIFConfig config)'],['../classaudio__tools_1_1_dynamic_memory_stream.html#a4d2a8f208d69989c8676b0c632c9ea5c',1,'audio_tools::DynamicMemoryStream::begin()'],['../classaudio__tools_1_1_generated_sound_stream.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::GeneratedSoundStream::begin()'],['../classaudio__tools_1_1_output_mixer.html#a837c24b86686e363ee3fb1428385c073',1,'audio_tools::OutputMixer::begin()'],['../classaudio__tools_1_1_queue_stream.html#a4d2a8f208d69989c8676b0c632c9ea5c',1,'audio_tools::QueueStream::begin()'],['../classaudio__tools_1_1_progress_stream.html#a000a10e426384c9aa5876979cd4d5be9',1,'audio_tools::ProgressStream::begin()'],['../classaudio__tools_1_1_timer_callback_audio_stream.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::TimerCallbackAudioStream::begin()'],['../classaudio__tools_1_1_transformation_reader.html#a122055b2ed7a47728ee984d173696ba3',1,'audio_tools::TransformationReader::begin()'],['../classaudio__tools_1_1_stream_copy_t.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::StreamCopyT::begin()'],['../classaudio__tools_1_1_stream_copy_t.html#aac230d8a4cf8cce0396d3723324c57f3',1,'audio_tools::StreamCopyT::begin(Print &to, Stream &from)'],['../classaudio__tools_1_1_stream_copy_t.html#af50f2b897e67c05dd9602ec494409d4a',1,'audio_tools::StreamCopyT::begin(Print &to, AudioStream &from)'],['../classaudio__tools_1_1_volume_stream.html#a768231c4c54c56db34a0d3a1b8a391bd',1,'audio_tools::VolumeStream::begin()'],['../classaudio__tools_1_1_p_w_m_audio_output.html#ab90844720b1d1eb48de817b0a49f3b30',1,'audio_tools::PWMAudioOutput::begin()'],['../classaudio__tools_1_1_w_m8960_stream.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::WM8960Stream::begin()'],['../classaudio__tools_1_1_w_m8960_stream.html#a87ca9efc5d81c756053820733e88b184',1,'audio_tools::WM8960Stream::begin(WM8960Config config)'],['../classaudio__tools_1_1_meta_data_output.html#a9348a7795c13e8d6437b2a641f3a8320',1,'audio_tools::MetaDataOutput::begin(HttpRequest &http)'],['../classaudio__tools_1_1_meta_data_output.html#a92b1c95465e92012367bc96996880413',1,'audio_tools::MetaDataOutput::begin(int iceMetaint=0)'],['../classaudio__tools_1_1_meta_data_filter.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MetaDataFilter::begin()'],['../classaudio__tools_1_1_meta_data_i_c_y.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::MetaDataICY::begin()'],['../classaudio__tools_1_1_meta_data_i_d3_v1.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MetaDataID3V1::begin()'],['../classaudio__tools_1_1_meta_data_i_d3_v2.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MetaDataID3V2::begin()'],['../classaudio__tools_1_1_v_s1053_stream.html#aea4a6cd1dd0e1bafd65f482ff3195734',1,'audio_tools::VS1053Stream::begin()'],['../classaudio__tools_1_1_timer_alarm_repeating_driver_a_v_r.html#aef983045eff2dc8f8ea76f40aa095cca',1,'audio_tools::TimerAlarmRepeatingDriverAVR::begin()'],['../classaudio__tools_1_1_timer_alarm_repeating_driver_e_s_p8266.html#aef983045eff2dc8f8ea76f40aa095cca',1,'audio_tools::TimerAlarmRepeatingDriverESP8266::begin()'],['../classaudio__tools_1_1_timer_alarm_repeating_driver_m_b_e_d.html#aef983045eff2dc8f8ea76f40aa095cca',1,'audio_tools::TimerAlarmRepeatingDriverMBED::begin()'],['../classaudio__tools_1_1_timer_alarm_repeating_driver_renesas.html#abfdcebf73e7c4974e4f5b6401bce3020',1,'audio_tools::TimerAlarmRepeatingDriverRenesas::begin()'],['../classaudio__tools_1_1_timer_alarm_repeating_driver_s_t_m32.html#aef983045eff2dc8f8ea76f40aa095cca',1,'audio_tools::TimerAlarmRepeatingDriverSTM32::begin()'],['../classaudio__tools_1_1_csv_output.html#ac70f7349fc3915c58de8f2f5493422dc',1,'audio_tools::CsvOutput::begin(AudioInfo info) override'],['../classaudio__tools_1_1_csv_output.html#a83c4fcc607172ab6cb0e8a837133e2c9',1,'audio_tools::CsvOutput::begin(int channels)'],['../classaudio__tools_1_1_csv_output.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::CsvOutput::begin() override'],['../classaudio__tools_1_1_f_l_a_c_decoder.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::FLACDecoder::begin()'],['../classaudio__tools_1_1_s_b_c_encoder.html#ae011a2d42c0a1fffd980430371394512',1,'audio_tools::SBCEncoder::begin()'],['../classaudio__tools_1_1_opus_audio_encoder.html#a7c3e14d99bd3dc0e3670d6956dafcaf2',1,'audio_tools::OpusAudioEncoder::begin()'],['../classaudio__tools_1_1_m_p3_decoder_mini.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MP3DecoderMini::begin()'],['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MP3DecoderMAD::begin()'],['../classaudio__tools_1_1_m_p3_encoder_l_a_m_e.html#aa012465253aa64aa70a44d07a443e592',1,'audio_tools::MP3EncoderLAME::begin()'],['../classaudio__tools_1_1_m_p3_decoder_helix.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MP3DecoderHelix::begin()'],['../classaudio__tools_1_1_encoder_l8.html#abff6eaabd9829e911a1dbf8850192f05',1,'audio_tools::EncoderL8::begin(Print &out)'],['../classaudio__tools_1_1_encoder_l8.html#a7c3e14d99bd3dc0e3670d6956dafcaf2',1,'audio_tools::EncoderL8::begin() override'],['../classaudio__tools_1_1_encoder_l16.html#abff6eaabd9829e911a1dbf8850192f05',1,'audio_tools::EncoderL16::begin(Print &out)'],['../classaudio__tools_1_1_encoder_l16.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::EncoderL16::begin() override'],['../classaudio__tools_1_1_decoder_helix.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::DecoderHelix::begin()'],['../classaudio__tools_1_1_encoder_float.html#abff6eaabd9829e911a1dbf8850192f05',1,'audio_tools::EncoderFloat::begin(Print &out)'],['../classaudio__tools_1_1_encoder_float.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::EncoderFloat::begin() override'],['../classaudio__tools_1_1_f_l_a_c_encoder.html#abff6eaabd9829e911a1dbf8850192f05',1,'audio_tools::FLACEncoder::begin(Print &out)'],['../classaudio__tools_1_1_f_l_a_c_encoder.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::FLACEncoder::begin() override'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#af260c77cb6124c2c07117a870ce06c0c',1,'audio_tools::I2SDriverSTM32::begin()'],['../classaudio__tools_1_1_encoder_basic.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::EncoderBasic::begin()'],['../classaudio__tools_1_1_encoder_base64.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::EncoderBase64::begin()'],['../classaudio__tools_1_1_a_a_c_decoder_helix.html#a7c3e14d99bd3dc0e3670d6956dafcaf2',1,'audio_tools::AACDecoderHelix::begin()'],['../classaudio__tools_1_1_a_a_c_encoder_f_d_k.html#a9a7848e744108b3a83796af0a086c322',1,'audio_tools::AACEncoderFDK::begin(int input_channels=2, int input_sample_rate=44100, int input_bits_per_sample=16)'],['../classaudio__tools_1_1_a_a_c_encoder_f_d_k.html#a6c23593971c66b1fee16958a3ad1b0a6',1,'audio_tools::AACEncoderFDK::begin(AudioInfo info)'],['../classaudio__tools_1_1_a_a_c_decoder_f_a_a_d.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::AACDecoderFAAD::begin()'],['../classaudio__tools_1_1_encoded_audio_output.html#afc6a65076a1246faeb6415b2811bbb35',1,'audio_tools::EncodedAudioOutput::begin(AudioInfo cfg)'],['../classaudio__tools_1_1_encoded_audio_output.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::EncodedAudioOutput::begin() override'],['../classaudio__tools_1_1_streaming_decoder.html#aaf893c33f3c041e289a12c153dcc9789',1,'audio_tools::StreamingDecoder::begin()'],['../classaudio__tools_1_1_analog_driver_m_b_e_d.html#a5b57d1fefbbb011e8e8672dcc6750895',1,'audio_tools::AnalogDriverMBED::begin()'],['../classaudio__tools_1_1_analog_driver_e_s_p32_v1.html#a8d98ae19dd79f27ebbe0f373cb1583a5',1,'audio_tools::AnalogDriverESP32V1::begin()'],['../classaudio__tools_1_1_analog_driver_e_s_p32.html#a1a6736486fe8e0df47e3430799bf2498',1,'audio_tools::AnalogDriverESP32::begin()'],['../classaudio__tools_1_1_analog_audio_stream.html#a5b57d1fefbbb011e8e8672dcc6750895',1,'audio_tools::AnalogAudioStream::begin(AnalogConfig cfg)'],['../classaudio__tools_1_1_analog_audio_stream.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::AnalogAudioStream::begin() override'],['../classaudio__tools_1_1_vorbis_decoder.html#a7c3e14d99bd3dc0e3670d6956dafcaf2',1,'audio_tools::VorbisDecoder::begin()'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#ab5eefc9d5f5c0ebd0b205d09985de96c',1,'audio_tools::I2SDriverSTM32::begin()'],['../classaudio__tools_1_1_i2_s_driver_s_a_m_d.html#ab5eefc9d5f5c0ebd0b205d09985de96c',1,'audio_tools::I2SDriverSAMD::begin(I2SConfig cfg)'],['../classaudio__tools_1_1_i2_s_driver_s_a_m_d.html#ab88584f8eaec1d79f5ee7e3ff56a8b5c',1,'audio_tools::I2SDriverSAMD::begin(RxTxMode mode)'],['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#ab5eefc9d5f5c0ebd0b205d09985de96c',1,'audio_tools::I2SDriverNanoBLE::begin(I2SConfig cfg)'],['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#af260c77cb6124c2c07117a870ce06c0c',1,'audio_tools::I2SDriverNanoBLE::begin(RxTxMode mode=TX_MODE)'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#ab5eefc9d5f5c0ebd0b205d09985de96c',1,'audio_tools::I2SDriverESP8266::begin(I2SConfig cfg)'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#af260c77cb6124c2c07117a870ce06c0c',1,'audio_tools::I2SDriverESP8266::begin(RxTxMode mode=TX_MODE)'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#aea50aa7329ae4f65a90c84b9d6e7fe7f',1,'audio_tools::I2SDriverESP32V1::begin(I2SConfig cfg, int txPin, int rxPin)'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#ab5eefc9d5f5c0ebd0b205d09985de96c',1,'audio_tools::I2SDriverESP32V1::begin(I2SConfig cfg)'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::I2SDriverESP32V1::begin()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#ab88584f8eaec1d79f5ee7e3ff56a8b5c',1,'audio_tools::I2SDriverESP32V1::begin(RxTxMode mode)'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32.html#aea50aa7329ae4f65a90c84b9d6e7fe7f',1,'audio_tools::I2SDriverESP32::begin(I2SConfig cfg, int txPin, int rxPin)'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32.html#ab5eefc9d5f5c0ebd0b205d09985de96c',1,'audio_tools::I2SDriverESP32::begin(I2SConfig cfg)'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::I2SDriverESP32::begin()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32.html#ab88584f8eaec1d79f5ee7e3ff56a8b5c',1,'audio_tools::I2SDriverESP32::begin(RxTxMode mode)'],['../classaudio__tools_1_1_audio_encoder_server.html#addba6829c68c6922c57aa28b0988282c',1,'audio_tools::AudioEncoderServer::begin(Stream &in, AudioInfo info, BaseConverter *converter=nullptr)'],['../classaudio__tools_1_1_audio_encoder_server.html#ab9451a7fc70f87638035c65ce8a4dd87',1,'audio_tools::AudioEncoderServer::begin(AudioServerDataCallback cb, int sample_rate, int channels, int bits_per_sample=16)'],['../classaudio__tools_1_1_s_b_c_encoder.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::SBCEncoder::begin()'],['../classaudio__tools_1_1_w_a_v_encoder.html#a70e0bdc6c2f9b03b327778b866b1215b',1,'audio_tools::WAVEncoder::begin(WAVAudioInfo ai)'],['../classaudio__tools_1_1_w_a_v_encoder.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::WAVEncoder::begin() override'],['../classaudio__tools_1_1_container_m_p4.html#a7c3e14d99bd3dc0e3670d6956dafcaf2',1,'audio_tools::ContainerMP4::begin()'],['../classaudio__tools_1_1_ogg_container_output.html#a4d2a8f208d69989c8676b0c632c9ea5c',1,'audio_tools::OggContainerOutput::begin()'],['../classaudio__tools_1_1_ogg_container_encoder.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::OggContainerEncoder::begin()'],['../classaudio__tools_1_1_generator_fixed_value.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::GeneratorFixedValue::begin()'],['../classaudio__tools_1_1_abstract_synthesizer_channel.html#aa7d2399ca5312676ceccaa270ba23e4c',1,'audio_tools::AbstractSynthesizerChannel::begin()'],['../classaudio__tools_1_1_default_synthesizer_channel.html#a26228c844a1066f1c3694831b6a5a8c5',1,'audio_tools::DefaultSynthesizerChannel::begin()'],['../classaudio__tools_1_1_audio_server.html#aa0b24dec6c29a164f14e4b24128621be',1,'audio_tools::AudioServer::begin(Stream &in, const char *contentType)'],['../classaudio__tools_1_1_audio_server.html#afe2c3d60d32a1f2cd8891c8bd7665b04',1,'audio_tools::AudioServer::begin(AudioServerDataCallback cb, const char *contentType)'],['../classaudio__tools_1_1_audio_encoder_server.html#ac2f0cdf2ba37d9f06d9485464abdaaf9',1,'audio_tools::AudioEncoderServer::begin()'],['../classaudio__tools_1_1_generator_from_array.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::GeneratorFromArray::begin()']]],
+ ['binarycontainerdecoder_162',['BinaryContainerDecoder',['../classaudio__tools_1_1_binary_container_decoder.html',1,'audio_tools']]],
+ ['binarycontainerencoder_163',['BinaryContainerEncoder',['../classaudio__tools_1_1_binary_container_encoder.html',1,'audio_tools']]],
+ ['biquaddf1_164',['BiQuadDF1',['../classaudio__tools_1_1_bi_quad_d_f1.html',1,'audio_tools']]],
+ ['biquaddf2_165',['BiQuadDF2',['../classaudio__tools_1_1_bi_quad_d_f2.html',1,'audio_tools']]],
+ ['bitmapinfoheader_166',['BitmapInfoHeader',['../structaudio__tools_1_1_bitmap_info_header.html',1,'audio_tools']]],
+ ['bitrate_167',['bitrate',['../structaudio__tools_1_1_opus_encoder_settings.html#ab5d8e1788d02d0e52941a0778776e289',1,'audio_tools::OpusEncoderSettings']]],
+ ['blackman_168',['Blackman',['../classaudio__tools_1_1_blackman.html',1,'audio_tools']]],
+ ['blackmanharris_169',['BlackmanHarris',['../classaudio__tools_1_1_blackman_harris.html',1,'audio_tools']]],
+ ['blackmannuttall_170',['BlackmanNuttall',['../classaudio__tools_1_1_blackman_nuttall.html',1,'audio_tools']]],
+ ['blocksize_171',['blockSize',['../classaudio__tools_1_1_a_d_p_c_m_encoder.html#acce57d9e9018d5ce183ede161c776b6d',1,'audio_tools::ADPCMEncoder']]],
+ ['boost_172',['Boost',['../classaudio__tools_1_1_boost.html',1,'Boost'],['../classaudio__tools_1_1_boost.html#af191c4af195d48e13b647f34007e9c22',1,'audio_tools::Boost::Boost()']]],
+ ['bufferedarray_173',['BufferedArray',['../classaudio__tools_1_1_buffered_array.html',1,'audio_tools']]],
+ ['bufferedstream_174',['BufferedStream',['../classaudio__tools_1_1_buffered_stream.html',1,'audio_tools']]],
+ ['bufferedtaskstream_175',['BufferedTaskStream',['../classaudio__tools_1_1_buffered_task_stream.html',1,'audio_tools']]],
+ ['bufferedwindow_176',['BufferedWindow',['../classaudio__tools_1_1_buffered_window.html',1,'audio_tools']]],
+ ['bufferindex_177',['bufferIndex',['../classaudio__tools_1_1_filter_effect_base.html#a73b963945a418c57630c1b66ce2aa74f',1,'audio_tools::FilterEffectBase']]],
+ ['bufferrefill_178',['bufferRefill',['../classaudio__tools_1_1_u_r_l_loader.html#a034016f1f7bf5783f75913f7730c9693',1,'audio_tools::URLLoader']]],
+ ['buffers_179',['Buffers',['../group__buffers.html',1,'']]],
+ ['buffersize_180',['bufferSize',['../classaudio__tools_1_1_stream_copy_t.html#ab30bc84f9ea0a116951f3ad2a281c54f',1,'audio_tools::StreamCopyT']]],
+ ['bytefactor_181',['byteFactor',['../classaudio__tools_1_1_format_converter_stream.html#a7ed464c23066e6abb70174360d2acc6c',1,'audio_tools::FormatConverterStream']]],
+ ['bytescompressed_182',['bytesCompressed',['../classaudio__tools_1_1_s_b_c_decoder.html#a3511918f60a4c3f0135dc79573c5a502',1,'audio_tools::SBCDecoder']]],
+ ['bytespersecond_183',['bytesPerSecond',['../classaudio__tools_1_1_timed_stream.html#af8e4bd4a3ed944b9b3d49001690aeb85',1,'audio_tools::TimedStream::bytesPerSecond()'],['../classaudio__tools_1_1_measuring_stream.html#af8e4bd4a3ed944b9b3d49001690aeb85',1,'audio_tools::MeasuringStream::bytesPerSecond()']]]
];
diff --git a/search/all_3.js b/search/all_3.js
index 97ad7f6e26..b9944466b4 100644
--- a/search/all_3.js
+++ b/search/all_3.js
@@ -1,92 +1,92 @@
var searchData=
[
- ['c_5fstr_185',['c_str',['../classaudio__tools_1_1_str.html#a9ccdbd62a9a4ce6642622d748894728e',1,'audio_tools::Str']]],
- ['cachedvolumecontrol_186',['CachedVolumeControl',['../classaudio__tools_1_1_cached_volume_control.html',1,'audio_tools']]],
- ['callback_187',['callback',['../structaudio__tools_1_1_audio_f_f_t_config.html#ab8f87c1d0ccb89d45f13a0f43075a25c',1,'audio_tools::AudioFFTConfig::callback()'],['../classaudio__tools_1_1_analog_driver_arduino.html#a1f6728aa34c4d7f0743160574e03d594',1,'audio_tools::AnalogDriverArduino::callback()']]],
- ['callbackstream_188',['CallbackStream',['../classaudio__tools_1_1_callback_stream.html',1,'audio_tools']]],
- ['callbackvolumecontrol_189',['CallbackVolumeControl',['../classaudio__tools_1_1_callback_volume_control.html',1,'audio_tools']]],
- ['capgain_190',['capGain',['../classaudio__tools_1_1_simple_flanger.html#a85147a878d52eb0c3a470c49ba72e4e1',1,'audio_tools::SimpleFlanger::capGain()'],['../classaudio__tools_1_1_simple_delay.html#aba58c32ee8fd49054fb97c1c795cb7d8',1,'audio_tools::SimpleDelay::capGain()'],['../classaudio__tools_1_1_filtered_delay.html#aba58c32ee8fd49054fb97c1c795cb7d8',1,'audio_tools::FilteredDelay::capGain()']]],
- ['categorycount_191',['categoryCount',['../classaudio__tools_1_1_tf_lite_micro_speech_recognize_commands.html#a5fb61859ca170faada0149e7e2049c2f',1,'audio_tools::TfLiteMicroSpeechRecognizeCommands']]],
- ['catstream_192',['CatStream',['../classaudio__tools_1_1_cat_stream.html',1,'audio_tools']]],
- ['changechebyicoefficients_193',['changeChebyICoefficients',['../classaudio__tools_1_1_filter_effect_base.html#a76e95f634b46e4a944735c72e400ebda',1,'audio_tools::FilterEffectBase']]],
- ['channel_5fused_194',['channel_used',['../structaudio__tools_1_1_audio_f_f_t_config.html#a3a5b92ec292754862eefea3200d21f5d',1,'audio_tools::AudioFFTConfig']]],
- ['channelconverter_195',['ChannelConverter',['../classaudio__tools_1_1_channel_converter.html',1,'audio_tools']]],
- ['channelenhancer_196',['ChannelEnhancer',['../classaudio__tools_1_1_channel_enhancer.html',1,'audio_tools']]],
- ['channelformatconverterstream_197',['ChannelFormatConverterStream',['../classaudio__tools_1_1_channel_format_converter_stream.html',1,'audio_tools']]],
- ['channelformatconverterstreamt_198',['ChannelFormatConverterStreamT',['../classaudio__tools_1_1_channel_format_converter_stream_t.html',1,'audio_tools']]],
- ['channelreducer_199',['ChannelReducer',['../classaudio__tools_1_1_channel_reducer.html',1,'audio_tools']]],
- ['channelreducert_200',['ChannelReducerT',['../classaudio__tools_1_1_channel_reducer_t.html',1,'audio_tools']]],
- ['channelselectionoutputdef_201',['ChannelSelectionOutputDef',['../structaudio__tools_1_1_channel_split_output_1_1_channel_selection_output_def.html',1,'audio_tools::ChannelSplitOutput']]],
- ['channelsplitoutput_202',['ChannelSplitOutput',['../classaudio__tools_1_1_channel_split_output.html',1,'audio_tools']]],
- ['chartdata_203',['chartData',['../classaudio__tools_1_1_chart_t.html#aa971fc3eaeed0371b77e42d85eee47ae',1,'audio_tools::ChartT']]],
- ['chartt_204',['ChartT',['../classaudio__tools_1_1_chart_t.html',1,'audio_tools']]],
- ['checkchannels_205',['checkChannels',['../classaudio__tools_1_1_faust_stream.html#a9c778631f8de9fd5597052dd20787c1f',1,'audio_tools::FaustStream']]],
- ['checkmemory_206',['checkMemory',['../group__basic.html#ga5f52449b4daf5731c81d0c517f0da925',1,'AudioRuntime.h']]],
- ['checkprefix_207',['checkPrefix',['../classaudio__tools_1_1_a_p_t_x_decoder.html#aa1d0071fc1874ec9e73acd7531392da1',1,'audio_tools::APTXDecoder']]],
- ['checksync_208',['checkSync',['../classaudio__tools_1_1_a_p_t_x_decoder.html#a8efd65b90908ac90d8fc296512f3b06d',1,'audio_tools::APTXDecoder']]],
- ['chunk_5fresult_209',['chunk_result',['../namespaceaudio__tools.html#a6a59ed379dc716d3d4f19e585d96abcc',1,'audio_tools']]],
- ['clear_210',['clear',['../classaudio__tools_1_1_queue_stream.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::QueueStream::clear()'],['../classaudio__tools_1_1_str.html#aae048282c7011eedc2e0492f6421ea73',1,'audio_tools::Str::clear()'],['../structaudio__tools_1_1_m_p4_atom.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::MP4Atom::clear()'],['../classaudio__tools_1_1_audio_effect_common.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::AudioEffectCommon::clear()'],['../classaudio__tools_1_1_audio_effects.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::AudioEffects::clear()'],['../classaudio__tools_1_1_audio_effect_stream_t.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::AudioEffectStreamT::clear()'],['../classaudio__tools_1_1_http_header.html#a7c7d6f6063db2f53479f140616be5724',1,'audio_tools::HttpHeader::clear()'],['../classaudio__tools_1_1_u_r_l_stream.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::URLStream::clear()'],['../classaudio__tools_1_1_volume_output.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::VolumeOutput::clear()'],['../classaudio__tools_1_1_memory_stream.html#a0fcf92f2c5e39da0f593c093ea16d440',1,'audio_tools::MemoryStream::clear()'],['../classaudio__tools_1_1_buffered_stream.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::BufferedStream::clear()'],['../classaudio__tools_1_1_base_buffer.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::BaseBuffer::clear()']]],
- ['cleararray_211',['clearArray',['../classaudio__tools_1_1_single_buffer.html#af4a69505d7ab34d699fbc6157aef3bbe',1,'audio_tools::SingleBuffer::clearArray()'],['../classaudio__tools_1_1_base_buffer.html#a5e526a739923663ae76533d9ad9eb656',1,'audio_tools::BaseBuffer::clearArray()']]],
- ['clearmemory_212',['clearMemory',['../classaudio__tools_1_1_filter_effect_base.html#abab10a47ad7db459c3e5df22b1dd9105',1,'audio_tools::FilterEffectBase']]],
- ['clearstream_213',['clearStream',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a4bbe12ca3eea828ce375e3b95b941b12',1,'audio_tools::I2SDriverNanoBLE']]],
- ['client_214',['Client',['../classaudio__tools_1_1_client.html',1,'audio_tools']]],
- ['clip_215',['clip',['../classaudio__tools_1_1_number_converter.html#a53e24ee1ef10497b952363c147bbedc0',1,'audio_tools::NumberConverter::clip()'],['../classaudio__tools_1_1_audio_effect.html#af52bdd0b692ecf558d8bd97fac35bf6b',1,'audio_tools::AudioEffect::clip()']]],
- ['clipwave_216',['clipWave',['../classaudio__tools_1_1_modulation_base_class.html#a356c93980a95afc0003df929cd432c6d',1,'audio_tools::ModulationBaseClass']]],
- ['cmsis_217',['CMSIS',['../group__fft-cmsis.html',1,'']]],
- ['codec_218',['codec',['../classaudio__tools_1_1_h_l_s_stream.html#a77ec75aeb09c8eb5bc54f469029f3da3',1,'audio_tools::HLSStream']]],
- ['codec2decoder_219',['Codec2Decoder',['../classaudio__tools_1_1_codec2_decoder.html',1,'audio_tools']]],
- ['codec2encoder_220',['Codec2Encoder',['../classaudio__tools_1_1_codec2_encoder.html',1,'audio_tools']]],
- ['codecaptx_2eh_221',['CodecAPTX.h',['../_codec_a_p_t_x_8h.html',1,'']]],
- ['codeccodec2_2eh_222',['CodecCodec2.h',['../_codec_codec2_8h.html',1,'']]],
- ['codecflac_2eh_223',['CodecFLAC.h',['../_codec_f_l_a_c_8h.html',1,'']]],
- ['codecgsm_2eh_224',['CodecGSM.h',['../_codec_g_s_m_8h.html',1,'']]],
- ['codecilbc_2eh_225',['CodecILBC.h',['../_codec_i_l_b_c_8h.html',1,'']]],
- ['codeclc3_2eh_226',['CodecLC3.h',['../_codec_l_c3_8h.html',1,'']]],
- ['codecnop_227',['CodecNOP',['../classaudio__tools_1_1_codec_n_o_p.html',1,'audio_tools']]],
- ['codecs_228',['Codecs',['../group__codecs.html',1,'']]],
- ['codecsbc_2eh_229',['CodecSBC.h',['../_codec_s_b_c_8h.html',1,'']]],
- ['codesize_230',['codeSize',['../classaudio__tools_1_1_s_b_c_encoder.html#a4acc2555ecc44e12e20eec6974631c70',1,'audio_tools::SBCEncoder']]],
- ['collections_231',['Collections',['../group__collections.html',1,'']]],
- ['color_5fcallback_232',['color_callback',['../structaudio__tools_1_1_l_e_d_output_config.html#a7288ed95e9f56c3ecce8ae4468f695f1',1,'audio_tools::LEDOutputConfig']]],
- ['commonheader_233',['CommonHeader',['../structaudio__tools_1_1_common_header.html',1,'audio_tools']]],
- ['communications_234',['Communications',['../group__communications.html',1,'']]],
- ['complexhandler_235',['complexHandler',['../classaudio__tools_1_1_timer_alarm_repeating_driver_e_s_p8266.html#a0cc3eebc2a71f976983096a370487af3',1,'audio_tools::TimerAlarmRepeatingDriverESP8266']]],
- ['complexity_236',['complexity',['../structaudio__tools_1_1_opus_encoder_settings.html#a5cfa32bf3a363603c9088283597de63e',1,'audio_tools::OpusEncoderSettings']]],
- ['config_237',['config',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a95eae20920cd36e37ffadbc2783de718',1,'audio_tools::I2SDriverNanoBLE::config()'],['../classaudio__tools_1_1_opus_ogg_decoder.html#a702c40d253c27d3b7203361e1f49fc43',1,'audio_tools::OpusOggDecoder::config()'],['../classaudio__tools_1_1_opus_ogg_encoder.html#a450169e1dd55d42ad9be4232e6bc3f7e',1,'audio_tools::OpusOggEncoder::config()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#a95eae20920cd36e37ffadbc2783de718',1,'audio_tools::I2SDriverESP32V1::config()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#a95eae20920cd36e37ffadbc2783de718',1,'audio_tools::I2SDriverESP8266::config()'],['../classaudio__tools_1_1_i2_s_driver_s_a_m_d.html#a95eae20920cd36e37ffadbc2783de718',1,'audio_tools::I2SDriverSAMD::config()'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#a95eae20920cd36e37ffadbc2783de718',1,'audio_tools::I2SDriverSTM32::config()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#ada9a4d4d794a8fbde0e18bec769655ca',1,'audio_tools::AudioFFTBase::config()'],['../classaudio__tools_1_1_mozzi_generator.html#a496dcae19ba733a0511069f0c7fe8660',1,'audio_tools::MozziGenerator::config()'],['../classaudio__tools_1_1_l_e_d_output.html#aa4dd40c7c10f7adf35e3cfa26049206a',1,'audio_tools::LEDOutput::config()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#abdce6adc217a5bbe546410c3b46afee9',1,'audio_tools::LEDOutputUnoR4::config()'],['../classaudio__tools_1_1_tf_lite_audio_stream_base.html#a40f112d8a30e5084466a222e1fa981c9',1,'audio_tools::TfLiteAudioStreamBase::config()'],['../classaudio__tools_1_1_tf_lite_audio_stream.html#ad99fd151888361e48ab2b69b82cc8b86',1,'audio_tools::TfLiteAudioStream::config()'],['../classaudio__tools_1_1_opus_audio_decoder.html#a702c40d253c27d3b7203361e1f49fc43',1,'audio_tools::OpusAudioDecoder::config()'],['../classaudio__tools_1_1_opus_audio_encoder.html#a450169e1dd55d42ad9be4232e6bc3f7e',1,'audio_tools::OpusAudioEncoder::config()']]],
- ['configequilizer3bands_238',['ConfigEquilizer3Bands',['../structaudio__tools_1_1_config_equilizer3_bands.html',1,'audio_tools']]],
- ['configure_239',['configure',['../classaudio__tools_1_1_a_a_c_decoder_f_d_k.html#ae6fd8edc1395f60442dba5e8738b24bf',1,'audio_tools::AACDecoderFDK']]],
- ['consume_240',['consume',['../classaudio__tools_1_1_a_v_i_decoder.html#aba97c16a038da99ec61d3b3145513742',1,'audio_tools::AVIDecoder']]],
- ['consumesample_241',['ConsumeSample',['../classaudio__tools_1_1_audio_output_with_callback.html#aa330cbf7c03b775167621cbdb24f79f0',1,'audio_tools::AudioOutputWithCallback']]],
- ['containerbinary_2eh_242',['ContainerBinary.h',['../_container_binary_8h.html',1,'']]],
- ['containermp4_243',['ContainerMP4',['../classaudio__tools_1_1_container_m_p4.html',1,'audio_tools']]],
- ['containertarget_244',['ContainerTarget',['../classaudio__tools_1_1_container_target.html',1,'audio_tools']]],
- ['containertargetprint_245',['ContainerTargetPrint',['../classaudio__tools_1_1_container_target_print.html',1,'audio_tools']]],
- ['contains_246',['contains',['../classaudio__tools_1_1_str.html#a72c701b627c222f397e4d2e38ab310b5',1,'audio_tools::Str']]],
- ['contenttype_247',['contentType',['../classaudio__tools_1_1_h_l_s_parser.html#a90bfaf533d2e31333a61152b1681d40e',1,'audio_tools::HLSParser']]],
- ['convert_248',['convert',['../classaudio__tools_1_1_number_converter.html#ad847c72f19ba5bcd8ab8e2f4e138c592',1,'audio_tools::NumberConverter::convert()'],['../classaudio__tools_1_1_fade.html#a43d670c57ac17e04543faa6e546c7007',1,'audio_tools::Fade::convert()']]],
- ['converter1channel_249',['Converter1Channel',['../classaudio__tools_1_1_converter1_channel.html',1,'audio_tools']]],
- ['converterautocenter_250',['ConverterAutoCenter',['../classaudio__tools_1_1_converter_auto_center.html',1,'audio_tools']]],
- ['converterautocentert_251',['ConverterAutoCenterT',['../classaudio__tools_1_1_converter_auto_center_t.html',1,'audio_tools']]],
- ['converterfillleftandright_252',['ConverterFillLeftAndRight',['../classaudio__tools_1_1_converter_fill_left_and_right.html',1,'audio_tools']]],
- ['converternchannels_253',['ConverterNChannels',['../classaudio__tools_1_1_converter_n_channels.html',1,'ConverterNChannels< T, FT >'],['../classaudio__tools_1_1_converter_n_channels.html#adfb04e4efe202405fa2728dafc42a1fc',1,'audio_tools::ConverterNChannels::ConverterNChannels()']]],
- ['converternchannels_3c_20t_2c_20tf_20_3e_254',['ConverterNChannels< T, TF >',['../classaudio__tools_1_1_converter_n_channels.html',1,'audio_tools']]],
- ['converters_255',['Converters',['../group__convert.html',1,'']]],
- ['converterscaler_256',['ConverterScaler',['../classaudio__tools_1_1_converter_scaler.html',1,'audio_tools']]],
- ['converterstream_257',['ConverterStream',['../classaudio__tools_1_1_converter_stream.html',1,'audio_tools']]],
- ['converterswitchleftandright_258',['ConverterSwitchLeftAndRight',['../classaudio__tools_1_1_converter_switch_left_and_right.html',1,'audio_tools']]],
- ['convertertointernaldacformat_259',['ConverterToInternalDACFormat',['../classaudio__tools_1_1_converter_to_internal_d_a_c_format.html',1,'audio_tools']]],
- ['convertfloatbuffertoint_260',['convertFloatBufferToInt',['../classaudio__tools_1_1_faust_stream.html#a9666116563bb180048bd43ce4b35b9d4',1,'audio_tools::FaustStream']]],
- ['converting_20streams_261',['Converting Streams',['../group__transform.html',1,'']]],
- ['convertintbuffertofloat_262',['convertIntBufferToFloat',['../classaudio__tools_1_1_faust_stream.html#a9a705dabc6f28b5a343790a35d1b03b0',1,'audio_tools::FaustStream']]],
- ['copy_263',['copy',['../classaudio__tools_1_1_maximilian.html#aaa6c087511a52e64fc9ad92820c7c0a8',1,'audio_tools::Maximilian::copy()'],['../classaudio__tools_1_1_streaming_decoder.html#a09b4fd0a2bd2c7c07c01fd12ae456c98',1,'audio_tools::StreamingDecoder::copy()'],['../classaudio__tools_1_1_f_l_a_c_decoder.html#a68b01f6d74485da20c323b9c68d906fd',1,'audio_tools::FLACDecoder::copy()'],['../classaudio__tools_1_1_vorbis_decoder.html#a01e1a5adb76fa670d21a598eca436c5e',1,'audio_tools::VorbisDecoder::copy()'],['../classaudio__tools_1_1_audio_server.html#a68b01f6d74485da20c323b9c68d906fd',1,'audio_tools::AudioServer::copy()'],['../classaudio__tools_1_1_audio_server_ex.html#a72c4ecea0edfb6a9f9c05edc57b35c19',1,'audio_tools::AudioServerEx::copy()'],['../classaudio__tools_1_1_audio_player.html#af62138cf6d06e41ae7d0535e4ecdeeb2',1,'audio_tools::AudioPlayer::copy()'],['../classaudio__tools_1_1_stream_copy_t.html#aecb44a6d385121be2179187d45520331',1,'audio_tools::StreamCopyT::copy()'],['../classaudio__tools_1_1_stream_copy.html#a226bbd7cd5d674fabacfb94711178728',1,'audio_tools::StreamCopy::copy(BaseConverter &converter)'],['../classaudio__tools_1_1_stream_copy.html#aecb44a6d385121be2179187d45520331',1,'audio_tools::StreamCopy::copy()']]],
- ['copyall_264',['copyAll',['../classaudio__tools_1_1_stream_copy_t.html#a81c4dd3919c1824540306c995521c89a',1,'audio_tools::StreamCopyT']]],
- ['copydecoder_265',['CopyDecoder',['../classaudio__tools_1_1_copy_decoder.html',1,'audio_tools']]],
- ['copyencoder_266',['CopyEncoder',['../classaudio__tools_1_1_copy_encoder.html',1,'audio_tools']]],
- ['copyfrom_267',['copyFrom',['../classaudio__tools_1_1_str_ext.html#a1990adb01593630f422dafbc812d98b5',1,'audio_tools::StrExt::copyFrom()'],['../structaudio__tools_1_1_audio_info.html#a029ace15f5ede8def0a6ab5c97a81b25',1,'audio_tools::AudioInfo::copyFrom()']]],
- ['copyms_268',['copyMs',['../classaudio__tools_1_1_stream_copy_t.html#a0a5e6527d329e850fa0f18bcd7647871',1,'audio_tools::StreamCopyT']]],
- ['copyn_269',['copyN',['../classaudio__tools_1_1_stream_copy_t.html#a674594d79037e62a14a91a5394496644',1,'audio_tools::StreamCopyT']]],
- ['count_270',['count',['../classaudio__tools_1_1_str.html#a943139c86181bafa601216f68120fd9d',1,'audio_tools::Str']]],
- ['cs_5fpin_271',['cs_pin',['../classaudio__tools_1_1_v_s1053_config.html#aed65b23a4e5c39c4267c5730833e70db',1,'audio_tools::VS1053Config']]],
- ['csvoutput_272',['CsvOutput',['../classaudio__tools_1_1_csv_output.html',1,'CsvOutput< T >'],['../classaudio__tools_1_1_csv_output.html#a8c7898b349ec81163c029c92f5925313',1,'audio_tools::CsvOutput::CsvOutput()']]],
- ['currentsamplerate_273',['currentSampleRate',['../classaudio__tools_1_1_timer_callback_audio_stream.html#a2c71403874040c006bd209dda47933ef',1,'audio_tools::TimerCallbackAudioStream']]]
+ ['c_5fstr_184',['c_str',['../classaudio__tools_1_1_str.html#a9ccdbd62a9a4ce6642622d748894728e',1,'audio_tools::Str']]],
+ ['cachedvolumecontrol_185',['CachedVolumeControl',['../classaudio__tools_1_1_cached_volume_control.html',1,'audio_tools']]],
+ ['callback_186',['callback',['../structaudio__tools_1_1_audio_f_f_t_config.html#ab8f87c1d0ccb89d45f13a0f43075a25c',1,'audio_tools::AudioFFTConfig::callback()'],['../classaudio__tools_1_1_analog_driver_arduino.html#a1f6728aa34c4d7f0743160574e03d594',1,'audio_tools::AnalogDriverArduino::callback()']]],
+ ['callbackstream_187',['CallbackStream',['../classaudio__tools_1_1_callback_stream.html',1,'audio_tools']]],
+ ['callbackvolumecontrol_188',['CallbackVolumeControl',['../classaudio__tools_1_1_callback_volume_control.html',1,'audio_tools']]],
+ ['capgain_189',['capGain',['../classaudio__tools_1_1_simple_flanger.html#a85147a878d52eb0c3a470c49ba72e4e1',1,'audio_tools::SimpleFlanger::capGain()'],['../classaudio__tools_1_1_simple_delay.html#aba58c32ee8fd49054fb97c1c795cb7d8',1,'audio_tools::SimpleDelay::capGain()'],['../classaudio__tools_1_1_filtered_delay.html#aba58c32ee8fd49054fb97c1c795cb7d8',1,'audio_tools::FilteredDelay::capGain()']]],
+ ['categorycount_190',['categoryCount',['../classaudio__tools_1_1_tf_lite_micro_speech_recognize_commands.html#a5fb61859ca170faada0149e7e2049c2f',1,'audio_tools::TfLiteMicroSpeechRecognizeCommands']]],
+ ['catstream_191',['CatStream',['../classaudio__tools_1_1_cat_stream.html',1,'audio_tools']]],
+ ['changechebyicoefficients_192',['changeChebyICoefficients',['../classaudio__tools_1_1_filter_effect_base.html#a76e95f634b46e4a944735c72e400ebda',1,'audio_tools::FilterEffectBase']]],
+ ['channel_5fused_193',['channel_used',['../structaudio__tools_1_1_audio_f_f_t_config.html#a3a5b92ec292754862eefea3200d21f5d',1,'audio_tools::AudioFFTConfig']]],
+ ['channelconverter_194',['ChannelConverter',['../classaudio__tools_1_1_channel_converter.html',1,'audio_tools']]],
+ ['channelenhancer_195',['ChannelEnhancer',['../classaudio__tools_1_1_channel_enhancer.html',1,'audio_tools']]],
+ ['channelformatconverterstream_196',['ChannelFormatConverterStream',['../classaudio__tools_1_1_channel_format_converter_stream.html',1,'audio_tools']]],
+ ['channelformatconverterstreamt_197',['ChannelFormatConverterStreamT',['../classaudio__tools_1_1_channel_format_converter_stream_t.html',1,'audio_tools']]],
+ ['channelreducer_198',['ChannelReducer',['../classaudio__tools_1_1_channel_reducer.html',1,'audio_tools']]],
+ ['channelreducert_199',['ChannelReducerT',['../classaudio__tools_1_1_channel_reducer_t.html',1,'audio_tools']]],
+ ['channelselectionoutputdef_200',['ChannelSelectionOutputDef',['../structaudio__tools_1_1_channel_split_output_1_1_channel_selection_output_def.html',1,'audio_tools::ChannelSplitOutput']]],
+ ['channelsplitoutput_201',['ChannelSplitOutput',['../classaudio__tools_1_1_channel_split_output.html',1,'audio_tools']]],
+ ['chartdata_202',['chartData',['../classaudio__tools_1_1_chart_t.html#aa971fc3eaeed0371b77e42d85eee47ae',1,'audio_tools::ChartT']]],
+ ['chartt_203',['ChartT',['../classaudio__tools_1_1_chart_t.html',1,'audio_tools']]],
+ ['checkchannels_204',['checkChannels',['../classaudio__tools_1_1_faust_stream.html#a9c778631f8de9fd5597052dd20787c1f',1,'audio_tools::FaustStream']]],
+ ['checkmemory_205',['checkMemory',['../group__basic.html#ga5f52449b4daf5731c81d0c517f0da925',1,'AudioRuntime.h']]],
+ ['checkprefix_206',['checkPrefix',['../classaudio__tools_1_1_a_p_t_x_decoder.html#aa1d0071fc1874ec9e73acd7531392da1',1,'audio_tools::APTXDecoder']]],
+ ['checksync_207',['checkSync',['../classaudio__tools_1_1_a_p_t_x_decoder.html#a8efd65b90908ac90d8fc296512f3b06d',1,'audio_tools::APTXDecoder']]],
+ ['chunk_5fresult_208',['chunk_result',['../namespaceaudio__tools.html#a6a59ed379dc716d3d4f19e585d96abcc',1,'audio_tools']]],
+ ['clear_209',['clear',['../classaudio__tools_1_1_queue_stream.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::QueueStream::clear()'],['../classaudio__tools_1_1_str.html#aae048282c7011eedc2e0492f6421ea73',1,'audio_tools::Str::clear()'],['../structaudio__tools_1_1_m_p4_atom.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::MP4Atom::clear()'],['../classaudio__tools_1_1_audio_effect_common.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::AudioEffectCommon::clear()'],['../classaudio__tools_1_1_audio_effects.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::AudioEffects::clear()'],['../classaudio__tools_1_1_audio_effect_stream_t.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::AudioEffectStreamT::clear()'],['../classaudio__tools_1_1_http_header.html#a7c7d6f6063db2f53479f140616be5724',1,'audio_tools::HttpHeader::clear()'],['../classaudio__tools_1_1_u_r_l_stream.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::URLStream::clear()'],['../classaudio__tools_1_1_volume_output.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::VolumeOutput::clear()'],['../classaudio__tools_1_1_memory_stream.html#a0fcf92f2c5e39da0f593c093ea16d440',1,'audio_tools::MemoryStream::clear()'],['../classaudio__tools_1_1_buffered_stream.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::BufferedStream::clear()'],['../classaudio__tools_1_1_base_buffer.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::BaseBuffer::clear()']]],
+ ['cleararray_210',['clearArray',['../classaudio__tools_1_1_single_buffer.html#af4a69505d7ab34d699fbc6157aef3bbe',1,'audio_tools::SingleBuffer::clearArray()'],['../classaudio__tools_1_1_base_buffer.html#a5e526a739923663ae76533d9ad9eb656',1,'audio_tools::BaseBuffer::clearArray()']]],
+ ['clearmemory_211',['clearMemory',['../classaudio__tools_1_1_filter_effect_base.html#abab10a47ad7db459c3e5df22b1dd9105',1,'audio_tools::FilterEffectBase']]],
+ ['clearstream_212',['clearStream',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a4bbe12ca3eea828ce375e3b95b941b12',1,'audio_tools::I2SDriverNanoBLE']]],
+ ['client_213',['Client',['../classaudio__tools_1_1_client.html',1,'audio_tools']]],
+ ['clip_214',['clip',['../classaudio__tools_1_1_number_converter.html#a53e24ee1ef10497b952363c147bbedc0',1,'audio_tools::NumberConverter::clip()'],['../classaudio__tools_1_1_audio_effect.html#af52bdd0b692ecf558d8bd97fac35bf6b',1,'audio_tools::AudioEffect::clip()']]],
+ ['clipwave_215',['clipWave',['../classaudio__tools_1_1_modulation_base_class.html#a356c93980a95afc0003df929cd432c6d',1,'audio_tools::ModulationBaseClass']]],
+ ['cmsis_216',['CMSIS',['../group__fft-cmsis.html',1,'']]],
+ ['codec_217',['codec',['../classaudio__tools_1_1_h_l_s_stream.html#a77ec75aeb09c8eb5bc54f469029f3da3',1,'audio_tools::HLSStream']]],
+ ['codec2decoder_218',['Codec2Decoder',['../classaudio__tools_1_1_codec2_decoder.html',1,'audio_tools']]],
+ ['codec2encoder_219',['Codec2Encoder',['../classaudio__tools_1_1_codec2_encoder.html',1,'audio_tools']]],
+ ['codecaptx_2eh_220',['CodecAPTX.h',['../_codec_a_p_t_x_8h.html',1,'']]],
+ ['codeccodec2_2eh_221',['CodecCodec2.h',['../_codec_codec2_8h.html',1,'']]],
+ ['codecflac_2eh_222',['CodecFLAC.h',['../_codec_f_l_a_c_8h.html',1,'']]],
+ ['codecgsm_2eh_223',['CodecGSM.h',['../_codec_g_s_m_8h.html',1,'']]],
+ ['codecilbc_2eh_224',['CodecILBC.h',['../_codec_i_l_b_c_8h.html',1,'']]],
+ ['codeclc3_2eh_225',['CodecLC3.h',['../_codec_l_c3_8h.html',1,'']]],
+ ['codecnop_226',['CodecNOP',['../classaudio__tools_1_1_codec_n_o_p.html',1,'audio_tools']]],
+ ['codecs_227',['Codecs',['../group__codecs.html',1,'']]],
+ ['codecsbc_2eh_228',['CodecSBC.h',['../_codec_s_b_c_8h.html',1,'']]],
+ ['codesize_229',['codeSize',['../classaudio__tools_1_1_s_b_c_encoder.html#a4acc2555ecc44e12e20eec6974631c70',1,'audio_tools::SBCEncoder']]],
+ ['collections_230',['Collections',['../group__collections.html',1,'']]],
+ ['color_5fcallback_231',['color_callback',['../structaudio__tools_1_1_l_e_d_output_config.html#a7288ed95e9f56c3ecce8ae4468f695f1',1,'audio_tools::LEDOutputConfig']]],
+ ['commonheader_232',['CommonHeader',['../structaudio__tools_1_1_common_header.html',1,'audio_tools']]],
+ ['communications_233',['Communications',['../group__communications.html',1,'']]],
+ ['complexhandler_234',['complexHandler',['../classaudio__tools_1_1_timer_alarm_repeating_driver_e_s_p8266.html#a0cc3eebc2a71f976983096a370487af3',1,'audio_tools::TimerAlarmRepeatingDriverESP8266']]],
+ ['complexity_235',['complexity',['../structaudio__tools_1_1_opus_encoder_settings.html#a5cfa32bf3a363603c9088283597de63e',1,'audio_tools::OpusEncoderSettings']]],
+ ['config_236',['config',['../classaudio__tools_1_1_opus_ogg_encoder.html#a450169e1dd55d42ad9be4232e6bc3f7e',1,'audio_tools::OpusOggEncoder::config()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#a95eae20920cd36e37ffadbc2783de718',1,'audio_tools::I2SDriverESP8266::config()'],['../classaudio__tools_1_1_opus_ogg_decoder.html#a702c40d253c27d3b7203361e1f49fc43',1,'audio_tools::OpusOggDecoder::config()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32.html#a95eae20920cd36e37ffadbc2783de718',1,'audio_tools::I2SDriverESP32::config()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#a95eae20920cd36e37ffadbc2783de718',1,'audio_tools::I2SDriverESP32V1::config()'],['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a95eae20920cd36e37ffadbc2783de718',1,'audio_tools::I2SDriverNanoBLE::config()'],['../classaudio__tools_1_1_i2_s_driver_s_a_m_d.html#a95eae20920cd36e37ffadbc2783de718',1,'audio_tools::I2SDriverSAMD::config()'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#a95eae20920cd36e37ffadbc2783de718',1,'audio_tools::I2SDriverSTM32::config()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#ada9a4d4d794a8fbde0e18bec769655ca',1,'audio_tools::AudioFFTBase::config()'],['../classaudio__tools_1_1_mozzi_generator.html#a496dcae19ba733a0511069f0c7fe8660',1,'audio_tools::MozziGenerator::config()'],['../classaudio__tools_1_1_l_e_d_output.html#aa4dd40c7c10f7adf35e3cfa26049206a',1,'audio_tools::LEDOutput::config()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#abdce6adc217a5bbe546410c3b46afee9',1,'audio_tools::LEDOutputUnoR4::config()'],['../classaudio__tools_1_1_tf_lite_audio_stream_base.html#a40f112d8a30e5084466a222e1fa981c9',1,'audio_tools::TfLiteAudioStreamBase::config()'],['../classaudio__tools_1_1_tf_lite_audio_stream.html#ad99fd151888361e48ab2b69b82cc8b86',1,'audio_tools::TfLiteAudioStream::config()'],['../classaudio__tools_1_1_opus_audio_decoder.html#a702c40d253c27d3b7203361e1f49fc43',1,'audio_tools::OpusAudioDecoder::config()'],['../classaudio__tools_1_1_opus_audio_encoder.html#a450169e1dd55d42ad9be4232e6bc3f7e',1,'audio_tools::OpusAudioEncoder::config()']]],
+ ['configequilizer3bands_237',['ConfigEquilizer3Bands',['../structaudio__tools_1_1_config_equilizer3_bands.html',1,'audio_tools']]],
+ ['configure_238',['configure',['../classaudio__tools_1_1_a_a_c_decoder_f_d_k.html#ae6fd8edc1395f60442dba5e8738b24bf',1,'audio_tools::AACDecoderFDK']]],
+ ['consume_239',['consume',['../classaudio__tools_1_1_a_v_i_decoder.html#aba97c16a038da99ec61d3b3145513742',1,'audio_tools::AVIDecoder']]],
+ ['consumesample_240',['ConsumeSample',['../classaudio__tools_1_1_audio_output_with_callback.html#aa330cbf7c03b775167621cbdb24f79f0',1,'audio_tools::AudioOutputWithCallback']]],
+ ['containerbinary_2eh_241',['ContainerBinary.h',['../_container_binary_8h.html',1,'']]],
+ ['containermp4_242',['ContainerMP4',['../classaudio__tools_1_1_container_m_p4.html',1,'audio_tools']]],
+ ['containertarget_243',['ContainerTarget',['../classaudio__tools_1_1_container_target.html',1,'audio_tools']]],
+ ['containertargetprint_244',['ContainerTargetPrint',['../classaudio__tools_1_1_container_target_print.html',1,'audio_tools']]],
+ ['contains_245',['contains',['../classaudio__tools_1_1_str.html#a72c701b627c222f397e4d2e38ab310b5',1,'audio_tools::Str']]],
+ ['contenttype_246',['contentType',['../classaudio__tools_1_1_h_l_s_parser.html#a90bfaf533d2e31333a61152b1681d40e',1,'audio_tools::HLSParser']]],
+ ['convert_247',['convert',['../classaudio__tools_1_1_number_converter.html#ad847c72f19ba5bcd8ab8e2f4e138c592',1,'audio_tools::NumberConverter::convert()'],['../classaudio__tools_1_1_fade.html#a43d670c57ac17e04543faa6e546c7007',1,'audio_tools::Fade::convert()']]],
+ ['converter1channel_248',['Converter1Channel',['../classaudio__tools_1_1_converter1_channel.html',1,'audio_tools']]],
+ ['converterautocenter_249',['ConverterAutoCenter',['../classaudio__tools_1_1_converter_auto_center.html',1,'audio_tools']]],
+ ['converterautocentert_250',['ConverterAutoCenterT',['../classaudio__tools_1_1_converter_auto_center_t.html',1,'audio_tools']]],
+ ['converterfillleftandright_251',['ConverterFillLeftAndRight',['../classaudio__tools_1_1_converter_fill_left_and_right.html',1,'audio_tools']]],
+ ['converternchannels_252',['ConverterNChannels',['../classaudio__tools_1_1_converter_n_channels.html',1,'ConverterNChannels< T, FT >'],['../classaudio__tools_1_1_converter_n_channels.html#adfb04e4efe202405fa2728dafc42a1fc',1,'audio_tools::ConverterNChannels::ConverterNChannels()']]],
+ ['converternchannels_3c_20t_2c_20tf_20_3e_253',['ConverterNChannels< T, TF >',['../classaudio__tools_1_1_converter_n_channels.html',1,'audio_tools']]],
+ ['converters_254',['Converters',['../group__convert.html',1,'']]],
+ ['converterscaler_255',['ConverterScaler',['../classaudio__tools_1_1_converter_scaler.html',1,'audio_tools']]],
+ ['converterstream_256',['ConverterStream',['../classaudio__tools_1_1_converter_stream.html',1,'audio_tools']]],
+ ['converterswitchleftandright_257',['ConverterSwitchLeftAndRight',['../classaudio__tools_1_1_converter_switch_left_and_right.html',1,'audio_tools']]],
+ ['convertertointernaldacformat_258',['ConverterToInternalDACFormat',['../classaudio__tools_1_1_converter_to_internal_d_a_c_format.html',1,'audio_tools']]],
+ ['convertfloatbuffertoint_259',['convertFloatBufferToInt',['../classaudio__tools_1_1_faust_stream.html#a9666116563bb180048bd43ce4b35b9d4',1,'audio_tools::FaustStream']]],
+ ['converting_20streams_260',['Converting Streams',['../group__transform.html',1,'']]],
+ ['convertintbuffertofloat_261',['convertIntBufferToFloat',['../classaudio__tools_1_1_faust_stream.html#a9a705dabc6f28b5a343790a35d1b03b0',1,'audio_tools::FaustStream']]],
+ ['copy_262',['copy',['../classaudio__tools_1_1_maximilian.html#aaa6c087511a52e64fc9ad92820c7c0a8',1,'audio_tools::Maximilian::copy()'],['../classaudio__tools_1_1_streaming_decoder.html#a09b4fd0a2bd2c7c07c01fd12ae456c98',1,'audio_tools::StreamingDecoder::copy()'],['../classaudio__tools_1_1_f_l_a_c_decoder.html#a68b01f6d74485da20c323b9c68d906fd',1,'audio_tools::FLACDecoder::copy()'],['../classaudio__tools_1_1_vorbis_decoder.html#a01e1a5adb76fa670d21a598eca436c5e',1,'audio_tools::VorbisDecoder::copy()'],['../classaudio__tools_1_1_audio_server.html#a68b01f6d74485da20c323b9c68d906fd',1,'audio_tools::AudioServer::copy()'],['../classaudio__tools_1_1_audio_server_ex.html#a72c4ecea0edfb6a9f9c05edc57b35c19',1,'audio_tools::AudioServerEx::copy()'],['../classaudio__tools_1_1_audio_player.html#af62138cf6d06e41ae7d0535e4ecdeeb2',1,'audio_tools::AudioPlayer::copy()'],['../classaudio__tools_1_1_stream_copy_t.html#aecb44a6d385121be2179187d45520331',1,'audio_tools::StreamCopyT::copy()'],['../classaudio__tools_1_1_stream_copy.html#a226bbd7cd5d674fabacfb94711178728',1,'audio_tools::StreamCopy::copy(BaseConverter &converter)'],['../classaudio__tools_1_1_stream_copy.html#aecb44a6d385121be2179187d45520331',1,'audio_tools::StreamCopy::copy()']]],
+ ['copyall_263',['copyAll',['../classaudio__tools_1_1_stream_copy_t.html#a81c4dd3919c1824540306c995521c89a',1,'audio_tools::StreamCopyT']]],
+ ['copydecoder_264',['CopyDecoder',['../classaudio__tools_1_1_copy_decoder.html',1,'audio_tools']]],
+ ['copyencoder_265',['CopyEncoder',['../classaudio__tools_1_1_copy_encoder.html',1,'audio_tools']]],
+ ['copyfrom_266',['copyFrom',['../classaudio__tools_1_1_str_ext.html#a1990adb01593630f422dafbc812d98b5',1,'audio_tools::StrExt::copyFrom()'],['../structaudio__tools_1_1_audio_info.html#a029ace15f5ede8def0a6ab5c97a81b25',1,'audio_tools::AudioInfo::copyFrom()']]],
+ ['copyms_267',['copyMs',['../classaudio__tools_1_1_stream_copy_t.html#a0a5e6527d329e850fa0f18bcd7647871',1,'audio_tools::StreamCopyT']]],
+ ['copyn_268',['copyN',['../classaudio__tools_1_1_stream_copy_t.html#a674594d79037e62a14a91a5394496644',1,'audio_tools::StreamCopyT']]],
+ ['count_269',['count',['../classaudio__tools_1_1_str.html#a943139c86181bafa601216f68120fd9d',1,'audio_tools::Str']]],
+ ['cs_5fpin_270',['cs_pin',['../classaudio__tools_1_1_v_s1053_config.html#aed65b23a4e5c39c4267c5730833e70db',1,'audio_tools::VS1053Config']]],
+ ['csvoutput_271',['CsvOutput',['../classaudio__tools_1_1_csv_output.html',1,'CsvOutput< T >'],['../classaudio__tools_1_1_csv_output.html#a8c7898b349ec81163c029c92f5925313',1,'audio_tools::CsvOutput::CsvOutput()']]],
+ ['currentsamplerate_272',['currentSampleRate',['../classaudio__tools_1_1_timer_callback_audio_stream.html#a2c71403874040c006bd209dda47933ef',1,'audio_tools::TimerCallbackAudioStream']]]
];
diff --git a/search/all_4.js b/search/all_4.js
index db9c6e7231..9e511d6b7e 100644
--- a/search/all_4.js
+++ b/search/all_4.js
@@ -1,57 +1,57 @@
var searchData=
[
- ['data_274',['data',['../classaudio__tools_1_1_slice.html#a1699472936b80a88d3fc8096975d21b2',1,'audio_tools::Slice::data()'],['../classaudio__tools_1_1_single_buffer.html#a1699472936b80a88d3fc8096975d21b2',1,'audio_tools::SingleBuffer::data()']]],
- ['dataarray_275',['dataArray',['../classaudio__tools_1_1_audio_espressif_f_f_t.html#a3ab68b0efd4737f9d467c0767efdeded',1,'audio_tools::AudioEspressifFFT::dataArray()'],['../classaudio__tools_1_1_audio_kiss_f_f_t.html#a43c6d95f5f877b6958d5625bb91593fb',1,'audio_tools::AudioKissFFT::dataArray()']]],
- ['datanode_276',['DataNode',['../structaudio__tools_1_1_dynamic_memory_stream_1_1_data_node.html',1,'DynamicMemoryStream::DataNode'],['../structaudio__tools_1_1_dynamic_memory_stream_1_1_data_node.html#a291f181d7085deac74711e35106a5ff4',1,'audio_tools::DynamicMemoryStream::DataNode::DataNode()']]],
- ['debounce_277',['debounce',['../classaudio__tools_1_1_debouncer.html#add1855eb9494720e78650a34d4b209f9',1,'audio_tools::Debouncer']]],
- ['debouncer_278',['Debouncer',['../classaudio__tools_1_1_debouncer.html',1,'audio_tools']]],
- ['decimate_279',['Decimate',['../classaudio__tools_1_1_decimate.html',1,'audio_tools']]],
- ['decimatet_280',['DecimateT',['../classaudio__tools_1_1_decimate_t.html',1,'audio_tools']]],
- ['decimation_281',['decimation',['../classaudio__tools_1_1_p_w_m_driver_renesas.html#ad156409972690be7326305843a75a137',1,'audio_tools::PWMDriverRenesas::decimation()'],['../classaudio__tools_1_1_driver_p_w_m_base.html#ab384cb1f6477fbea20479be533e2c9ec',1,'audio_tools::DriverPWMBase::decimation()']]],
- ['decode_282',['decode',['../classaudio__tools_1_1_m_p3_decoder_mini.html#ae5f4be3ed9889ce9be7fcd69f0668e34',1,'audio_tools::MP3DecoderMini::decode()'],['../classaudio__tools_1_1_container_m_p4.html#adad9b4faff502c052c0d14005f33390b',1,'audio_tools::ContainerMP4::decode()']]],
- ['decodemetadata_283',['decodeMetaData',['../classaudio__tools_1_1_audio_player.html#a061d2503580a033bd7c9e7edfc7df838',1,'audio_tools::AudioPlayer']]],
- ['decoder_284',['decoder',['../classaudio__tools_1_1_encoded_audio_output.html#a11f7ddac5cfa81a408fd32a35875db47',1,'audio_tools::EncodedAudioOutput']]],
- ['decoder_285',['Decoder',['../group__decoder.html',1,'']]],
- ['decoderbase64_286',['DecoderBase64',['../classaudio__tools_1_1_decoder_base64.html',1,'DecoderBase64'],['../classaudio__tools_1_1_decoder_base64.html#abba0530ed589348b1efe110a116608c0',1,'audio_tools::DecoderBase64::DecoderBase64(Print &out)'],['../classaudio__tools_1_1_decoder_base64.html#a921e83cf581fdc1da5fd8523dd70ae39',1,'audio_tools::DecoderBase64::DecoderBase64()']]],
- ['decoderbasic_287',['DecoderBasic',['../classaudio__tools_1_1_decoder_basic.html',1,'DecoderBasic'],['../classaudio__tools_1_1_decoder_basic.html#af39b476160b6c64c6a7457896c58340e',1,'audio_tools::DecoderBasic::DecoderBasic(Print &out_stream, AudioInfoSupport &bi)'],['../classaudio__tools_1_1_decoder_basic.html#a60208fd31bb7247372be8ebdf3b30778',1,'audio_tools::DecoderBasic::DecoderBasic(Print &out_stream, bool active=true)'],['../classaudio__tools_1_1_decoder_basic.html#a0c68abf5a699fc57eb5a97bb83197bef',1,'audio_tools::DecoderBasic::DecoderBasic()']]],
- ['decoderfloat_288',['DecoderFloat',['../classaudio__tools_1_1_decoder_float.html',1,'DecoderFloat'],['../classaudio__tools_1_1_decoder_float.html#a8ea88d37e15daae590c27c9f870ae146',1,'audio_tools::DecoderFloat::DecoderFloat(Print &out_stream, AudioInfoSupport &bi)'],['../classaudio__tools_1_1_decoder_float.html#ab6d4f45f8982babb5244c20144b2a4f1',1,'audio_tools::DecoderFloat::DecoderFloat(Print &out_stream, bool active=true)'],['../classaudio__tools_1_1_decoder_float.html#a52ffd315745e877211eda5bcdba3aeba',1,'audio_tools::DecoderFloat::DecoderFloat()']]],
- ['decoderhelix_289',['DecoderHelix',['../classaudio__tools_1_1_decoder_helix.html',1,'audio_tools']]],
- ['decoderl16_290',['DecoderL16',['../classaudio__tools_1_1_decoder_l16.html',1,'DecoderL16'],['../classaudio__tools_1_1_decoder_l16.html#a872f348018ac776926bfda76fbba5160',1,'audio_tools::DecoderL16::DecoderL16(Print &out_stream, bool active=true)'],['../classaudio__tools_1_1_decoder_l16.html#a9e40c832d9e74ba24703fea281b7b199',1,'audio_tools::DecoderL16::DecoderL16()'],['../classaudio__tools_1_1_decoder_l16.html#a832f915dec149398faaf60750df3e064',1,'audio_tools::DecoderL16::DecoderL16(Print &out_stream, AudioInfoSupport &bi)']]],
- ['decoderl8_291',['DecoderL8',['../classaudio__tools_1_1_decoder_l8.html',1,'DecoderL8'],['../classaudio__tools_1_1_decoder_l8.html#a9b8fd0691c7d2d970f82313be5c74241',1,'audio_tools::DecoderL8::DecoderL8(Print &out_stream, bool active=true)'],['../classaudio__tools_1_1_decoder_l8.html#a1601a5fb7baa9f58dffbc5aa8ab1db8e',1,'audio_tools::DecoderL8::DecoderL8(Print &out_stream, AudioInfoSupport &bi)'],['../classaudio__tools_1_1_decoder_l8.html#afe56dd630e1c6b569f2cf9ff1353ff7f',1,'audio_tools::DecoderL8::DecoderL8(bool isSigned=false)']]],
- ['default_5fdata_5fcallback_292',['default_data_callback',['../classaudio__tools_1_1_container_m_p4.html#a999cf9e39e4f5ed3da49f68ee50e61b5',1,'audio_tools::ContainerMP4']]],
- ['default_5fis_5fheader_5fcallback_293',['default_is_header_callback',['../classaudio__tools_1_1_container_m_p4.html#ac19a34fbe54daa32498f582f1f4b1778',1,'audio_tools::ContainerMP4']]],
- ['default_5fvolume_294',['default_volume',['../classaudio__tools_1_1_w_m8960_config.html#aea30ac0f7cacb6ab91909ccb0865c852',1,'audio_tools::WM8960Config']]],
- ['defaultconfig_295',['defaultConfig',['../classaudio__tools_1_1_s_t_k_generator.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::STKGenerator::defaultConfig()'],['../classaudio__tools_1_1_audio_kit_stream.html#a8e62ff0b232f96ea37ca156e2e6108c2',1,'audio_tools::AudioKitStream::defaultConfig()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#ae9a3bb7e3a6034fc0dd9249499701aff',1,'audio_tools::AudioFFTBase::defaultConfig()'],['../classaudio__tools_1_1_i2_s_stream.html#a72661c546cdee7de3302d7d3fda10332',1,'audio_tools::I2SStream::defaultConfig()'],['../classaudio__tools_1_1_timer_callback_audio_stream.html#a575242c29642bac1b68da9660ede35a1',1,'audio_tools::TimerCallbackAudioStream::defaultConfig()'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#a72661c546cdee7de3302d7d3fda10332',1,'audio_tools::I2SDriverSTM32::defaultConfig()'],['../classaudio__tools_1_1_l_e_d_output.html#aaba1380b847be94f1cb6428ed68efb37',1,'audio_tools::LEDOutput::defaultConfig()'],['../classaudio__tools_1_1_resample_stream.html#af52118d79bafb3eefdd7e6138f15b9e7',1,'audio_tools::ResampleStream::defaultConfig()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#ab865c67526dd06c245d082b9cf5af561',1,'audio_tools::LEDOutputUnoR4::defaultConfig()'],['../classaudio__tools_1_1_r_t_s_p_format_audio_tools.html#ad7bf7c93ebcce49daec84761d55b5587',1,'audio_tools::RTSPFormatAudioTools::defaultConfig()'],['../classaudio__tools_1_1_r_t_s_p_format_opus.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::RTSPFormatOpus::defaultConfig()'],['../classaudio__tools_1_1_r_t_s_p_format_abt_x.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::RTSPFormatAbtX::defaultConfig()'],['../classaudio__tools_1_1_r_t_s_p_format_g_s_m.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::RTSPFormatGSM::defaultConfig()'],['../classaudio__tools_1_1_r_t_s_p_format_g711.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::RTSPFormatG711::defaultConfig()'],['../classaudio__tools_1_1_r_t_s_p_format_p_c_m.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::RTSPFormatPCM::defaultConfig()'],['../classaudio__tools_1_1_r_t_s_p_format_p_c_m8.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::RTSPFormatPCM8::defaultConfig()'],['../classaudio__tools_1_1_csv_output.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::CsvOutput::defaultConfig()'],['../classaudio__tools_1_1_s_p_d_i_f_output.html#a4c9c41e75e159fa1bd88ab194dae85f8',1,'audio_tools::SPDIFOutput::defaultConfig()'],['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a8336a067ed98f798b5fe70512aa161d5',1,'audio_tools::I2SDriverNanoBLE::defaultConfig()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#a8336a067ed98f798b5fe70512aa161d5',1,'audio_tools::I2SDriverESP8266::defaultConfig()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#a8336a067ed98f798b5fe70512aa161d5',1,'audio_tools::I2SDriverESP32V1::defaultConfig()'],['../classaudio__tools_1_1_analog_audio_stream.html#ac4b262f441e13eb8054c879d9dd57edd',1,'audio_tools::AnalogAudioStream::defaultConfig()'],['../classaudio__tools_1_1_i2_s_driver_s_a_m_d.html#a8336a067ed98f798b5fe70512aa161d5',1,'audio_tools::I2SDriverSAMD::defaultConfig()']]],
- ['defaultpwmaudiooutputcallback_296',['defaultPWMAudioOutputCallback',['../classaudio__tools_1_1_p_w_m_driver_a_v_r.html#ac74c69e5f370226829182a11466619eb',1,'audio_tools::PWMDriverAVR::defaultPWMAudioOutputCallback()'],['../classaudio__tools_1_1_p_w_m_driver_m_b_e_d.html#afba856d7d0cf53662bb1432aaaa69ddd',1,'audio_tools::PWMDriverMBED::defaultPWMAudioOutputCallback()'],['../classaudio__tools_1_1_p_w_m_driver_renesas.html#afba856d7d0cf53662bb1432aaaa69ddd',1,'audio_tools::PWMDriverRenesas::defaultPWMAudioOutputCallback()'],['../classaudio__tools_1_1_p_w_m_driver_s_t_m32.html#afba856d7d0cf53662bb1432aaaa69ddd',1,'audio_tools::PWMDriverSTM32::defaultPWMAudioOutputCallback()'],['../namespaceaudio__tools.html#a55868847c0ef334611f3ffa71a64619e',1,'audio_tools::defaultPWMAudioOutputCallback()']]],
- ['defaultsynthesizerchannel_297',['DefaultSynthesizerChannel',['../classaudio__tools_1_1_default_synthesizer_channel.html',1,'DefaultSynthesizerChannel'],['../classaudio__tools_1_1_default_synthesizer_channel.html#acbc0aecded2f64493e23bdf390501f51',1,'audio_tools::DefaultSynthesizerChannel::DefaultSynthesizerChannel(DefaultSynthesizerChannel &ch)=default'],['../classaudio__tools_1_1_default_synthesizer_channel.html#a17bc5cf42632c3b60d88ad9f017ceb6e',1,'audio_tools::DefaultSynthesizerChannel::DefaultSynthesizerChannel()=default']]],
- ['del_298',['del',['../classaudio__tools_1_1_http_request.html#af8cd2e3982f338b00a0ec7e4b6733728',1,'audio_tools::HttpRequest']]],
- ['delay_299',['Delay',['../classaudio__tools_1_1_delay.html',1,'audio_tools']]],
- ['delay_300',['delay',['../namespaceaudio__tools.html#a504241b61d3595ad9356f8fccef71c20',1,'audio_tools']]],
- ['delay_301',['Delay',['../classaudio__tools_1_1_delay.html#a08a40da972e55ecd4498328ba78b4eaf',1,'audio_tools::Delay']]],
- ['delaybuffer_302',['delayBuffer',['../classaudio__tools_1_1_delay_effect_base.html#ab5acc4a7b1ce6abce4bbdbf24bbe2f6c',1,'audio_tools::DelayEffectBase']]],
- ['delayeffectbase_303',['DelayEffectBase',['../classaudio__tools_1_1_delay_effect_base.html',1,'DelayEffectBase'],['../classaudio__tools_1_1_delay_effect_base.html#ade1e18b102a83c30f8b850bd3f17df9d',1,'audio_tools::DelayEffectBase::DelayEffectBase()']]],
- ['delayincrement_304',['delayIncrement',['../classaudio__tools_1_1_simple_delay.html#a2139f41832ac5fbbdc9fee046998c127',1,'audio_tools::SimpleDelay']]],
- ['delaysample_305',['delaySample',['../classaudio__tools_1_1_delay_effect_base.html#ac667f23b583721b9191a881fd25cc817',1,'audio_tools::DelayEffectBase']]],
- ['delaytimesamples_306',['delayTimeSamples',['../classaudio__tools_1_1_delay_effect_base.html#a952ab38025a0b55c7c118c0bff5acc9d',1,'audio_tools::DelayEffectBase']]],
- ['delaytransitiontime_307',['delayTransitionTime',['../classaudio__tools_1_1_simple_delay.html#a91d5b98c18a29bf3fb5bbeb026751db8',1,'audio_tools::SimpleDelay']]],
- ['delayvideoframe_308',['delayVideoFrame',['../classaudio__tools_1_1_video_audio_buffered_sync.html#ab185a032a2de20c9a22b393096dcee76',1,'audio_tools::VideoAudioBufferedSync::delayVideoFrame()'],['../classaudio__tools_1_1_video_audio_sync.html#a82d0d8428e0c5ffb4049739d01ac753a',1,'audio_tools::VideoAudioSync::delayVideoFrame()']]],
- ['deleteoldrecords_309',['deleteOldRecords',['../classaudio__tools_1_1_tf_lite_micro_speech_recognize_commands.html#a311d1bc7b9336d5db6f2701831a22cce',1,'audio_tools::TfLiteMicroSpeechRecognizeCommands']]],
- ['delimiter_310',['delimiter',['../classaudio__tools_1_1_csv_output.html#ab75ed2e3a626c991e9e225cb298e3609',1,'audio_tools::CsvOutput']]],
- ['destroy_311',['destroy',['../classdsp__memory__manager.html#a105a00e96586f86c11e457b26ffa588f',1,'dsp_memory_manager']]],
- ['digitalread_312',['digitalRead',['../_no_arduino_8h.html#ae1e3d979645a535a8ce49f935392d8bc',1,'NoArduino.h']]],
- ['display_313',['display',['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a1e5b20fed15743656bb6d2e6a6ea6269',1,'audio_tools::LEDOutputUnoR4::display()'],['../classaudio__tools_1_1_l_e_d_output.html#a1e5b20fed15743656bb6d2e6a6ea6269',1,'audio_tools::LEDOutput::display()']]],
- ['distortion_314',['Distortion',['../classaudio__tools_1_1_distortion.html',1,'Distortion'],['../classaudio__tools_1_1_distortion.html#a30cd5fedc5a0cda1b3a290f45ccb004d',1,'audio_tools::Distortion::Distortion()']]],
- ['doloop_315',['doLoop',['../classaudio__tools_1_1_audio_server.html#abdd99e468f667b748b0c9bfd395163d7',1,'audio_tools::AudioServer']]],
- ['driver_316',['driver',['../classaudio__tools_1_1_analog_audio_stream.html#ab8bcb0b11d13b5c5bc739c6f759bf8cc',1,'audio_tools::AnalogAudioStream::driver()'],['../classaudio__tools_1_1_i2_s_stream.html#a689451e34493ddc13d4f8456089df1a5',1,'audio_tools::I2SStream::driver()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#ad360e5c2be36d28d74715e70f31a9f98',1,'audio_tools::AudioFFTBase::driver()'],['../classaudio__tools_1_1_p_w_m_audio_output.html#a4abfe5871953c2b0a3c3fb64b56368c5',1,'audio_tools::PWMAudioOutput::driver()'],['../classaudio__tools_1_1_timer_alarm_repeating.html#a13ccc53ef2743d6add288d2d644f6bf3',1,'audio_tools::TimerAlarmRepeating::driver()']]],
- ['drivercommon_317',['DriverCommon',['../structaudio__tools_1_1_i2_s_driver_e_s_p32_v1_1_1_driver_common.html',1,'audio_tools::I2SDriverESP32V1']]],
- ['driveri2s_318',['DriverI2S',['../structaudio__tools_1_1_i2_s_driver_e_s_p32_v1_1_1_driver_i2_s.html',1,'audio_tools::I2SDriverESP32V1']]],
- ['driverpwmbase_319',['DriverPWMBase',['../classaudio__tools_1_1_driver_p_w_m_base.html',1,'audio_tools']]],
- ['dsp_320',['dsp',['../classdsp.html',1,'']]],
- ['dsp_321',['DSP',['../group__dsp.html',1,'']]],
- ['dsp_5fmemory_5fmanager_322',['dsp_memory_manager',['../classdsp__memory__manager.html',1,'']]],
- ['dynamicmemorystream_323',['DynamicMemoryStream',['../classaudio__tools_1_1_dynamic_memory_stream.html',1,'audio_tools']]],
- ['dynarray_324',['DynArray',['../classffft_1_1_dyn_array.html',1,'ffft']]],
- ['dynarray_3c_20datatype_20_3e_325',['DynArray< DataType >',['../classffft_1_1_dyn_array.html',1,'ffft']]],
- ['dynarray_3c_20ffft_3a_3aoscsincos_20_3e_326',['DynArray< ffft::OscSinCos >',['../classffft_1_1_dyn_array.html',1,'ffft']]],
- ['dynarray_3c_20long_20_3e_327',['DynArray< long >',['../classffft_1_1_dyn_array.html',1,'ffft']]]
+ ['data_273',['data',['../classaudio__tools_1_1_slice.html#a1699472936b80a88d3fc8096975d21b2',1,'audio_tools::Slice::data()'],['../classaudio__tools_1_1_single_buffer.html#a1699472936b80a88d3fc8096975d21b2',1,'audio_tools::SingleBuffer::data()']]],
+ ['dataarray_274',['dataArray',['../classaudio__tools_1_1_audio_espressif_f_f_t.html#a3ab68b0efd4737f9d467c0767efdeded',1,'audio_tools::AudioEspressifFFT::dataArray()'],['../classaudio__tools_1_1_audio_kiss_f_f_t.html#a43c6d95f5f877b6958d5625bb91593fb',1,'audio_tools::AudioKissFFT::dataArray()']]],
+ ['datanode_275',['DataNode',['../structaudio__tools_1_1_dynamic_memory_stream_1_1_data_node.html',1,'DynamicMemoryStream::DataNode'],['../structaudio__tools_1_1_dynamic_memory_stream_1_1_data_node.html#a291f181d7085deac74711e35106a5ff4',1,'audio_tools::DynamicMemoryStream::DataNode::DataNode()']]],
+ ['debounce_276',['debounce',['../classaudio__tools_1_1_debouncer.html#add1855eb9494720e78650a34d4b209f9',1,'audio_tools::Debouncer']]],
+ ['debouncer_277',['Debouncer',['../classaudio__tools_1_1_debouncer.html',1,'audio_tools']]],
+ ['decimate_278',['Decimate',['../classaudio__tools_1_1_decimate.html',1,'audio_tools']]],
+ ['decimatet_279',['DecimateT',['../classaudio__tools_1_1_decimate_t.html',1,'audio_tools']]],
+ ['decimation_280',['decimation',['../classaudio__tools_1_1_p_w_m_driver_renesas.html#ad156409972690be7326305843a75a137',1,'audio_tools::PWMDriverRenesas::decimation()'],['../classaudio__tools_1_1_driver_p_w_m_base.html#ab384cb1f6477fbea20479be533e2c9ec',1,'audio_tools::DriverPWMBase::decimation()']]],
+ ['decode_281',['decode',['../classaudio__tools_1_1_m_p3_decoder_mini.html#ae5f4be3ed9889ce9be7fcd69f0668e34',1,'audio_tools::MP3DecoderMini::decode()'],['../classaudio__tools_1_1_container_m_p4.html#adad9b4faff502c052c0d14005f33390b',1,'audio_tools::ContainerMP4::decode()']]],
+ ['decodemetadata_282',['decodeMetaData',['../classaudio__tools_1_1_audio_player.html#a061d2503580a033bd7c9e7edfc7df838',1,'audio_tools::AudioPlayer']]],
+ ['decoder_283',['decoder',['../classaudio__tools_1_1_encoded_audio_output.html#a11f7ddac5cfa81a408fd32a35875db47',1,'audio_tools::EncodedAudioOutput']]],
+ ['decoder_284',['Decoder',['../group__decoder.html',1,'']]],
+ ['decoderbase64_285',['DecoderBase64',['../classaudio__tools_1_1_decoder_base64.html',1,'DecoderBase64'],['../classaudio__tools_1_1_decoder_base64.html#abba0530ed589348b1efe110a116608c0',1,'audio_tools::DecoderBase64::DecoderBase64(Print &out)'],['../classaudio__tools_1_1_decoder_base64.html#a921e83cf581fdc1da5fd8523dd70ae39',1,'audio_tools::DecoderBase64::DecoderBase64()']]],
+ ['decoderbasic_286',['DecoderBasic',['../classaudio__tools_1_1_decoder_basic.html',1,'DecoderBasic'],['../classaudio__tools_1_1_decoder_basic.html#af39b476160b6c64c6a7457896c58340e',1,'audio_tools::DecoderBasic::DecoderBasic(Print &out_stream, AudioInfoSupport &bi)'],['../classaudio__tools_1_1_decoder_basic.html#a60208fd31bb7247372be8ebdf3b30778',1,'audio_tools::DecoderBasic::DecoderBasic(Print &out_stream, bool active=true)'],['../classaudio__tools_1_1_decoder_basic.html#a0c68abf5a699fc57eb5a97bb83197bef',1,'audio_tools::DecoderBasic::DecoderBasic()']]],
+ ['decoderfloat_287',['DecoderFloat',['../classaudio__tools_1_1_decoder_float.html',1,'DecoderFloat'],['../classaudio__tools_1_1_decoder_float.html#a8ea88d37e15daae590c27c9f870ae146',1,'audio_tools::DecoderFloat::DecoderFloat(Print &out_stream, AudioInfoSupport &bi)'],['../classaudio__tools_1_1_decoder_float.html#ab6d4f45f8982babb5244c20144b2a4f1',1,'audio_tools::DecoderFloat::DecoderFloat(Print &out_stream, bool active=true)'],['../classaudio__tools_1_1_decoder_float.html#a52ffd315745e877211eda5bcdba3aeba',1,'audio_tools::DecoderFloat::DecoderFloat()']]],
+ ['decoderhelix_288',['DecoderHelix',['../classaudio__tools_1_1_decoder_helix.html',1,'audio_tools']]],
+ ['decoderl16_289',['DecoderL16',['../classaudio__tools_1_1_decoder_l16.html',1,'DecoderL16'],['../classaudio__tools_1_1_decoder_l16.html#a872f348018ac776926bfda76fbba5160',1,'audio_tools::DecoderL16::DecoderL16(Print &out_stream, bool active=true)'],['../classaudio__tools_1_1_decoder_l16.html#a9e40c832d9e74ba24703fea281b7b199',1,'audio_tools::DecoderL16::DecoderL16()'],['../classaudio__tools_1_1_decoder_l16.html#a832f915dec149398faaf60750df3e064',1,'audio_tools::DecoderL16::DecoderL16(Print &out_stream, AudioInfoSupport &bi)']]],
+ ['decoderl8_290',['DecoderL8',['../classaudio__tools_1_1_decoder_l8.html',1,'DecoderL8'],['../classaudio__tools_1_1_decoder_l8.html#a9b8fd0691c7d2d970f82313be5c74241',1,'audio_tools::DecoderL8::DecoderL8(Print &out_stream, bool active=true)'],['../classaudio__tools_1_1_decoder_l8.html#a1601a5fb7baa9f58dffbc5aa8ab1db8e',1,'audio_tools::DecoderL8::DecoderL8(Print &out_stream, AudioInfoSupport &bi)'],['../classaudio__tools_1_1_decoder_l8.html#afe56dd630e1c6b569f2cf9ff1353ff7f',1,'audio_tools::DecoderL8::DecoderL8(bool isSigned=false)']]],
+ ['default_5fdata_5fcallback_291',['default_data_callback',['../classaudio__tools_1_1_container_m_p4.html#a999cf9e39e4f5ed3da49f68ee50e61b5',1,'audio_tools::ContainerMP4']]],
+ ['default_5fis_5fheader_5fcallback_292',['default_is_header_callback',['../classaudio__tools_1_1_container_m_p4.html#ac19a34fbe54daa32498f582f1f4b1778',1,'audio_tools::ContainerMP4']]],
+ ['default_5fvolume_293',['default_volume',['../classaudio__tools_1_1_w_m8960_config.html#aea30ac0f7cacb6ab91909ccb0865c852',1,'audio_tools::WM8960Config']]],
+ ['defaultconfig_294',['defaultConfig',['../classaudio__tools_1_1_l_e_d_output.html#aaba1380b847be94f1cb6428ed68efb37',1,'audio_tools::LEDOutput::defaultConfig()'],['../classaudio__tools_1_1_audio_kit_stream.html#a8e62ff0b232f96ea37ca156e2e6108c2',1,'audio_tools::AudioKitStream::defaultConfig()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#ae9a3bb7e3a6034fc0dd9249499701aff',1,'audio_tools::AudioFFTBase::defaultConfig()'],['../classaudio__tools_1_1_i2_s_stream.html#a72661c546cdee7de3302d7d3fda10332',1,'audio_tools::I2SStream::defaultConfig()'],['../classaudio__tools_1_1_timer_callback_audio_stream.html#a575242c29642bac1b68da9660ede35a1',1,'audio_tools::TimerCallbackAudioStream::defaultConfig()'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#a72661c546cdee7de3302d7d3fda10332',1,'audio_tools::I2SDriverSTM32::defaultConfig()'],['../classaudio__tools_1_1_s_t_k_generator.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::STKGenerator::defaultConfig()'],['../classaudio__tools_1_1_resample_stream.html#af52118d79bafb3eefdd7e6138f15b9e7',1,'audio_tools::ResampleStream::defaultConfig()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#ab865c67526dd06c245d082b9cf5af561',1,'audio_tools::LEDOutputUnoR4::defaultConfig()'],['../classaudio__tools_1_1_r_t_s_p_format_audio_tools.html#ad7bf7c93ebcce49daec84761d55b5587',1,'audio_tools::RTSPFormatAudioTools::defaultConfig()'],['../classaudio__tools_1_1_r_t_s_p_format_opus.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::RTSPFormatOpus::defaultConfig()'],['../classaudio__tools_1_1_r_t_s_p_format_abt_x.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::RTSPFormatAbtX::defaultConfig()'],['../classaudio__tools_1_1_r_t_s_p_format_g_s_m.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::RTSPFormatGSM::defaultConfig()'],['../classaudio__tools_1_1_r_t_s_p_format_g711.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::RTSPFormatG711::defaultConfig()'],['../classaudio__tools_1_1_r_t_s_p_format_p_c_m.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::RTSPFormatPCM::defaultConfig()'],['../classaudio__tools_1_1_r_t_s_p_format_p_c_m8.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::RTSPFormatPCM8::defaultConfig()'],['../classaudio__tools_1_1_csv_output.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::CsvOutput::defaultConfig()'],['../classaudio__tools_1_1_s_p_d_i_f_output.html#a4c9c41e75e159fa1bd88ab194dae85f8',1,'audio_tools::SPDIFOutput::defaultConfig()'],['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a8336a067ed98f798b5fe70512aa161d5',1,'audio_tools::I2SDriverNanoBLE::defaultConfig()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#a8336a067ed98f798b5fe70512aa161d5',1,'audio_tools::I2SDriverESP8266::defaultConfig()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#a8336a067ed98f798b5fe70512aa161d5',1,'audio_tools::I2SDriverESP32V1::defaultConfig()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32.html#a8336a067ed98f798b5fe70512aa161d5',1,'audio_tools::I2SDriverESP32::defaultConfig()'],['../classaudio__tools_1_1_analog_audio_stream.html#ac4b262f441e13eb8054c879d9dd57edd',1,'audio_tools::AnalogAudioStream::defaultConfig()'],['../classaudio__tools_1_1_i2_s_driver_s_a_m_d.html#a8336a067ed98f798b5fe70512aa161d5',1,'audio_tools::I2SDriverSAMD::defaultConfig()']]],
+ ['defaultpwmaudiooutputcallback_295',['defaultPWMAudioOutputCallback',['../classaudio__tools_1_1_p_w_m_driver_a_v_r.html#ac74c69e5f370226829182a11466619eb',1,'audio_tools::PWMDriverAVR::defaultPWMAudioOutputCallback()'],['../classaudio__tools_1_1_p_w_m_driver_m_b_e_d.html#afba856d7d0cf53662bb1432aaaa69ddd',1,'audio_tools::PWMDriverMBED::defaultPWMAudioOutputCallback()'],['../classaudio__tools_1_1_p_w_m_driver_renesas.html#afba856d7d0cf53662bb1432aaaa69ddd',1,'audio_tools::PWMDriverRenesas::defaultPWMAudioOutputCallback()'],['../classaudio__tools_1_1_p_w_m_driver_s_t_m32.html#afba856d7d0cf53662bb1432aaaa69ddd',1,'audio_tools::PWMDriverSTM32::defaultPWMAudioOutputCallback()'],['../namespaceaudio__tools.html#a55868847c0ef334611f3ffa71a64619e',1,'audio_tools::defaultPWMAudioOutputCallback()']]],
+ ['defaultsynthesizerchannel_296',['DefaultSynthesizerChannel',['../classaudio__tools_1_1_default_synthesizer_channel.html',1,'DefaultSynthesizerChannel'],['../classaudio__tools_1_1_default_synthesizer_channel.html#acbc0aecded2f64493e23bdf390501f51',1,'audio_tools::DefaultSynthesizerChannel::DefaultSynthesizerChannel(DefaultSynthesizerChannel &ch)=default'],['../classaudio__tools_1_1_default_synthesizer_channel.html#a17bc5cf42632c3b60d88ad9f017ceb6e',1,'audio_tools::DefaultSynthesizerChannel::DefaultSynthesizerChannel()=default']]],
+ ['del_297',['del',['../classaudio__tools_1_1_http_request.html#af8cd2e3982f338b00a0ec7e4b6733728',1,'audio_tools::HttpRequest']]],
+ ['delay_298',['Delay',['../classaudio__tools_1_1_delay.html',1,'audio_tools']]],
+ ['delay_299',['delay',['../namespaceaudio__tools.html#a504241b61d3595ad9356f8fccef71c20',1,'audio_tools']]],
+ ['delay_300',['Delay',['../classaudio__tools_1_1_delay.html#a08a40da972e55ecd4498328ba78b4eaf',1,'audio_tools::Delay']]],
+ ['delaybuffer_301',['delayBuffer',['../classaudio__tools_1_1_delay_effect_base.html#ab5acc4a7b1ce6abce4bbdbf24bbe2f6c',1,'audio_tools::DelayEffectBase']]],
+ ['delayeffectbase_302',['DelayEffectBase',['../classaudio__tools_1_1_delay_effect_base.html',1,'DelayEffectBase'],['../classaudio__tools_1_1_delay_effect_base.html#ade1e18b102a83c30f8b850bd3f17df9d',1,'audio_tools::DelayEffectBase::DelayEffectBase()']]],
+ ['delayincrement_303',['delayIncrement',['../classaudio__tools_1_1_simple_delay.html#a2139f41832ac5fbbdc9fee046998c127',1,'audio_tools::SimpleDelay']]],
+ ['delaysample_304',['delaySample',['../classaudio__tools_1_1_delay_effect_base.html#ac667f23b583721b9191a881fd25cc817',1,'audio_tools::DelayEffectBase']]],
+ ['delaytimesamples_305',['delayTimeSamples',['../classaudio__tools_1_1_delay_effect_base.html#a952ab38025a0b55c7c118c0bff5acc9d',1,'audio_tools::DelayEffectBase']]],
+ ['delaytransitiontime_306',['delayTransitionTime',['../classaudio__tools_1_1_simple_delay.html#a91d5b98c18a29bf3fb5bbeb026751db8',1,'audio_tools::SimpleDelay']]],
+ ['delayvideoframe_307',['delayVideoFrame',['../classaudio__tools_1_1_video_audio_buffered_sync.html#ab185a032a2de20c9a22b393096dcee76',1,'audio_tools::VideoAudioBufferedSync::delayVideoFrame()'],['../classaudio__tools_1_1_video_audio_sync.html#a82d0d8428e0c5ffb4049739d01ac753a',1,'audio_tools::VideoAudioSync::delayVideoFrame()']]],
+ ['deleteoldrecords_308',['deleteOldRecords',['../classaudio__tools_1_1_tf_lite_micro_speech_recognize_commands.html#a311d1bc7b9336d5db6f2701831a22cce',1,'audio_tools::TfLiteMicroSpeechRecognizeCommands']]],
+ ['delimiter_309',['delimiter',['../classaudio__tools_1_1_csv_output.html#ab75ed2e3a626c991e9e225cb298e3609',1,'audio_tools::CsvOutput']]],
+ ['destroy_310',['destroy',['../classdsp__memory__manager.html#a105a00e96586f86c11e457b26ffa588f',1,'dsp_memory_manager']]],
+ ['digitalread_311',['digitalRead',['../_no_arduino_8h.html#ae1e3d979645a535a8ce49f935392d8bc',1,'NoArduino.h']]],
+ ['display_312',['display',['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a1e5b20fed15743656bb6d2e6a6ea6269',1,'audio_tools::LEDOutputUnoR4::display()'],['../classaudio__tools_1_1_l_e_d_output.html#a1e5b20fed15743656bb6d2e6a6ea6269',1,'audio_tools::LEDOutput::display()']]],
+ ['distortion_313',['Distortion',['../classaudio__tools_1_1_distortion.html',1,'Distortion'],['../classaudio__tools_1_1_distortion.html#a30cd5fedc5a0cda1b3a290f45ccb004d',1,'audio_tools::Distortion::Distortion()']]],
+ ['doloop_314',['doLoop',['../classaudio__tools_1_1_audio_server.html#abdd99e468f667b748b0c9bfd395163d7',1,'audio_tools::AudioServer']]],
+ ['driver_315',['driver',['../classaudio__tools_1_1_analog_audio_stream.html#ab8bcb0b11d13b5c5bc739c6f759bf8cc',1,'audio_tools::AnalogAudioStream::driver()'],['../classaudio__tools_1_1_i2_s_stream.html#a689451e34493ddc13d4f8456089df1a5',1,'audio_tools::I2SStream::driver()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#ad360e5c2be36d28d74715e70f31a9f98',1,'audio_tools::AudioFFTBase::driver()'],['../classaudio__tools_1_1_p_w_m_audio_output.html#a4abfe5871953c2b0a3c3fb64b56368c5',1,'audio_tools::PWMAudioOutput::driver()'],['../classaudio__tools_1_1_timer_alarm_repeating.html#a13ccc53ef2743d6add288d2d644f6bf3',1,'audio_tools::TimerAlarmRepeating::driver()']]],
+ ['drivercommon_316',['DriverCommon',['../structaudio__tools_1_1_i2_s_driver_e_s_p32_v1_1_1_driver_common.html',1,'audio_tools::I2SDriverESP32V1']]],
+ ['driveri2s_317',['DriverI2S',['../structaudio__tools_1_1_i2_s_driver_e_s_p32_v1_1_1_driver_i2_s.html',1,'audio_tools::I2SDriverESP32V1']]],
+ ['driverpwmbase_318',['DriverPWMBase',['../classaudio__tools_1_1_driver_p_w_m_base.html',1,'audio_tools']]],
+ ['dsp_319',['dsp',['../classdsp.html',1,'']]],
+ ['dsp_320',['DSP',['../group__dsp.html',1,'']]],
+ ['dsp_5fmemory_5fmanager_321',['dsp_memory_manager',['../classdsp__memory__manager.html',1,'']]],
+ ['dynamicmemorystream_322',['DynamicMemoryStream',['../classaudio__tools_1_1_dynamic_memory_stream.html',1,'audio_tools']]],
+ ['dynarray_323',['DynArray',['../classffft_1_1_dyn_array.html',1,'ffft']]],
+ ['dynarray_3c_20datatype_20_3e_324',['DynArray< DataType >',['../classffft_1_1_dyn_array.html',1,'ffft']]],
+ ['dynarray_3c_20ffft_3a_3aoscsincos_20_3e_325',['DynArray< ffft::OscSinCos >',['../classffft_1_1_dyn_array.html',1,'ffft']]],
+ ['dynarray_3c_20long_20_3e_326',['DynArray< long >',['../classffft_1_1_dyn_array.html',1,'ffft']]]
];
diff --git a/search/all_5.js b/search/all_5.js
index 72b3637af3..f9e2f78eee 100644
--- a/search/all_5.js
+++ b/search/all_5.js
@@ -1,39 +1,39 @@
var searchData=
[
- ['effectiveoutputsamplerate_328',['effectiveOutputSampleRate',['../classaudio__tools_1_1_driver_p_w_m_base.html#a13eb726740a261b50f38fb0301812631',1,'audio_tools::DriverPWMBase::effectiveOutputSampleRate()'],['../classaudio__tools_1_1_analog_driver_arduino.html#a4aee67299e632d4905756d880e072a71',1,'audio_tools::AnalogDriverArduino::effectiveOutputSampleRate()']]],
- ['effects_329',['Effects',['../group__effects.html',1,'']]],
- ['effectsuitebase_330',['EffectSuiteBase',['../classaudio__tools_1_1_effect_suite_base.html',1,'audio_tools']]],
- ['encodedaudiooutput_331',['EncodedAudioOutput',['../classaudio__tools_1_1_encoded_audio_output.html',1,'audio_tools']]],
- ['encodedaudiostream_332',['EncodedAudioStream',['../classaudio__tools_1_1_encoded_audio_stream.html',1,'audio_tools']]],
- ['encoder_333',['Encoder',['../group__encoder.html',1,'']]],
- ['encoder_334',['encoder',['../classaudio__tools_1_1_encoded_audio_output.html#a1772c3a009a751e5eceb43fedb0c6c43',1,'audio_tools::EncodedAudioOutput']]],
- ['encoderbase64_335',['EncoderBase64',['../classaudio__tools_1_1_encoder_base64.html',1,'audio_tools']]],
- ['encoderbasic_336',['EncoderBasic',['../classaudio__tools_1_1_encoder_basic.html',1,'audio_tools']]],
- ['encoderfloat_337',['EncoderFloat',['../classaudio__tools_1_1_encoder_float.html',1,'audio_tools']]],
- ['encoderl16_338',['EncoderL16',['../classaudio__tools_1_1_encoder_l16.html',1,'audio_tools']]],
- ['encoderl8_339',['EncoderL8',['../classaudio__tools_1_1_encoder_l8.html',1,'audio_tools']]],
- ['encodingissupported_340',['encodingIsSupported',['../classaudio__tools_1_1_meta_data_i_d3_v2.html#a418b7e3ade4f63e8fbf532a3ea86ee45',1,'audio_tools::MetaDataID3V2']]],
- ['end_341',['end',['../classaudio__tools_1_1_e_s_p_now_stream.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::ESPNowStream::end()'],['../classaudio__tools_1_1_i2_s_stream.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::I2SStream::end()'],['../classaudio__tools_1_1_faust_stream.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::FaustStream::end()'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::I2SDriverSTM32::end()'],['../classdsp__memory__manager.html#adc34417a19a7b70626d19c41072d72a5',1,'dsp_memory_manager::end()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::AudioFFTBase::end()'],['../classaudio__tools_1_1_audio_kit_stream.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::AudioKitStream::end()'],['../classaudio__tools_1_1_sound_generator.html#adc34417a19a7b70626d19c41072d72a5',1,'audio_tools::SoundGenerator::end()'],['../classaudio__tools_1_1_i2_s_driver_s_a_m_d.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::I2SDriverSAMD::end()'],['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::I2SDriverNanoBLE::end()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::I2SDriverESP8266::end()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::I2SDriverESP32V1::end()'],['../classaudio__tools_1_1_i_c_y_stream.html#ae827632720ddd6f3037ef1ee69aa3f41',1,'audio_tools::ICYStream::end()'],['../classaudio__tools_1_1_h_l_s_parser.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::HLSParser::end()'],['../classaudio__tools_1_1_http_header.html#a37f5b0b22e759383dce4a78ddd05a3d4',1,'audio_tools::HttpHeader::end()'],['../classaudio__tools_1_1_v_s1053_stream.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::VS1053Stream::end()'],['../classaudio__tools_1_1_w_m8960_stream.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::WM8960Stream::end()'],['../classaudio__tools_1_1_meta_data_i_c_y.html#ae827632720ddd6f3037ef1ee69aa3f41',1,'audio_tools::MetaDataICY::end()'],['../classaudio__tools_1_1_meta_data_i_d3_v1.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::MetaDataID3V1::end()'],['../classaudio__tools_1_1_meta_data_i_d3_v2.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::MetaDataID3V2::end()'],['../classaudio__tools_1_1_timer_alarm_repeating_driver_renesas.html#af545ab12986d2fe462f1013c3bafb5f3',1,'audio_tools::TimerAlarmRepeatingDriverRenesas::end()'],['../classaudio__tools_1_1_output_mixer.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::OutputMixer::end()'],['../classaudio__tools_1_1_on_off_output.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::OnOffOutput::end()'],['../classaudio__tools_1_1_generated_sound_stream.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::GeneratedSoundStream::end()'],['../classaudio__tools_1_1_queue_stream.html#ae827632720ddd6f3037ef1ee69aa3f41',1,'audio_tools::QueueStream::end()'],['../classaudio__tools_1_1_input_mixer.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::InputMixer::end()'],['../classaudio__tools_1_1_input_merge.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::InputMerge::end()'],['../classaudio__tools_1_1_timer_callback_audio_stream.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::TimerCallbackAudioStream::end()'],['../classaudio__tools_1_1_last_sample_fader_t.html#a1891b4bec7e479ab636081eaae8a206d',1,'audio_tools::LastSampleFaderT::end()'],['../classaudio__tools_1_1_last_sample_fader.html#a1891b4bec7e479ab636081eaae8a206d',1,'audio_tools::LastSampleFader::end()'],['../classaudio__tools_1_1_stream_copy_t.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::StreamCopyT::end()'],['../classaudio__tools_1_1_ogg_container_output.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::OggContainerOutput::end()'],['../classaudio__tools_1_1_analog_audio_stream.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::AnalogAudioStream::end()'],['../classaudio__tools_1_1_analog_driver_e_s_p32.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::AnalogDriverESP32::end()'],['../classaudio__tools_1_1_analog_driver_e_s_p32_v1.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::AnalogDriverESP32V1::end()'],['../classaudio__tools_1_1_analog_driver_m_b_e_d.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::AnalogDriverMBED::end()'],['../classaudio__tools_1_1_streaming_decoder.html#aa540e86022c1f72380d1014d98f38f43',1,'audio_tools::StreamingDecoder::end()'],['../classaudio__tools_1_1_encoded_audio_output.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::EncodedAudioOutput::end()'],['../classaudio__tools_1_1_a_a_c_decoder_f_a_a_d.html#adc34417a19a7b70626d19c41072d72a5',1,'audio_tools::AACDecoderFAAD::end()'],['../classaudio__tools_1_1_a_a_c_decoder_helix.html#ae827632720ddd6f3037ef1ee69aa3f41',1,'audio_tools::AACDecoderHelix::end()'],['../classaudio__tools_1_1_encoder_base64.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::EncoderBase64::end()'],['../classaudio__tools_1_1_encoder_basic.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::EncoderBasic::end()'],['../classaudio__tools_1_1_f_l_a_c_decoder.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::FLACDecoder::end()'],['../classaudio__tools_1_1_f_l_a_c_encoder.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::FLACEncoder::end()'],['../classaudio__tools_1_1_decoder_helix.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::DecoderHelix::end()'],['../classaudio__tools_1_1_encoder_l16.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::EncoderL16::end()'],['../classaudio__tools_1_1_encoder_l8.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::EncoderL8::end()'],['../classaudio__tools_1_1_m_p3_decoder_helix.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::MP3DecoderHelix::end()'],['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::MP3DecoderMAD::end()'],['../classaudio__tools_1_1_m_p3_decoder_mini.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::MP3DecoderMini::end()'],['../classaudio__tools_1_1_opus_audio_encoder.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::OpusAudioEncoder::end()'],['../classaudio__tools_1_1_s_b_c_encoder.html#adc34417a19a7b70626d19c41072d72a5',1,'audio_tools::SBCEncoder::end()'],['../classaudio__tools_1_1_vorbis_decoder.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::VorbisDecoder::end()'],['../classaudio__tools_1_1_w_a_v_encoder.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::WAVEncoder::end()'],['../classaudio__tools_1_1_container_m_p4.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::ContainerMP4::end()'],['../classaudio__tools_1_1_ogg_container_encoder.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::OggContainerEncoder::end()'],['../classaudio__tools_1_1_encoder_float.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::EncoderFloat::end()']]],
- ['endframe_342',['endFrame',['../classaudio__tools_1_1_jpeg_open_c_v.html#a6045acdc41b4fc3d1b3d55a6ec60eadb',1,'audio_tools::JpegOpenCV::endFrame()'],['../classaudio__tools_1_1_jpeg_t_f_t.html#a6045acdc41b4fc3d1b3d55a6ec60eadb',1,'audio_tools::JpegTFT::endFrame()']]],
- ['endswith_343',['endsWith',['../classaudio__tools_1_1_str.html#a36ea1ac4ff77d39eeed580726d77316e',1,'audio_tools::Str']]],
- ['endswithignorecase_344',['endsWithIgnoreCase',['../classaudio__tools_1_1_str.html#ad2398aedf2b539a7f37ae4c9130266ae',1,'audio_tools::Str']]],
- ['envelope_345',['envelope',['../classaudio__tools_1_1_filter_effect_base.html#a7853ad48a9c41a7e1a9fd1294426b3e7',1,'audio_tools::FilterEffectBase']]],
- ['envelopefilter_346',['EnvelopeFilter',['../classaudio__tools_1_1_envelope_filter.html',1,'EnvelopeFilter'],['../classaudio__tools_1_1_envelope_filter.html#a9d9070a81ff12576f6b4aa853e7c5dd2',1,'audio_tools::EnvelopeFilter::EnvelopeFilter()']]],
- ['envelopefollower_347',['envelopeFollower',['../classaudio__tools_1_1_envelope_filter.html#a8017440a793e8369f02aa5683abef99a',1,'audio_tools::EnvelopeFilter']]],
- ['eqstate_348',['EQSTATE',['../structaudio__tools_1_1_equilizer3_bands_1_1_e_q_s_t_a_t_e.html',1,'audio_tools::Equilizer3Bands']]],
- ['equals_349',['equals',['../classaudio__tools_1_1_str.html#a121dcd3a7cd975ef3aae9fe71ae7fa3c',1,'audio_tools::Str']]],
- ['equalsignorecase_350',['equalsIgnoreCase',['../classaudio__tools_1_1_str.html#a4e7ea003fddd17648db4b62572e93b8d',1,'audio_tools::Str']]],
- ['equilizer_351',['Equilizer',['../group__equilizer.html',1,'']]],
- ['equilizer3bands_352',['Equilizer3Bands',['../classaudio__tools_1_1_equilizer3_bands.html',1,'audio_tools']]],
- ['error_353',['error',['../classaudio__tools_1_1_delay_effect_base.html#a7a3172cc98e93d8eadfb9ab30373799e',1,'audio_tools::DelayEffectBase']]],
- ['error_5fcallback_354',['error_callback',['../classaudio__tools_1_1_f_l_a_c_decoder.html#ae0a385215d06bca05d1212caa0d0fa23',1,'audio_tools::FLACDecoder']]],
- ['esp32_2ddsp_355',['esp32-dsp',['../group__fft-dsp.html',1,'']]],
- ['esp32_2dfft_356',['esp32-fft',['../group__fft-esp32.html',1,'']]],
- ['esp3288audiooutput_357',['ESP3288AudioOutput',['../classaudio__tools_1_1_e_s_p3288_audio_output.html',1,'audio_tools']]],
- ['espnowstream_358',['ESPNowStream',['../classaudio__tools_1_1_e_s_p_now_stream.html',1,'audio_tools']]],
- ['espnowstreamconfig_359',['ESPNowStreamConfig',['../structaudio__tools_1_1_e_s_p_now_stream_config.html',1,'audio_tools']]],
- ['evaluate_360',['evaluate',['../classaudio__tools_1_1_tf_lite_micro_speech_recognize_commands.html#a181badeaa9a17a4c8e58d54bf6f6e105',1,'audio_tools::TfLiteMicroSpeechRecognizeCommands']]],
- ['executecallback_361',['executeCallback',['../classaudio__tools_1_1_i_c_y_url_setup.html#aa338f5db0a886ca8ebd39680c5566246',1,'audio_tools::ICYUrlSetup']]],
- ['exists_362',['exists',['../class_u_i.html#a33e750cdf3390bcf14077e72fa3c3744',1,'UI']]],
- ['exponentialvolumecontrol_363',['ExponentialVolumeControl',['../classaudio__tools_1_1_exponential_volume_control.html',1,'audio_tools']]]
+ ['effectiveoutputsamplerate_327',['effectiveOutputSampleRate',['../classaudio__tools_1_1_driver_p_w_m_base.html#a13eb726740a261b50f38fb0301812631',1,'audio_tools::DriverPWMBase::effectiveOutputSampleRate()'],['../classaudio__tools_1_1_analog_driver_arduino.html#a4aee67299e632d4905756d880e072a71',1,'audio_tools::AnalogDriverArduino::effectiveOutputSampleRate()']]],
+ ['effects_328',['Effects',['../group__effects.html',1,'']]],
+ ['effectsuitebase_329',['EffectSuiteBase',['../classaudio__tools_1_1_effect_suite_base.html',1,'audio_tools']]],
+ ['encodedaudiooutput_330',['EncodedAudioOutput',['../classaudio__tools_1_1_encoded_audio_output.html',1,'audio_tools']]],
+ ['encodedaudiostream_331',['EncodedAudioStream',['../classaudio__tools_1_1_encoded_audio_stream.html',1,'audio_tools']]],
+ ['encoder_332',['Encoder',['../group__encoder.html',1,'']]],
+ ['encoder_333',['encoder',['../classaudio__tools_1_1_encoded_audio_output.html#a1772c3a009a751e5eceb43fedb0c6c43',1,'audio_tools::EncodedAudioOutput']]],
+ ['encoderbase64_334',['EncoderBase64',['../classaudio__tools_1_1_encoder_base64.html',1,'audio_tools']]],
+ ['encoderbasic_335',['EncoderBasic',['../classaudio__tools_1_1_encoder_basic.html',1,'audio_tools']]],
+ ['encoderfloat_336',['EncoderFloat',['../classaudio__tools_1_1_encoder_float.html',1,'audio_tools']]],
+ ['encoderl16_337',['EncoderL16',['../classaudio__tools_1_1_encoder_l16.html',1,'audio_tools']]],
+ ['encoderl8_338',['EncoderL8',['../classaudio__tools_1_1_encoder_l8.html',1,'audio_tools']]],
+ ['encodingissupported_339',['encodingIsSupported',['../classaudio__tools_1_1_meta_data_i_d3_v2.html#a418b7e3ade4f63e8fbf532a3ea86ee45',1,'audio_tools::MetaDataID3V2']]],
+ ['end_340',['end',['../classaudio__tools_1_1_e_s_p_now_stream.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::ESPNowStream::end()'],['../classaudio__tools_1_1_i2_s_stream.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::I2SStream::end()'],['../classaudio__tools_1_1_faust_stream.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::FaustStream::end()'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::I2SDriverSTM32::end()'],['../classdsp__memory__manager.html#adc34417a19a7b70626d19c41072d72a5',1,'dsp_memory_manager::end()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::AudioFFTBase::end()'],['../classaudio__tools_1_1_audio_kit_stream.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::AudioKitStream::end()'],['../classaudio__tools_1_1_h_l_s_parser.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::HLSParser::end()'],['../classaudio__tools_1_1_i2_s_driver_s_a_m_d.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::I2SDriverSAMD::end()'],['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::I2SDriverNanoBLE::end()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::I2SDriverESP8266::end()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::I2SDriverESP32V1::end()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::I2SDriverESP32::end()'],['../classaudio__tools_1_1_http_header.html#a37f5b0b22e759383dce4a78ddd05a3d4',1,'audio_tools::HttpHeader::end()'],['../classaudio__tools_1_1_i_c_y_stream.html#ae827632720ddd6f3037ef1ee69aa3f41',1,'audio_tools::ICYStream::end()'],['../classaudio__tools_1_1_v_s1053_stream.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::VS1053Stream::end()'],['../classaudio__tools_1_1_w_m8960_stream.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::WM8960Stream::end()'],['../classaudio__tools_1_1_meta_data_i_c_y.html#ae827632720ddd6f3037ef1ee69aa3f41',1,'audio_tools::MetaDataICY::end()'],['../classaudio__tools_1_1_meta_data_i_d3_v1.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::MetaDataID3V1::end()'],['../classaudio__tools_1_1_meta_data_i_d3_v2.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::MetaDataID3V2::end()'],['../classaudio__tools_1_1_timer_alarm_repeating_driver_renesas.html#af545ab12986d2fe462f1013c3bafb5f3',1,'audio_tools::TimerAlarmRepeatingDriverRenesas::end()'],['../classaudio__tools_1_1_output_mixer.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::OutputMixer::end()'],['../classaudio__tools_1_1_on_off_output.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::OnOffOutput::end()'],['../classaudio__tools_1_1_generated_sound_stream.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::GeneratedSoundStream::end()'],['../classaudio__tools_1_1_queue_stream.html#ae827632720ddd6f3037ef1ee69aa3f41',1,'audio_tools::QueueStream::end()'],['../classaudio__tools_1_1_input_mixer.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::InputMixer::end()'],['../classaudio__tools_1_1_input_merge.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::InputMerge::end()'],['../classaudio__tools_1_1_timer_callback_audio_stream.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::TimerCallbackAudioStream::end()'],['../classaudio__tools_1_1_last_sample_fader_t.html#a1891b4bec7e479ab636081eaae8a206d',1,'audio_tools::LastSampleFaderT::end()'],['../classaudio__tools_1_1_last_sample_fader.html#a1891b4bec7e479ab636081eaae8a206d',1,'audio_tools::LastSampleFader::end()'],['../classaudio__tools_1_1_stream_copy_t.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::StreamCopyT::end()'],['../classaudio__tools_1_1_ogg_container_encoder.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::OggContainerEncoder::end()'],['../classaudio__tools_1_1_analog_audio_stream.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::AnalogAudioStream::end()'],['../classaudio__tools_1_1_analog_driver_e_s_p32.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::AnalogDriverESP32::end()'],['../classaudio__tools_1_1_analog_driver_e_s_p32_v1.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::AnalogDriverESP32V1::end()'],['../classaudio__tools_1_1_analog_driver_m_b_e_d.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::AnalogDriverMBED::end()'],['../classaudio__tools_1_1_streaming_decoder.html#aa540e86022c1f72380d1014d98f38f43',1,'audio_tools::StreamingDecoder::end()'],['../classaudio__tools_1_1_encoded_audio_output.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::EncodedAudioOutput::end()'],['../classaudio__tools_1_1_a_a_c_decoder_f_a_a_d.html#adc34417a19a7b70626d19c41072d72a5',1,'audio_tools::AACDecoderFAAD::end()'],['../classaudio__tools_1_1_a_a_c_decoder_helix.html#ae827632720ddd6f3037ef1ee69aa3f41',1,'audio_tools::AACDecoderHelix::end()'],['../classaudio__tools_1_1_encoder_base64.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::EncoderBase64::end()'],['../classaudio__tools_1_1_encoder_basic.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::EncoderBasic::end()'],['../classaudio__tools_1_1_f_l_a_c_decoder.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::FLACDecoder::end()'],['../classaudio__tools_1_1_f_l_a_c_encoder.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::FLACEncoder::end()'],['../classaudio__tools_1_1_encoder_float.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::EncoderFloat::end()'],['../classaudio__tools_1_1_encoder_l16.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::EncoderL16::end()'],['../classaudio__tools_1_1_encoder_l8.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::EncoderL8::end()'],['../classaudio__tools_1_1_m_p3_decoder_helix.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::MP3DecoderHelix::end()'],['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::MP3DecoderMAD::end()'],['../classaudio__tools_1_1_m_p3_decoder_mini.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::MP3DecoderMini::end()'],['../classaudio__tools_1_1_opus_audio_encoder.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::OpusAudioEncoder::end()'],['../classaudio__tools_1_1_s_b_c_encoder.html#adc34417a19a7b70626d19c41072d72a5',1,'audio_tools::SBCEncoder::end()'],['../classaudio__tools_1_1_vorbis_decoder.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::VorbisDecoder::end()'],['../classaudio__tools_1_1_w_a_v_encoder.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::WAVEncoder::end()'],['../classaudio__tools_1_1_container_m_p4.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::ContainerMP4::end()'],['../classaudio__tools_1_1_ogg_container_output.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::OggContainerOutput::end()'],['../classaudio__tools_1_1_sound_generator.html#adc34417a19a7b70626d19c41072d72a5',1,'audio_tools::SoundGenerator::end()'],['../classaudio__tools_1_1_decoder_helix.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::DecoderHelix::end()']]],
+ ['endframe_341',['endFrame',['../classaudio__tools_1_1_jpeg_open_c_v.html#a6045acdc41b4fc3d1b3d55a6ec60eadb',1,'audio_tools::JpegOpenCV::endFrame()'],['../classaudio__tools_1_1_jpeg_t_f_t.html#a6045acdc41b4fc3d1b3d55a6ec60eadb',1,'audio_tools::JpegTFT::endFrame()']]],
+ ['endswith_342',['endsWith',['../classaudio__tools_1_1_str.html#a36ea1ac4ff77d39eeed580726d77316e',1,'audio_tools::Str']]],
+ ['endswithignorecase_343',['endsWithIgnoreCase',['../classaudio__tools_1_1_str.html#ad2398aedf2b539a7f37ae4c9130266ae',1,'audio_tools::Str']]],
+ ['envelope_344',['envelope',['../classaudio__tools_1_1_filter_effect_base.html#a7853ad48a9c41a7e1a9fd1294426b3e7',1,'audio_tools::FilterEffectBase']]],
+ ['envelopefilter_345',['EnvelopeFilter',['../classaudio__tools_1_1_envelope_filter.html',1,'EnvelopeFilter'],['../classaudio__tools_1_1_envelope_filter.html#a9d9070a81ff12576f6b4aa853e7c5dd2',1,'audio_tools::EnvelopeFilter::EnvelopeFilter()']]],
+ ['envelopefollower_346',['envelopeFollower',['../classaudio__tools_1_1_envelope_filter.html#a8017440a793e8369f02aa5683abef99a',1,'audio_tools::EnvelopeFilter']]],
+ ['eqstate_347',['EQSTATE',['../structaudio__tools_1_1_equilizer3_bands_1_1_e_q_s_t_a_t_e.html',1,'audio_tools::Equilizer3Bands']]],
+ ['equals_348',['equals',['../classaudio__tools_1_1_str.html#a121dcd3a7cd975ef3aae9fe71ae7fa3c',1,'audio_tools::Str']]],
+ ['equalsignorecase_349',['equalsIgnoreCase',['../classaudio__tools_1_1_str.html#a4e7ea003fddd17648db4b62572e93b8d',1,'audio_tools::Str']]],
+ ['equilizer_350',['Equilizer',['../group__equilizer.html',1,'']]],
+ ['equilizer3bands_351',['Equilizer3Bands',['../classaudio__tools_1_1_equilizer3_bands.html',1,'audio_tools']]],
+ ['error_352',['error',['../classaudio__tools_1_1_delay_effect_base.html#a7a3172cc98e93d8eadfb9ab30373799e',1,'audio_tools::DelayEffectBase']]],
+ ['error_5fcallback_353',['error_callback',['../classaudio__tools_1_1_f_l_a_c_decoder.html#ae0a385215d06bca05d1212caa0d0fa23',1,'audio_tools::FLACDecoder']]],
+ ['esp32_2ddsp_354',['esp32-dsp',['../group__fft-dsp.html',1,'']]],
+ ['esp32_2dfft_355',['esp32-fft',['../group__fft-esp32.html',1,'']]],
+ ['esp3288audiooutput_356',['ESP3288AudioOutput',['../classaudio__tools_1_1_e_s_p3288_audio_output.html',1,'audio_tools']]],
+ ['espnowstream_357',['ESPNowStream',['../classaudio__tools_1_1_e_s_p_now_stream.html',1,'audio_tools']]],
+ ['espnowstreamconfig_358',['ESPNowStreamConfig',['../structaudio__tools_1_1_e_s_p_now_stream_config.html',1,'audio_tools']]],
+ ['evaluate_359',['evaluate',['../classaudio__tools_1_1_tf_lite_micro_speech_recognize_commands.html#a181badeaa9a17a4c8e58d54bf6f6e105',1,'audio_tools::TfLiteMicroSpeechRecognizeCommands']]],
+ ['executecallback_360',['executeCallback',['../classaudio__tools_1_1_i_c_y_url_setup.html#aa338f5db0a886ca8ebd39680c5566246',1,'audio_tools::ICYUrlSetup']]],
+ ['exists_361',['exists',['../class_u_i.html#a33e750cdf3390bcf14077e72fa3c3744',1,'UI']]],
+ ['exponentialvolumecontrol_362',['ExponentialVolumeControl',['../classaudio__tools_1_1_exponential_volume_control.html',1,'audio_tools']]]
];
diff --git a/search/all_6.js b/search/all_6.js
index 5de8ff9648..a3a018e0b5 100644
--- a/search/all_6.js
+++ b/search/all_6.js
@@ -1,76 +1,76 @@
var searchData=
[
- ['factor_364',['factor',['../classaudio__tools_1_1_window_function.html#ac8161847fa3a2b56a5119bcf6964e1ff',1,'audio_tools::WindowFunction::factor()'],['../classaudio__tools_1_1_converter_scaler.html#aa5508d91dd2d2d117aa91578d0d2df9a',1,'audio_tools::ConverterScaler::factor()']]],
- ['fade_365',['Fade',['../classaudio__tools_1_1_fade.html',1,'audio_tools']]],
- ['fadeconverter_366',['FadeConverter',['../classaudio__tools_1_1_fade_converter.html',1,'audio_tools']]],
- ['fadestream_367',['FadeStream',['../classaudio__tools_1_1_fade_stream.html',1,'audio_tools']]],
- ['fastsinegenerator_368',['FastSineGenerator',['../classaudio__tools_1_1_fast_sine_generator.html',1,'audio_tools']]],
- ['fauststream_369',['FaustStream',['../classaudio__tools_1_1_faust_stream.html',1,'FaustStream< DSP >'],['../classaudio__tools_1_1_faust_stream.html#a82221113a708cd20234ac05c1dcd8e0d',1,'audio_tools::FaustStream::FaustStream(Print &out, bool useSeparateOutputBuffer=true)'],['../classaudio__tools_1_1_faust_stream.html#a87d378c81d61469e2b9780b1244ba140',1,'audio_tools::FaustStream::FaustStream(bool useSeparateOutputBuffer=true)']]],
- ['fft_370',['FFT',['../group__fft.html',1,'']]],
- ['fft_5fgroup_5fbin_371',['fft_group_bin',['../classaudio__tools_1_1_f_f_t_display.html#a73b01b39dadcefeedf5dba96e198404d',1,'audio_tools::FFTDisplay']]],
- ['fft_5fmax_5fmagnitude_372',['fft_max_magnitude',['../classaudio__tools_1_1_f_f_t_display.html#ad497bbb193dd1bdd692ca56937aa41df',1,'audio_tools::FFTDisplay']]],
- ['fft_5fstart_5fbin_373',['fft_start_bin',['../classaudio__tools_1_1_f_f_t_display.html#a9bb26f83cc9e2a5a64ed305d9bb3a4fb',1,'audio_tools::FFTDisplay']]],
- ['fftcallback_374',['fftCallback',['../classaudio__tools_1_1_f_f_t_display.html#a7bdc13b501930dd228e4469fddfe7cdf',1,'audio_tools::FFTDisplay']]],
- ['fftdisplay_375',['FFTDisplay',['../classaudio__tools_1_1_f_f_t_display.html',1,'audio_tools']]],
- ['fftdisplay_376',['fftDisplay',['../classaudio__tools_1_1_l_e_d_output.html#a0c903e4f5408eee60896c234807c478b',1,'audio_tools::LEDOutput::fftDisplay()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a0c903e4f5408eee60896c234807c478b',1,'audio_tools::LEDOutputUnoR4::fftDisplay()']]],
- ['fftdriver_377',['FFTDriver',['../classaudio__tools_1_1_f_f_t_driver.html',1,'audio_tools']]],
- ['fftdrivercmsisfft_378',['FFTDriverCmsisFFT',['../classaudio__tools_1_1_f_f_t_driver_cmsis_f_f_t.html',1,'audio_tools']]],
- ['fftdriveresp32fft_379',['FFTDriverESP32FFT',['../classaudio__tools_1_1_f_f_t_driver_e_s_p32_f_f_t.html',1,'audio_tools']]],
- ['fftdriverespressiffft_380',['FFTDriverEspressifFFT',['../classaudio__tools_1_1_f_f_t_driver_espressif_f_f_t.html',1,'audio_tools']]],
- ['fftdriverkissfft_381',['FFTDriverKissFFT',['../classaudio__tools_1_1_f_f_t_driver_kiss_f_f_t.html',1,'audio_tools']]],
- ['fftdriverrealfft_382',['FFTDriverRealFFT',['../classaudio__tools_1_1_f_f_t_driver_real_f_f_t.html',1,'audio_tools']]],
- ['fftledoutput_383',['fftLEDOutput',['../namespaceaudio__tools.html#a95b23c6de7556f7c41facc4fa6994c81',1,'audio_tools']]],
- ['fftledoutputunor4_384',['fftLEDOutputUnoR4',['../namespaceaudio__tools.html#a31584fa887dbdd1545deb35f67d0e92a',1,'audio_tools']]],
- ['fftreal_385',['FFTReal',['../classffft_1_1_f_f_t_real.html',1,'ffft']]],
- ['fftreal_3c_20float_20_3e_386',['FFTReal< float >',['../classffft_1_1_f_f_t_real.html',1,'ffft']]],
- ['fftrealfixlen_387',['FFTRealFixLen',['../classffft_1_1_f_f_t_real_fix_len.html',1,'ffft']]],
- ['fftrealfixlenparam_388',['FFTRealFixLenParam',['../classffft_1_1_f_f_t_real_fix_len_param.html',1,'ffft']]],
- ['fftrealpassdirect_389',['FFTRealPassDirect',['../classffft_1_1_f_f_t_real_pass_direct.html',1,'ffft']]],
- ['fftrealpassinverse_390',['FFTRealPassInverse',['../classffft_1_1_f_f_t_real_pass_inverse.html',1,'ffft']]],
- ['fftrealselect_391',['FFTRealSelect',['../classffft_1_1_f_f_t_real_select.html',1,'ffft']]],
- ['fftrealusetrigo_392',['FFTRealUseTrigo',['../classffft_1_1_f_f_t_real_use_trigo.html',1,'ffft']]],
- ['fftwindows_2eh_393',['FFTWindows.h',['../_f_f_t_windows_8h.html',1,'']]],
- ['file_394',['File',['../classaudio__tools_1_1_file.html',1,'audio_tools']]],
- ['file_395',['file',['../classaudio__tools_1_1_file_loop_t.html#a83cb66697faa40006801dea201bb7be5',1,'audio_tools::FileLoopT']]],
- ['fileloop_396',['FileLoop',['../classaudio__tools_1_1_file_loop.html',1,'audio_tools']]],
- ['fileloopt_397',['FileLoopT',['../classaudio__tools_1_1_file_loop_t.html',1,'audio_tools']]],
- ['fileloopt_3c_20file_20_3e_398',['FileLoopT< File >',['../classaudio__tools_1_1_file_loop_t.html',1,'audio_tools']]],
- ['filename_399',['fileName',['../classaudio__tools_1_1_s_d_direct.html#a4f4660f16bc1e2739434c45502e26db0',1,'audio_tools::SDDirect::fileName()'],['../classaudio__tools_1_1_s_d_index.html#a4f4660f16bc1e2739434c45502e26db0',1,'audio_tools::SDIndex::fileName()']]],
- ['filenamepath_400',['fileNamePath',['../classaudio__tools_1_1_s_d_direct.html#a4af7f4426e5bc375af02bc454ecb0dea',1,'audio_tools::SDDirect::fileNamePath()'],['../classaudio__tools_1_1_s_d_index.html#a4af7f4426e5bc375af02bc454ecb0dea',1,'audio_tools::SDIndex::fileNamePath()']]],
- ['fileoutput_401',['FileOutput',['../classaudio__tools_1_1_file_output.html',1,'audio_tools']]],
- ['filter_402',['Filter',['../classaudio__tools_1_1_filter.html',1,'audio_tools']]],
- ['filter_3c_20ft_20_3e_403',['Filter< FT >',['../classaudio__tools_1_1_filter.html',1,'audio_tools']]],
- ['filterchain_404',['FilterChain',['../classaudio__tools_1_1_filter_chain.html',1,'audio_tools']]],
- ['filtereddelay_405',['FilteredDelay',['../classaudio__tools_1_1_filtered_delay.html',1,'FilteredDelay'],['../classaudio__tools_1_1_filtered_delay.html#a208abf3ff9a2bf2e9ce0ea2aa88d55f8',1,'audio_tools::FilteredDelay::FilteredDelay()']]],
- ['filteredstream_406',['FilteredStream',['../classaudio__tools_1_1_filtered_stream.html',1,'audio_tools']]],
- ['filtereffectbase_407',['FilterEffectBase',['../classaudio__tools_1_1_filter_effect_base.html',1,'FilterEffectBase'],['../classaudio__tools_1_1_filter_effect_base.html#aa7c2b0d8390e793095079a28d111dd40',1,'audio_tools::FilterEffectBase::FilterEffectBase()']]],
- ['filterorder_408',['filterOrder',['../classaudio__tools_1_1_filter_effect_base.html#a9d09c73fcc694ca39d4563a3d9b4f925',1,'audio_tools::FilterEffectBase']]],
- ['filters_409',['Filters',['../group__filter.html',1,'']]],
- ['find_410',['find',['../classaudio__tools_1_1_meta_data_filter.html#a6c5691819717efb0c6a96775b578b2e6',1,'audio_tools::MetaDataFilter']]],
- ['findeffect_411',['findEffect',['../classaudio__tools_1_1_audio_effect_stream_t.html#ab74dd95287679b2bd45a7bb17fb05991',1,'audio_tools::AudioEffectStreamT::findEffect()'],['../classaudio__tools_1_1_audio_effects.html#ab74dd95287679b2bd45a7bb17fb05991',1,'audio_tools::AudioEffects::findEffect()'],['../classaudio__tools_1_1_audio_effect_common.html#ab74dd95287679b2bd45a7bb17fb05991',1,'audio_tools::AudioEffectCommon::findEffect()']]],
- ['findtag_412',['findTag',['../classaudio__tools_1_1_meta_data_filter.html#aa5d50ca3ddc49de47baa1916c8862527',1,'audio_tools::MetaDataFilter::findTag()'],['../classaudio__tools_1_1_meta_data_i_d3_base.html#a6884754305d5834690f0d94a5be931d6',1,'audio_tools::MetaDataID3Base::findTag()']]],
- ['fir_413',['FIR',['../classaudio__tools_1_1_f_i_r.html',1,'audio_tools']]],
- ['firbuffer_414',['firBuffer',['../classaudio__tools_1_1_filter_effect_base.html#a71e949448a14b350c539b2e97e358e24',1,'audio_tools::FilterEffectBase']]],
- ['fircoefficients_415',['firCoefficients',['../classaudio__tools_1_1_filter_effect_base.html#a1b4b4166a56b76601a607fc863d8d05c',1,'audio_tools::FilterEffectBase']]],
- ['firstwrite_416',['firstWrite',['../classaudio__tools_1_1_s_b_c_decoder.html#af56a4e53afd50b73ae5f26566118aa09',1,'audio_tools::SBCDecoder']]],
- ['firtemp_417',['firTemp',['../classaudio__tools_1_1_filter_effect_base.html#a2dd5b6b21bf4c4cb09225de69f3f3171',1,'audio_tools::FilterEffectBase']]],
- ['flacdecoder_418',['FLACDecoder',['../classaudio__tools_1_1_f_l_a_c_decoder.html',1,'audio_tools']]],
- ['flacencoder_419',['FLACEncoder',['../classaudio__tools_1_1_f_l_a_c_encoder.html',1,'audio_tools']]],
- ['flattop_420',['FlatTop',['../classaudio__tools_1_1_flat_top.html',1,'audio_tools']]],
- ['float16_421',['float16',['../classaudio__tools_1_1float16.html',1,'audio_tools']]],
- ['float32_422',['float32',['../classaudio__tools_1_1float32.html',1,'audio_tools']]],
- ['float_5fto_5fhalf_423',['float_to_half',['../classaudio__tools_1_1float16.html#ad8c8cf2d9621a737f43993cf29f4bbf9',1,'audio_tools::float16']]],
- ['floattostring_424',['floatToString',['../classaudio__tools_1_1_str.html#a84ed111fd3a0268437c8e3cfe56cf1d6',1,'audio_tools::Str']]],
- ['flush_425',['flush',['../classaudio__tools_1_1_resample_stream.html#a04f2540d940cc37b5c2538ed8e5b54be',1,'audio_tools::ResampleStream::flush()'],['../classaudio__tools_1_1_buffered_stream.html#af654b48544c195ab99fe27e7bc3ed5fe',1,'audio_tools::BufferedStream::flush()'],['../classaudio__tools_1_1_i_c_y_stream_buffered.html#af654b48544c195ab99fe27e7bc3ed5fe',1,'audio_tools::ICYStreamBuffered::flush()'],['../classaudio__tools_1_1_buffered_task_stream.html#af654b48544c195ab99fe27e7bc3ed5fe',1,'audio_tools::BufferedTaskStream::flush()'],['../classaudio__tools_1_1_f_l_a_c_decoder.html#adac116554b543b7c4228c018a85882f5',1,'audio_tools::FLACDecoder::flush()'],['../classaudio__tools_1_1_m_p3_decoder_mini.html#adac116554b543b7c4228c018a85882f5',1,'audio_tools::MP3DecoderMini::flush()']]],
- ['flushmixer_426',['flushMixer',['../classaudio__tools_1_1_output_mixer.html#aa2299c86cec1b36ea50195df313dc05e',1,'audio_tools::OutputMixer']]],
- ['force_5fchannel_427',['force_channel',['../structaudio__tools_1_1_opus_encoder_settings.html#a66e4f9807114d63ed07bba1bd98cfdcc',1,'audio_tools::OpusEncoderSettings']]],
- ['format_428',['format',['../classaudio__tools_1_1_r_t_s_p_format_audio_tools.html#ad7ad9bd7c66af8cbaff4226cf8de3631',1,'audio_tools::RTSPFormatAudioTools::format()'],['../classaudio__tools_1_1_r_t_s_p_format_opus.html#a784939ec9a9f6985df7f11a3f1e29c7b',1,'audio_tools::RTSPFormatOpus::format()'],['../classaudio__tools_1_1_r_t_s_p_format_abt_x.html#a784939ec9a9f6985df7f11a3f1e29c7b',1,'audio_tools::RTSPFormatAbtX::format()'],['../classaudio__tools_1_1_r_t_s_p_format_g_s_m.html#a784939ec9a9f6985df7f11a3f1e29c7b',1,'audio_tools::RTSPFormatGSM::format()'],['../classaudio__tools_1_1_r_t_s_p_format_g711.html#a784939ec9a9f6985df7f11a3f1e29c7b',1,'audio_tools::RTSPFormatG711::format()'],['../classaudio__tools_1_1_r_t_s_p_format_p_c_m.html#a784939ec9a9f6985df7f11a3f1e29c7b',1,'audio_tools::RTSPFormatPCM::format()'],['../classaudio__tools_1_1_r_t_s_p_format_p_c_m8.html#a784939ec9a9f6985df7f11a3f1e29c7b',1,'audio_tools::RTSPFormatPCM8::format()']]],
- ['formatconverterstream_429',['FormatConverterStream',['../classaudio__tools_1_1_format_converter_stream.html',1,'audio_tools']]],
- ['frame_5fsizes_5fms_5fx2_430',['frame_sizes_ms_x2',['../structaudio__tools_1_1_opus_encoder_settings.html#a1cd9432fb6b95062adca18465db1a0f9',1,'audio_tools::OpusEncoderSettings']]],
- ['frameheader_431',['frameHeader',['../classaudio__tools_1_1_meta_data_i_d3_v2.html#ae1934083da81d1032c842756b6cec27b',1,'audio_tools::MetaDataID3V2']]],
- ['framelength_432',['frameLength',['../classaudio__tools_1_1_s_b_c_encoder.html#a8721dea59e7d446cb9566766c9a073b0',1,'audio_tools::SBCEncoder::frameLength()'],['../classaudio__tools_1_1_s_b_c_decoder.html#a8721dea59e7d446cb9566766c9a073b0',1,'audio_tools::SBCDecoder::frameLength()']]],
- ['frequency_433',['frequency',['../classaudio__tools_1_1_audio_f_f_t_base.html#ab5f1f1bf50599707ea0172e5f65fc8dc',1,'audio_tools::AudioFFTBase::frequency()'],['../classaudio__tools_1_1_p_w_m_driver_e_s_p32.html#a630cb46e9a0636a8f424157ae3c13bf5',1,'audio_tools::PWMDriverESP32::frequency()'],['../classaudio__tools_1_1_musical_notes.html#a521b24b3a00360cbab29a003e14eaa99',1,'audio_tools::MusicalNotes::frequency(MusicalNotesEnum note, uint8_t octave)'],['../classaudio__tools_1_1_musical_notes.html#ae76b8ddf1b2e70224370b22f516643be',1,'audio_tools::MusicalNotes::frequency(uint16_t idx)']]],
- ['frequencytomidinote_434',['frequencyToMidiNote',['../classaudio__tools_1_1_musical_notes.html#ac63e0b09fabb3b6d673024cdc4f0f1b6',1,'audio_tools::MusicalNotes']]],
- ['fs_435',['FS',['../classaudio__tools_1_1_f_s.html',1,'audio_tools']]],
- ['fuzz_436',['Fuzz',['../classaudio__tools_1_1_fuzz.html',1,'Fuzz'],['../classaudio__tools_1_1_fuzz.html#a36029f43e25bb0fae14d317621632c6a',1,'audio_tools::Fuzz::Fuzz()']]]
+ ['factor_363',['factor',['../classaudio__tools_1_1_window_function.html#ac8161847fa3a2b56a5119bcf6964e1ff',1,'audio_tools::WindowFunction::factor()'],['../classaudio__tools_1_1_converter_scaler.html#aa5508d91dd2d2d117aa91578d0d2df9a',1,'audio_tools::ConverterScaler::factor()']]],
+ ['fade_364',['Fade',['../classaudio__tools_1_1_fade.html',1,'audio_tools']]],
+ ['fadeconverter_365',['FadeConverter',['../classaudio__tools_1_1_fade_converter.html',1,'audio_tools']]],
+ ['fadestream_366',['FadeStream',['../classaudio__tools_1_1_fade_stream.html',1,'audio_tools']]],
+ ['fastsinegenerator_367',['FastSineGenerator',['../classaudio__tools_1_1_fast_sine_generator.html',1,'audio_tools']]],
+ ['fauststream_368',['FaustStream',['../classaudio__tools_1_1_faust_stream.html',1,'FaustStream< DSP >'],['../classaudio__tools_1_1_faust_stream.html#a82221113a708cd20234ac05c1dcd8e0d',1,'audio_tools::FaustStream::FaustStream(Print &out, bool useSeparateOutputBuffer=true)'],['../classaudio__tools_1_1_faust_stream.html#a87d378c81d61469e2b9780b1244ba140',1,'audio_tools::FaustStream::FaustStream(bool useSeparateOutputBuffer=true)']]],
+ ['fft_369',['FFT',['../group__fft.html',1,'']]],
+ ['fft_5fgroup_5fbin_370',['fft_group_bin',['../classaudio__tools_1_1_f_f_t_display.html#a73b01b39dadcefeedf5dba96e198404d',1,'audio_tools::FFTDisplay']]],
+ ['fft_5fmax_5fmagnitude_371',['fft_max_magnitude',['../classaudio__tools_1_1_f_f_t_display.html#ad497bbb193dd1bdd692ca56937aa41df',1,'audio_tools::FFTDisplay']]],
+ ['fft_5fstart_5fbin_372',['fft_start_bin',['../classaudio__tools_1_1_f_f_t_display.html#a9bb26f83cc9e2a5a64ed305d9bb3a4fb',1,'audio_tools::FFTDisplay']]],
+ ['fftcallback_373',['fftCallback',['../classaudio__tools_1_1_f_f_t_display.html#a7bdc13b501930dd228e4469fddfe7cdf',1,'audio_tools::FFTDisplay']]],
+ ['fftdisplay_374',['FFTDisplay',['../classaudio__tools_1_1_f_f_t_display.html',1,'audio_tools']]],
+ ['fftdisplay_375',['fftDisplay',['../classaudio__tools_1_1_l_e_d_output.html#a0c903e4f5408eee60896c234807c478b',1,'audio_tools::LEDOutput::fftDisplay()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a0c903e4f5408eee60896c234807c478b',1,'audio_tools::LEDOutputUnoR4::fftDisplay()']]],
+ ['fftdriver_376',['FFTDriver',['../classaudio__tools_1_1_f_f_t_driver.html',1,'audio_tools']]],
+ ['fftdrivercmsisfft_377',['FFTDriverCmsisFFT',['../classaudio__tools_1_1_f_f_t_driver_cmsis_f_f_t.html',1,'audio_tools']]],
+ ['fftdriveresp32fft_378',['FFTDriverESP32FFT',['../classaudio__tools_1_1_f_f_t_driver_e_s_p32_f_f_t.html',1,'audio_tools']]],
+ ['fftdriverespressiffft_379',['FFTDriverEspressifFFT',['../classaudio__tools_1_1_f_f_t_driver_espressif_f_f_t.html',1,'audio_tools']]],
+ ['fftdriverkissfft_380',['FFTDriverKissFFT',['../classaudio__tools_1_1_f_f_t_driver_kiss_f_f_t.html',1,'audio_tools']]],
+ ['fftdriverrealfft_381',['FFTDriverRealFFT',['../classaudio__tools_1_1_f_f_t_driver_real_f_f_t.html',1,'audio_tools']]],
+ ['fftledoutput_382',['fftLEDOutput',['../namespaceaudio__tools.html#a95b23c6de7556f7c41facc4fa6994c81',1,'audio_tools']]],
+ ['fftledoutputunor4_383',['fftLEDOutputUnoR4',['../namespaceaudio__tools.html#a31584fa887dbdd1545deb35f67d0e92a',1,'audio_tools']]],
+ ['fftreal_384',['FFTReal',['../classffft_1_1_f_f_t_real.html',1,'ffft']]],
+ ['fftreal_3c_20float_20_3e_385',['FFTReal< float >',['../classffft_1_1_f_f_t_real.html',1,'ffft']]],
+ ['fftrealfixlen_386',['FFTRealFixLen',['../classffft_1_1_f_f_t_real_fix_len.html',1,'ffft']]],
+ ['fftrealfixlenparam_387',['FFTRealFixLenParam',['../classffft_1_1_f_f_t_real_fix_len_param.html',1,'ffft']]],
+ ['fftrealpassdirect_388',['FFTRealPassDirect',['../classffft_1_1_f_f_t_real_pass_direct.html',1,'ffft']]],
+ ['fftrealpassinverse_389',['FFTRealPassInverse',['../classffft_1_1_f_f_t_real_pass_inverse.html',1,'ffft']]],
+ ['fftrealselect_390',['FFTRealSelect',['../classffft_1_1_f_f_t_real_select.html',1,'ffft']]],
+ ['fftrealusetrigo_391',['FFTRealUseTrigo',['../classffft_1_1_f_f_t_real_use_trigo.html',1,'ffft']]],
+ ['fftwindows_2eh_392',['FFTWindows.h',['../_f_f_t_windows_8h.html',1,'']]],
+ ['file_393',['File',['../classaudio__tools_1_1_file.html',1,'audio_tools']]],
+ ['file_394',['file',['../classaudio__tools_1_1_file_loop_t.html#a83cb66697faa40006801dea201bb7be5',1,'audio_tools::FileLoopT']]],
+ ['fileloop_395',['FileLoop',['../classaudio__tools_1_1_file_loop.html',1,'audio_tools']]],
+ ['fileloopt_396',['FileLoopT',['../classaudio__tools_1_1_file_loop_t.html',1,'audio_tools']]],
+ ['fileloopt_3c_20file_20_3e_397',['FileLoopT< File >',['../classaudio__tools_1_1_file_loop_t.html',1,'audio_tools']]],
+ ['filename_398',['fileName',['../classaudio__tools_1_1_s_d_direct.html#a4f4660f16bc1e2739434c45502e26db0',1,'audio_tools::SDDirect::fileName()'],['../classaudio__tools_1_1_s_d_index.html#a4f4660f16bc1e2739434c45502e26db0',1,'audio_tools::SDIndex::fileName()']]],
+ ['filenamepath_399',['fileNamePath',['../classaudio__tools_1_1_s_d_direct.html#a4af7f4426e5bc375af02bc454ecb0dea',1,'audio_tools::SDDirect::fileNamePath()'],['../classaudio__tools_1_1_s_d_index.html#a4af7f4426e5bc375af02bc454ecb0dea',1,'audio_tools::SDIndex::fileNamePath()']]],
+ ['fileoutput_400',['FileOutput',['../classaudio__tools_1_1_file_output.html',1,'audio_tools']]],
+ ['filter_401',['Filter',['../classaudio__tools_1_1_filter.html',1,'audio_tools']]],
+ ['filter_3c_20ft_20_3e_402',['Filter< FT >',['../classaudio__tools_1_1_filter.html',1,'audio_tools']]],
+ ['filterchain_403',['FilterChain',['../classaudio__tools_1_1_filter_chain.html',1,'audio_tools']]],
+ ['filtereddelay_404',['FilteredDelay',['../classaudio__tools_1_1_filtered_delay.html',1,'FilteredDelay'],['../classaudio__tools_1_1_filtered_delay.html#a208abf3ff9a2bf2e9ce0ea2aa88d55f8',1,'audio_tools::FilteredDelay::FilteredDelay()']]],
+ ['filteredstream_405',['FilteredStream',['../classaudio__tools_1_1_filtered_stream.html',1,'audio_tools']]],
+ ['filtereffectbase_406',['FilterEffectBase',['../classaudio__tools_1_1_filter_effect_base.html',1,'FilterEffectBase'],['../classaudio__tools_1_1_filter_effect_base.html#aa7c2b0d8390e793095079a28d111dd40',1,'audio_tools::FilterEffectBase::FilterEffectBase()']]],
+ ['filterorder_407',['filterOrder',['../classaudio__tools_1_1_filter_effect_base.html#a9d09c73fcc694ca39d4563a3d9b4f925',1,'audio_tools::FilterEffectBase']]],
+ ['filters_408',['Filters',['../group__filter.html',1,'']]],
+ ['find_409',['find',['../classaudio__tools_1_1_meta_data_filter.html#a6c5691819717efb0c6a96775b578b2e6',1,'audio_tools::MetaDataFilter']]],
+ ['findeffect_410',['findEffect',['../classaudio__tools_1_1_audio_effect_stream_t.html#ab74dd95287679b2bd45a7bb17fb05991',1,'audio_tools::AudioEffectStreamT::findEffect()'],['../classaudio__tools_1_1_audio_effects.html#ab74dd95287679b2bd45a7bb17fb05991',1,'audio_tools::AudioEffects::findEffect()'],['../classaudio__tools_1_1_audio_effect_common.html#ab74dd95287679b2bd45a7bb17fb05991',1,'audio_tools::AudioEffectCommon::findEffect()']]],
+ ['findtag_411',['findTag',['../classaudio__tools_1_1_meta_data_filter.html#aa5d50ca3ddc49de47baa1916c8862527',1,'audio_tools::MetaDataFilter::findTag()'],['../classaudio__tools_1_1_meta_data_i_d3_base.html#a6884754305d5834690f0d94a5be931d6',1,'audio_tools::MetaDataID3Base::findTag()']]],
+ ['fir_412',['FIR',['../classaudio__tools_1_1_f_i_r.html',1,'audio_tools']]],
+ ['firbuffer_413',['firBuffer',['../classaudio__tools_1_1_filter_effect_base.html#a71e949448a14b350c539b2e97e358e24',1,'audio_tools::FilterEffectBase']]],
+ ['fircoefficients_414',['firCoefficients',['../classaudio__tools_1_1_filter_effect_base.html#a1b4b4166a56b76601a607fc863d8d05c',1,'audio_tools::FilterEffectBase']]],
+ ['firstwrite_415',['firstWrite',['../classaudio__tools_1_1_s_b_c_decoder.html#af56a4e53afd50b73ae5f26566118aa09',1,'audio_tools::SBCDecoder']]],
+ ['firtemp_416',['firTemp',['../classaudio__tools_1_1_filter_effect_base.html#a2dd5b6b21bf4c4cb09225de69f3f3171',1,'audio_tools::FilterEffectBase']]],
+ ['flacdecoder_417',['FLACDecoder',['../classaudio__tools_1_1_f_l_a_c_decoder.html',1,'audio_tools']]],
+ ['flacencoder_418',['FLACEncoder',['../classaudio__tools_1_1_f_l_a_c_encoder.html',1,'audio_tools']]],
+ ['flattop_419',['FlatTop',['../classaudio__tools_1_1_flat_top.html',1,'audio_tools']]],
+ ['float16_420',['float16',['../classaudio__tools_1_1float16.html',1,'audio_tools']]],
+ ['float32_421',['float32',['../classaudio__tools_1_1float32.html',1,'audio_tools']]],
+ ['float_5fto_5fhalf_422',['float_to_half',['../classaudio__tools_1_1float16.html#ad8c8cf2d9621a737f43993cf29f4bbf9',1,'audio_tools::float16']]],
+ ['floattostring_423',['floatToString',['../classaudio__tools_1_1_str.html#a84ed111fd3a0268437c8e3cfe56cf1d6',1,'audio_tools::Str']]],
+ ['flush_424',['flush',['../classaudio__tools_1_1_resample_stream.html#a04f2540d940cc37b5c2538ed8e5b54be',1,'audio_tools::ResampleStream::flush()'],['../classaudio__tools_1_1_buffered_stream.html#af654b48544c195ab99fe27e7bc3ed5fe',1,'audio_tools::BufferedStream::flush()'],['../classaudio__tools_1_1_i_c_y_stream_buffered.html#af654b48544c195ab99fe27e7bc3ed5fe',1,'audio_tools::ICYStreamBuffered::flush()'],['../classaudio__tools_1_1_buffered_task_stream.html#af654b48544c195ab99fe27e7bc3ed5fe',1,'audio_tools::BufferedTaskStream::flush()'],['../classaudio__tools_1_1_f_l_a_c_decoder.html#adac116554b543b7c4228c018a85882f5',1,'audio_tools::FLACDecoder::flush()'],['../classaudio__tools_1_1_m_p3_decoder_mini.html#adac116554b543b7c4228c018a85882f5',1,'audio_tools::MP3DecoderMini::flush()']]],
+ ['flushmixer_425',['flushMixer',['../classaudio__tools_1_1_output_mixer.html#aa2299c86cec1b36ea50195df313dc05e',1,'audio_tools::OutputMixer']]],
+ ['force_5fchannel_426',['force_channel',['../structaudio__tools_1_1_opus_encoder_settings.html#a66e4f9807114d63ed07bba1bd98cfdcc',1,'audio_tools::OpusEncoderSettings']]],
+ ['format_427',['format',['../classaudio__tools_1_1_r_t_s_p_format_audio_tools.html#ad7ad9bd7c66af8cbaff4226cf8de3631',1,'audio_tools::RTSPFormatAudioTools::format()'],['../classaudio__tools_1_1_r_t_s_p_format_opus.html#a784939ec9a9f6985df7f11a3f1e29c7b',1,'audio_tools::RTSPFormatOpus::format()'],['../classaudio__tools_1_1_r_t_s_p_format_abt_x.html#a784939ec9a9f6985df7f11a3f1e29c7b',1,'audio_tools::RTSPFormatAbtX::format()'],['../classaudio__tools_1_1_r_t_s_p_format_g_s_m.html#a784939ec9a9f6985df7f11a3f1e29c7b',1,'audio_tools::RTSPFormatGSM::format()'],['../classaudio__tools_1_1_r_t_s_p_format_g711.html#a784939ec9a9f6985df7f11a3f1e29c7b',1,'audio_tools::RTSPFormatG711::format()'],['../classaudio__tools_1_1_r_t_s_p_format_p_c_m.html#a784939ec9a9f6985df7f11a3f1e29c7b',1,'audio_tools::RTSPFormatPCM::format()'],['../classaudio__tools_1_1_r_t_s_p_format_p_c_m8.html#a784939ec9a9f6985df7f11a3f1e29c7b',1,'audio_tools::RTSPFormatPCM8::format()']]],
+ ['formatconverterstream_428',['FormatConverterStream',['../classaudio__tools_1_1_format_converter_stream.html',1,'audio_tools']]],
+ ['frame_5fsizes_5fms_5fx2_429',['frame_sizes_ms_x2',['../structaudio__tools_1_1_opus_encoder_settings.html#a1cd9432fb6b95062adca18465db1a0f9',1,'audio_tools::OpusEncoderSettings']]],
+ ['frameheader_430',['frameHeader',['../classaudio__tools_1_1_meta_data_i_d3_v2.html#ae1934083da81d1032c842756b6cec27b',1,'audio_tools::MetaDataID3V2']]],
+ ['framelength_431',['frameLength',['../classaudio__tools_1_1_s_b_c_encoder.html#a8721dea59e7d446cb9566766c9a073b0',1,'audio_tools::SBCEncoder::frameLength()'],['../classaudio__tools_1_1_s_b_c_decoder.html#a8721dea59e7d446cb9566766c9a073b0',1,'audio_tools::SBCDecoder::frameLength()']]],
+ ['frequency_432',['frequency',['../classaudio__tools_1_1_audio_f_f_t_base.html#ab5f1f1bf50599707ea0172e5f65fc8dc',1,'audio_tools::AudioFFTBase::frequency()'],['../classaudio__tools_1_1_p_w_m_driver_e_s_p32.html#a630cb46e9a0636a8f424157ae3c13bf5',1,'audio_tools::PWMDriverESP32::frequency()'],['../classaudio__tools_1_1_musical_notes.html#a521b24b3a00360cbab29a003e14eaa99',1,'audio_tools::MusicalNotes::frequency(MusicalNotesEnum note, uint8_t octave)'],['../classaudio__tools_1_1_musical_notes.html#ae76b8ddf1b2e70224370b22f516643be',1,'audio_tools::MusicalNotes::frequency(uint16_t idx)']]],
+ ['frequencytomidinote_433',['frequencyToMidiNote',['../classaudio__tools_1_1_musical_notes.html#ac63e0b09fabb3b6d673024cdc4f0f1b6',1,'audio_tools::MusicalNotes']]],
+ ['fs_434',['FS',['../classaudio__tools_1_1_f_s.html',1,'audio_tools']]],
+ ['fuzz_435',['Fuzz',['../classaudio__tools_1_1_fuzz.html',1,'Fuzz'],['../classaudio__tools_1_1_fuzz.html#a36029f43e25bb0fae14d317621632c6a',1,'audio_tools::Fuzz::Fuzz()']]]
];
diff --git a/search/all_7.js b/search/all_7.js
index 62437c7712..b184348f17 100644
--- a/search/all_7.js
+++ b/search/all_7.js
@@ -1,59 +1,59 @@
var searchData=
[
- ['g711_5falawdecoder_437',['G711_ALAWDecoder',['../classaudio__tools_1_1_g711___a_l_a_w_decoder.html',1,'audio_tools']]],
- ['g711_5falawencoder_438',['G711_ALAWEncoder',['../classaudio__tools_1_1_g711___a_l_a_w_encoder.html',1,'audio_tools']]],
- ['g711_5fulawdecoder_439',['G711_ULAWDecoder',['../classaudio__tools_1_1_g711___u_l_a_w_decoder.html',1,'audio_tools']]],
- ['g711_5fulawencoder_440',['G711_ULAWEncoder',['../classaudio__tools_1_1_g711___u_l_a_w_encoder.html',1,'audio_tools']]],
- ['g711decoder_441',['G711Decoder',['../classaudio__tools_1_1_g711_decoder.html',1,'audio_tools']]],
- ['g711encoder_442',['G711Encoder',['../classaudio__tools_1_1_g711_encoder.html',1,'audio_tools']]],
- ['g721decoder_443',['G721Decoder',['../classaudio__tools_1_1_g721_decoder.html',1,'audio_tools']]],
- ['g721encoder_444',['G721Encoder',['../classaudio__tools_1_1_g721_encoder.html',1,'audio_tools']]],
- ['g722decoder_445',['G722Decoder',['../classaudio__tools_1_1_g722_decoder.html',1,'audio_tools']]],
- ['g722encoder_446',['G722Encoder',['../classaudio__tools_1_1_g722_encoder.html',1,'audio_tools']]],
- ['g723_5f24decoder_447',['G723_24Decoder',['../classaudio__tools_1_1_g723__24_decoder.html',1,'audio_tools']]],
- ['g723_5f24encoder_448',['G723_24Encoder',['../classaudio__tools_1_1_g723__24_encoder.html',1,'audio_tools']]],
- ['g723_5f40decoder_449',['G723_40Decoder',['../classaudio__tools_1_1_g723__40_decoder.html',1,'audio_tools']]],
- ['g723_5f40encoder_450',['G723_40Encoder',['../classaudio__tools_1_1_g723__40_encoder.html',1,'audio_tools']]],
- ['g7xxcodec_5fe_451',['G7xxCODEC_e',['../namespaceaudio__tools.html#a44f4d7d26b9f81198ebefe8c302ee30c',1,'audio_tools']]],
- ['g7xxdecoder_452',['G7xxDecoder',['../classaudio__tools_1_1_g7xx_decoder.html',1,'audio_tools']]],
- ['g7xxencoder_453',['G7xxEncoder',['../classaudio__tools_1_1_g7xx_encoder.html',1,'audio_tools']]],
- ['generatedsoundstream_454',['GeneratedSoundStream',['../classaudio__tools_1_1_generated_sound_stream.html',1,'audio_tools']]],
- ['generatedsoundstream_3c_20int16_5ft_20_3e_455',['GeneratedSoundStream< int16_t >',['../classaudio__tools_1_1_generated_sound_stream.html',1,'audio_tools']]],
- ['generator_456',['generator',['../classaudio__tools_1_1_audio_effects.html#a1ecabc1b15ae58dc67d30659959104ac',1,'audio_tools::AudioEffects']]],
- ['generatorfixedvalue_457',['GeneratorFixedValue',['../classaudio__tools_1_1_generator_fixed_value.html',1,'audio_tools']]],
- ['generatorfromarray_458',['GeneratorFromArray',['../classaudio__tools_1_1_generator_from_array.html',1,'GeneratorFromArray< T >'],['../classaudio__tools_1_1_generator_from_array.html#a8f6f7efed214cfdc8a1e2eb40475e706',1,'audio_tools::GeneratorFromArray::GeneratorFromArray()']]],
- ['generatorfromstream_459',['GeneratorFromStream',['../classaudio__tools_1_1_generator_from_stream.html',1,'GeneratorFromStream< T >'],['../classaudio__tools_1_1_generator_from_stream.html#adbab94c4cc5993e1478137422a8d6ce5',1,'audio_tools::GeneratorFromStream::GeneratorFromStream()']]],
- ['generatormixer_460',['GeneratorMixer',['../classaudio__tools_1_1_generator_mixer.html',1,'audio_tools']]],
- ['generators_461',['Generators',['../group__generator.html',1,'']]],
- ['get_462',['get',['../classaudio__tools_1_1_http_request.html#a23fd1b70c43eb2baa3363b559a8535fb',1,'audio_tools::HttpRequest']]],
- ['getactionlogic_463',['getActionLogic',['../classaudio__tools_1_1_audio_kit_stream.html#a429791ee6aa07d099b1e2df39b688507',1,'audio_tools::AudioKitStream']]],
- ['getclient_464',['getClient',['../classaudio__tools_1_1_u_r_l_stream.html#a7d9592dd97b0dce77ba5d436d6424f3e',1,'audio_tools::URLStream']]],
- ['getcodec_465',['getCodec',['../classaudio__tools_1_1_h_l_s_parser.html#af59bcb4f75de79bc22707ab38cc08536',1,'audio_tools::HLSParser']]],
- ['getcodec2mode_466',['getCodec2Mode',['../namespaceaudio__tools.html#a02c29ed3c839920a3df31605da651f24',1,'audio_tools']]],
- ['getdefaultcolor_467',['getDefaultColor',['../namespaceaudio__tools.html#a7788a85ffcebdcf25ea71d8789d60e42',1,'audio_tools']]],
- ['getdsp_468',['getDSP',['../classaudio__tools_1_1_faust_stream.html#a44ca8f6d4255e10517465b61346727d9',1,'audio_tools::FaustStream']]],
- ['getfilebypos_469',['getFileByPos',['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a3320b70c0506b6448d4e909ea011048e',1,'audio_tools::AudioSourceSDFAT']]],
- ['getframesizesamples_470',['getFrameSizeSamples',['../classaudio__tools_1_1_opus_audio_encoder.html#af8b98e7acf889f0c2d1c7406059db717',1,'audio_tools::OpusAudioEncoder']]],
- ['getfrom_471',['getFrom',['../classaudio__tools_1_1_stream_copy_t.html#a809c0d475db281a243ca51095230d6e1',1,'audio_tools::StreamCopyT']]],
- ['getint_472',['getInt',['../classaudio__tools_1_1_a_v_i_decoder.html#a7cbe3784773fce7e879c4d5678fa3b7a',1,'audio_tools::AVIDecoder']]],
- ['getintenset_473',['getINTENSET',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a7f113ed579279f9cd4bb1cc8bd50f13e',1,'audio_tools::I2SDriverNanoBLE']]],
- ['getinterpolatedout_474',['getInterpolatedOut',['../classaudio__tools_1_1_delay_effect_base.html#ac31803fdf3c18f7be67c7b86b7245a4e',1,'audio_tools::DelayEffectBase']]],
- ['getinterpout_475',['getInterpOut',['../classaudio__tools_1_1_modulation_base_class.html#a72aa0b268e26446182030247a66b13f0',1,'audio_tools::ModulationBaseClass']]],
- ['getmagnitude_476',['getMagnitude',['../classaudio__tools_1_1_f_f_t_display.html#ae1baf94641211d26e7a718a6ee6c75dc',1,'audio_tools::FFTDisplay']]],
- ['getmaxmagnitude_477',['getMaxMagnitude',['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a53ef9e74ad374547aa7a7092e2801c56',1,'audio_tools::LEDOutputUnoR4::getMaxMagnitude()'],['../classaudio__tools_1_1_l_e_d_output.html#a53ef9e74ad374547aa7a7092e2801c56',1,'audio_tools::LEDOutput::getMaxMagnitude()']]],
- ['getmodsignal_478',['getModSignal',['../classaudio__tools_1_1_simple_chorus.html#ad66008a791ee961688ab0e81b16b62da',1,'audio_tools::SimpleChorus']]],
- ['getpinname_479',['getPinName',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#aa61a78051871fff259512d43384aadd1',1,'audio_tools::I2SDriverNanoBLE']]],
- ['getsplineout_480',['getSplineOut',['../classaudio__tools_1_1_modulation_base_class.html#abe6df32790ce49bd58cf57eadc30e88e',1,'audio_tools::ModulationBaseClass::getSplineOut()'],['../classaudio__tools_1_1_simple_delay.html#a11f8732d4949cacda540d83f6f707fa4',1,'audio_tools::SimpleDelay::getSplineOut()']]],
- ['getstepsize_481',['getStepSize',['../classaudio__tools_1_1_resample_stream.html#a3ab0b6134d712c7733c4cf91d9bf45b8',1,'audio_tools::ResampleStream::getStepSize(float sampleRateFrom, float sampleRateTo)'],['../classaudio__tools_1_1_resample_stream.html#ab49cc7c5e84baee6171477076ad7284a',1,'audio_tools::ResampleStream::getStepSize()']]],
- ['getstr_482',['getStr',['../classaudio__tools_1_1_a_v_i_decoder.html#a5fe434d4c76332a3541986b81c407b06',1,'audio_tools::AVIDecoder']]],
- ['getstream_483',['getStream',['../classaudio__tools_1_1_audio_player.html#a190ffdf693e3bb63f5a9f560ba0f3bf9',1,'audio_tools::AudioPlayer']]],
- ['getstreamcopy_484',['getStreamCopy',['../classaudio__tools_1_1_audio_player.html#af02fb17cf31766de2b594f189bdf498a',1,'audio_tools::AudioPlayer']]],
- ['getto_485',['getTo',['../classaudio__tools_1_1_stream_copy_t.html#ac41200bb0abf1703f53e3f5eaf08be9b',1,'audio_tools::StreamCopyT']]],
- ['getvalue_486',['getValue',['../classaudio__tools_1_1_variable_speed_ring_buffer.html#adc30bb60523ae822267f9c915c47c0ab',1,'audio_tools::VariableSpeedRingBuffer::getValue()'],['../classaudio__tools_1_1_resample_stream.html#af670780acc7db5511153adf62a68a362',1,'audio_tools::ResampleStream::getValue()']]],
- ['getvolumefactor_487',['getVolumeFactor',['../classaudio__tools_1_1_callback_volume_control.html#a4adec6dfd3db79b4d459a6616d376dc2',1,'audio_tools::CallbackVolumeControl::getVolumeFactor()'],['../classaudio__tools_1_1_linear_volume_control.html#a4adec6dfd3db79b4d459a6616d376dc2',1,'audio_tools::LinearVolumeControl::getVolumeFactor()'],['../classaudio__tools_1_1_simulated_audio_pot.html#a4adec6dfd3db79b4d459a6616d376dc2',1,'audio_tools::SimulatedAudioPot::getVolumeFactor()'],['../classaudio__tools_1_1_exponential_volume_control.html#a4adec6dfd3db79b4d459a6616d376dc2',1,'audio_tools::ExponentialVolumeControl::getVolumeFactor()'],['../classaudio__tools_1_1_logarithmic_volume_control.html#acdf623d845bd8cda68be2aa6da5896a1',1,'audio_tools::LogarithmicVolumeControl::getVolumeFactor()'],['../classaudio__tools_1_1_cached_volume_control.html#a4adec6dfd3db79b4d459a6616d376dc2',1,'audio_tools::CachedVolumeControl::getVolumeFactor()'],['../classaudio__tools_1_1_volume_control.html#ab9c01325a5a52a051934968f66b4a04c',1,'audio_tools::VolumeControl::getVolumeFactor()']]],
- ['getvolumeoutput_488',['getVolumeOutput',['../classaudio__tools_1_1_audio_player.html#ad6e9734f754a7ab7d7b60cf11cfa06a3',1,'audio_tools::AudioPlayer']]],
- ['getvs1053_489',['getVS1053',['../classaudio__tools_1_1_v_s1053_stream.html#ab96345d18afd29205c955b3f677381fe',1,'audio_tools::VS1053Stream']]],
- ['grow_490',['grow',['../classaudio__tools_1_1_str.html#a16ef995f4c62ef0f05d955fd7b0539eb',1,'audio_tools::Str::grow()'],['../classaudio__tools_1_1_str_ext.html#a0c23107d9d96131d32a64d230bbedf06',1,'audio_tools::StrExt::grow()']]],
- ['gsmdecoder_491',['GSMDecoder',['../classaudio__tools_1_1_g_s_m_decoder.html',1,'audio_tools']]],
- ['gsmencoder_492',['GSMEncoder',['../classaudio__tools_1_1_g_s_m_encoder.html',1,'audio_tools']]]
+ ['g711_5falawdecoder_436',['G711_ALAWDecoder',['../classaudio__tools_1_1_g711___a_l_a_w_decoder.html',1,'audio_tools']]],
+ ['g711_5falawencoder_437',['G711_ALAWEncoder',['../classaudio__tools_1_1_g711___a_l_a_w_encoder.html',1,'audio_tools']]],
+ ['g711_5fulawdecoder_438',['G711_ULAWDecoder',['../classaudio__tools_1_1_g711___u_l_a_w_decoder.html',1,'audio_tools']]],
+ ['g711_5fulawencoder_439',['G711_ULAWEncoder',['../classaudio__tools_1_1_g711___u_l_a_w_encoder.html',1,'audio_tools']]],
+ ['g711decoder_440',['G711Decoder',['../classaudio__tools_1_1_g711_decoder.html',1,'audio_tools']]],
+ ['g711encoder_441',['G711Encoder',['../classaudio__tools_1_1_g711_encoder.html',1,'audio_tools']]],
+ ['g721decoder_442',['G721Decoder',['../classaudio__tools_1_1_g721_decoder.html',1,'audio_tools']]],
+ ['g721encoder_443',['G721Encoder',['../classaudio__tools_1_1_g721_encoder.html',1,'audio_tools']]],
+ ['g722decoder_444',['G722Decoder',['../classaudio__tools_1_1_g722_decoder.html',1,'audio_tools']]],
+ ['g722encoder_445',['G722Encoder',['../classaudio__tools_1_1_g722_encoder.html',1,'audio_tools']]],
+ ['g723_5f24decoder_446',['G723_24Decoder',['../classaudio__tools_1_1_g723__24_decoder.html',1,'audio_tools']]],
+ ['g723_5f24encoder_447',['G723_24Encoder',['../classaudio__tools_1_1_g723__24_encoder.html',1,'audio_tools']]],
+ ['g723_5f40decoder_448',['G723_40Decoder',['../classaudio__tools_1_1_g723__40_decoder.html',1,'audio_tools']]],
+ ['g723_5f40encoder_449',['G723_40Encoder',['../classaudio__tools_1_1_g723__40_encoder.html',1,'audio_tools']]],
+ ['g7xxcodec_5fe_450',['G7xxCODEC_e',['../namespaceaudio__tools.html#a44f4d7d26b9f81198ebefe8c302ee30c',1,'audio_tools']]],
+ ['g7xxdecoder_451',['G7xxDecoder',['../classaudio__tools_1_1_g7xx_decoder.html',1,'audio_tools']]],
+ ['g7xxencoder_452',['G7xxEncoder',['../classaudio__tools_1_1_g7xx_encoder.html',1,'audio_tools']]],
+ ['generatedsoundstream_453',['GeneratedSoundStream',['../classaudio__tools_1_1_generated_sound_stream.html',1,'audio_tools']]],
+ ['generatedsoundstream_3c_20int16_5ft_20_3e_454',['GeneratedSoundStream< int16_t >',['../classaudio__tools_1_1_generated_sound_stream.html',1,'audio_tools']]],
+ ['generator_455',['generator',['../classaudio__tools_1_1_audio_effects.html#a1ecabc1b15ae58dc67d30659959104ac',1,'audio_tools::AudioEffects']]],
+ ['generatorfixedvalue_456',['GeneratorFixedValue',['../classaudio__tools_1_1_generator_fixed_value.html',1,'audio_tools']]],
+ ['generatorfromarray_457',['GeneratorFromArray',['../classaudio__tools_1_1_generator_from_array.html',1,'GeneratorFromArray< T >'],['../classaudio__tools_1_1_generator_from_array.html#a8f6f7efed214cfdc8a1e2eb40475e706',1,'audio_tools::GeneratorFromArray::GeneratorFromArray()']]],
+ ['generatorfromstream_458',['GeneratorFromStream',['../classaudio__tools_1_1_generator_from_stream.html',1,'GeneratorFromStream< T >'],['../classaudio__tools_1_1_generator_from_stream.html#adbab94c4cc5993e1478137422a8d6ce5',1,'audio_tools::GeneratorFromStream::GeneratorFromStream()']]],
+ ['generatormixer_459',['GeneratorMixer',['../classaudio__tools_1_1_generator_mixer.html',1,'audio_tools']]],
+ ['generators_460',['Generators',['../group__generator.html',1,'']]],
+ ['get_461',['get',['../classaudio__tools_1_1_http_request.html#a23fd1b70c43eb2baa3363b559a8535fb',1,'audio_tools::HttpRequest']]],
+ ['getactionlogic_462',['getActionLogic',['../classaudio__tools_1_1_audio_kit_stream.html#a429791ee6aa07d099b1e2df39b688507',1,'audio_tools::AudioKitStream']]],
+ ['getclient_463',['getClient',['../classaudio__tools_1_1_u_r_l_stream.html#a7d9592dd97b0dce77ba5d436d6424f3e',1,'audio_tools::URLStream']]],
+ ['getcodec_464',['getCodec',['../classaudio__tools_1_1_h_l_s_parser.html#af59bcb4f75de79bc22707ab38cc08536',1,'audio_tools::HLSParser']]],
+ ['getcodec2mode_465',['getCodec2Mode',['../namespaceaudio__tools.html#a02c29ed3c839920a3df31605da651f24',1,'audio_tools']]],
+ ['getdefaultcolor_466',['getDefaultColor',['../namespaceaudio__tools.html#a7788a85ffcebdcf25ea71d8789d60e42',1,'audio_tools']]],
+ ['getdsp_467',['getDSP',['../classaudio__tools_1_1_faust_stream.html#a44ca8f6d4255e10517465b61346727d9',1,'audio_tools::FaustStream']]],
+ ['getfilebypos_468',['getFileByPos',['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a3320b70c0506b6448d4e909ea011048e',1,'audio_tools::AudioSourceSDFAT']]],
+ ['getframesizesamples_469',['getFrameSizeSamples',['../classaudio__tools_1_1_opus_audio_encoder.html#af8b98e7acf889f0c2d1c7406059db717',1,'audio_tools::OpusAudioEncoder']]],
+ ['getfrom_470',['getFrom',['../classaudio__tools_1_1_stream_copy_t.html#a809c0d475db281a243ca51095230d6e1',1,'audio_tools::StreamCopyT']]],
+ ['getint_471',['getInt',['../classaudio__tools_1_1_a_v_i_decoder.html#a7cbe3784773fce7e879c4d5678fa3b7a',1,'audio_tools::AVIDecoder']]],
+ ['getintenset_472',['getINTENSET',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a7f113ed579279f9cd4bb1cc8bd50f13e',1,'audio_tools::I2SDriverNanoBLE']]],
+ ['getinterpolatedout_473',['getInterpolatedOut',['../classaudio__tools_1_1_delay_effect_base.html#ac31803fdf3c18f7be67c7b86b7245a4e',1,'audio_tools::DelayEffectBase']]],
+ ['getinterpout_474',['getInterpOut',['../classaudio__tools_1_1_modulation_base_class.html#a72aa0b268e26446182030247a66b13f0',1,'audio_tools::ModulationBaseClass']]],
+ ['getmagnitude_475',['getMagnitude',['../classaudio__tools_1_1_f_f_t_display.html#ae1baf94641211d26e7a718a6ee6c75dc',1,'audio_tools::FFTDisplay']]],
+ ['getmaxmagnitude_476',['getMaxMagnitude',['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a53ef9e74ad374547aa7a7092e2801c56',1,'audio_tools::LEDOutputUnoR4::getMaxMagnitude()'],['../classaudio__tools_1_1_l_e_d_output.html#a53ef9e74ad374547aa7a7092e2801c56',1,'audio_tools::LEDOutput::getMaxMagnitude()']]],
+ ['getmodsignal_477',['getModSignal',['../classaudio__tools_1_1_simple_chorus.html#ad66008a791ee961688ab0e81b16b62da',1,'audio_tools::SimpleChorus']]],
+ ['getpinname_478',['getPinName',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#aa61a78051871fff259512d43384aadd1',1,'audio_tools::I2SDriverNanoBLE']]],
+ ['getsplineout_479',['getSplineOut',['../classaudio__tools_1_1_modulation_base_class.html#abe6df32790ce49bd58cf57eadc30e88e',1,'audio_tools::ModulationBaseClass::getSplineOut()'],['../classaudio__tools_1_1_simple_delay.html#a11f8732d4949cacda540d83f6f707fa4',1,'audio_tools::SimpleDelay::getSplineOut()']]],
+ ['getstepsize_480',['getStepSize',['../classaudio__tools_1_1_resample_stream.html#a3ab0b6134d712c7733c4cf91d9bf45b8',1,'audio_tools::ResampleStream::getStepSize(float sampleRateFrom, float sampleRateTo)'],['../classaudio__tools_1_1_resample_stream.html#ab49cc7c5e84baee6171477076ad7284a',1,'audio_tools::ResampleStream::getStepSize()']]],
+ ['getstr_481',['getStr',['../classaudio__tools_1_1_a_v_i_decoder.html#a5fe434d4c76332a3541986b81c407b06',1,'audio_tools::AVIDecoder']]],
+ ['getstream_482',['getStream',['../classaudio__tools_1_1_audio_player.html#a190ffdf693e3bb63f5a9f560ba0f3bf9',1,'audio_tools::AudioPlayer']]],
+ ['getstreamcopy_483',['getStreamCopy',['../classaudio__tools_1_1_audio_player.html#af02fb17cf31766de2b594f189bdf498a',1,'audio_tools::AudioPlayer']]],
+ ['getto_484',['getTo',['../classaudio__tools_1_1_stream_copy_t.html#ac41200bb0abf1703f53e3f5eaf08be9b',1,'audio_tools::StreamCopyT']]],
+ ['getvalue_485',['getValue',['../classaudio__tools_1_1_variable_speed_ring_buffer.html#adc30bb60523ae822267f9c915c47c0ab',1,'audio_tools::VariableSpeedRingBuffer::getValue()'],['../classaudio__tools_1_1_resample_stream.html#af670780acc7db5511153adf62a68a362',1,'audio_tools::ResampleStream::getValue()']]],
+ ['getvolumefactor_486',['getVolumeFactor',['../classaudio__tools_1_1_callback_volume_control.html#a4adec6dfd3db79b4d459a6616d376dc2',1,'audio_tools::CallbackVolumeControl::getVolumeFactor()'],['../classaudio__tools_1_1_linear_volume_control.html#a4adec6dfd3db79b4d459a6616d376dc2',1,'audio_tools::LinearVolumeControl::getVolumeFactor()'],['../classaudio__tools_1_1_simulated_audio_pot.html#a4adec6dfd3db79b4d459a6616d376dc2',1,'audio_tools::SimulatedAudioPot::getVolumeFactor()'],['../classaudio__tools_1_1_exponential_volume_control.html#a4adec6dfd3db79b4d459a6616d376dc2',1,'audio_tools::ExponentialVolumeControl::getVolumeFactor()'],['../classaudio__tools_1_1_logarithmic_volume_control.html#acdf623d845bd8cda68be2aa6da5896a1',1,'audio_tools::LogarithmicVolumeControl::getVolumeFactor()'],['../classaudio__tools_1_1_cached_volume_control.html#a4adec6dfd3db79b4d459a6616d376dc2',1,'audio_tools::CachedVolumeControl::getVolumeFactor()'],['../classaudio__tools_1_1_volume_control.html#ab9c01325a5a52a051934968f66b4a04c',1,'audio_tools::VolumeControl::getVolumeFactor()']]],
+ ['getvolumeoutput_487',['getVolumeOutput',['../classaudio__tools_1_1_audio_player.html#ad6e9734f754a7ab7d7b60cf11cfa06a3',1,'audio_tools::AudioPlayer']]],
+ ['getvs1053_488',['getVS1053',['../classaudio__tools_1_1_v_s1053_stream.html#ab96345d18afd29205c955b3f677381fe',1,'audio_tools::VS1053Stream']]],
+ ['grow_489',['grow',['../classaudio__tools_1_1_str.html#a16ef995f4c62ef0f05d955fd7b0539eb',1,'audio_tools::Str::grow()'],['../classaudio__tools_1_1_str_ext.html#a0c23107d9d96131d32a64d230bbedf06',1,'audio_tools::StrExt::grow()']]],
+ ['gsmdecoder_490',['GSMDecoder',['../classaudio__tools_1_1_g_s_m_decoder.html',1,'audio_tools']]],
+ ['gsmencoder_491',['GSMEncoder',['../classaudio__tools_1_1_g_s_m_encoder.html',1,'audio_tools']]]
];
diff --git a/search/all_8.js b/search/all_8.js
index 1d9b055922..6bc497fbc1 100644
--- a/search/all_8.js
+++ b/search/all_8.js
@@ -1,24 +1,24 @@
var searchData=
[
- ['half_5fto_5ffloat_493',['half_to_float',['../classaudio__tools_1_1float16.html#a0842bda138a6c90f81bb8749a0d38c45',1,'audio_tools::float16']]],
- ['hamming_494',['Hamming',['../classaudio__tools_1_1_hamming.html',1,'audio_tools']]],
- ['handlereadwriteoverrun_495',['handleReadWriteOverrun',['../classaudio__tools_1_1_variable_speed_ring_buffer.html#a941c7ea4e9e43a47930103f3c17dd67b',1,'audio_tools::VariableSpeedRingBuffer']]],
- ['hann_496',['Hann',['../classaudio__tools_1_1_hann.html',1,'audio_tools']]],
- ['hardwareserial_497',['HardwareSerial',['../classaudio__tools_1_1_hardware_serial.html',1,'audio_tools']]],
- ['hasmetadata_498',['hasMetaData',['../classaudio__tools_1_1_meta_data_i_c_y.html#ab0c1cb4bfda117887e5134e5578d65e1',1,'audio_tools::MetaDataICY']]],
- ['head_499',['head',['../classaudio__tools_1_1_http_request.html#aad6f1e79f2e71e2e2b620c6b8eb0b8ec',1,'audio_tools::HttpRequest']]],
- ['header_500',['header',['../classaudio__tools_1_1_meta_data_i_d3_v2.html#a101c2876eb62976d3e9b9bad8e870b7d',1,'audio_tools::MetaDataID3V2::header()'],['../classaudio__tools_1_1_http_request.html#a4b90ccdd03f36957dcd388af09d0357a',1,'audio_tools::HttpRequest::header()']]],
- ['headphonestatus_501',['headphoneStatus',['../classaudio__tools_1_1_audio_kit_stream.html#ad497d1809a653cebe8e82b625e642bb1',1,'audio_tools::AudioKitStream']]],
- ['hexdumpoutput_502',['HexDumpOutput',['../classaudio__tools_1_1_hex_dump_output.html',1,'HexDumpOutput'],['../classaudio__tools_1_1_hex_dump_output.html#a81a0ff258d72340fb3618b2ab5dc6732',1,'audio_tools::HexDumpOutput::HexDumpOutput()']]],
- ['hlsparser_503',['HLSParser',['../classaudio__tools_1_1_h_l_s_parser.html',1,'audio_tools']]],
- ['hlsstream_504',['HLSStream',['../classaudio__tools_1_1_h_l_s_stream.html',1,'audio_tools']]],
- ['http_505',['Http',['../group__http.html',1,'']]],
- ['httpchunkreader_506',['HttpChunkReader',['../classaudio__tools_1_1_http_chunk_reader.html',1,'HttpChunkReader'],['../classaudio__tools_1_1_http_chunk_reader.html#af042a3a6578702fb51040e9748027303',1,'audio_tools::HttpChunkReader::HttpChunkReader()'],['../classaudio__tools_1_1_http_chunk_reader.html#ac61a30a93f3075dde40f0cd1be010548',1,'audio_tools::HttpChunkReader::HttpChunkReader(HttpReplyHeader &header)']]],
- ['httpheader_507',['HttpHeader',['../classaudio__tools_1_1_http_header.html',1,'audio_tools']]],
- ['httpheaderline_508',['HttpHeaderLine',['../structaudio__tools_1_1_http_header_line.html',1,'audio_tools']]],
- ['httplinereader_509',['HttpLineReader',['../classaudio__tools_1_1_http_line_reader.html',1,'audio_tools']]],
- ['httpreplyheader_510',['HttpReplyHeader',['../classaudio__tools_1_1_http_reply_header.html',1,'audio_tools']]],
- ['httprequest_511',['HttpRequest',['../classaudio__tools_1_1_http_request.html',1,'audio_tools']]],
- ['httprequest_512',['httpRequest',['../classaudio__tools_1_1_abstract_u_r_l_stream.html#afd650515e4fa72af032ea2aa53d18a35',1,'audio_tools::AbstractURLStream::httpRequest()'],['../classaudio__tools_1_1_i_c_y_stream.html#a2ca90ceac0e248318ea6535bd8105569',1,'audio_tools::ICYStream::httpRequest()'],['../classaudio__tools_1_1_i_c_y_stream_buffered.html#a2ca90ceac0e248318ea6535bd8105569',1,'audio_tools::ICYStreamBuffered::httpRequest()'],['../classaudio__tools_1_1_u_r_l_stream.html#a2ca90ceac0e248318ea6535bd8105569',1,'audio_tools::URLStream::httpRequest()'],['../classaudio__tools_1_1_u_r_l_stream_buffered.html#aee06a0874ed5fef276c726ee92759661',1,'audio_tools::URLStreamBuffered::httpRequest()']]],
- ['httprequestheader_513',['HttpRequestHeader',['../classaudio__tools_1_1_http_request_header.html',1,'audio_tools']]]
+ ['half_5fto_5ffloat_492',['half_to_float',['../classaudio__tools_1_1float16.html#a0842bda138a6c90f81bb8749a0d38c45',1,'audio_tools::float16']]],
+ ['hamming_493',['Hamming',['../classaudio__tools_1_1_hamming.html',1,'audio_tools']]],
+ ['handlereadwriteoverrun_494',['handleReadWriteOverrun',['../classaudio__tools_1_1_variable_speed_ring_buffer.html#a941c7ea4e9e43a47930103f3c17dd67b',1,'audio_tools::VariableSpeedRingBuffer']]],
+ ['hann_495',['Hann',['../classaudio__tools_1_1_hann.html',1,'audio_tools']]],
+ ['hardwareserial_496',['HardwareSerial',['../classaudio__tools_1_1_hardware_serial.html',1,'audio_tools']]],
+ ['hasmetadata_497',['hasMetaData',['../classaudio__tools_1_1_meta_data_i_c_y.html#ab0c1cb4bfda117887e5134e5578d65e1',1,'audio_tools::MetaDataICY']]],
+ ['head_498',['head',['../classaudio__tools_1_1_http_request.html#aad6f1e79f2e71e2e2b620c6b8eb0b8ec',1,'audio_tools::HttpRequest']]],
+ ['header_499',['header',['../classaudio__tools_1_1_meta_data_i_d3_v2.html#a101c2876eb62976d3e9b9bad8e870b7d',1,'audio_tools::MetaDataID3V2::header()'],['../classaudio__tools_1_1_http_request.html#a4b90ccdd03f36957dcd388af09d0357a',1,'audio_tools::HttpRequest::header()']]],
+ ['headphonestatus_500',['headphoneStatus',['../classaudio__tools_1_1_audio_kit_stream.html#ad497d1809a653cebe8e82b625e642bb1',1,'audio_tools::AudioKitStream']]],
+ ['hexdumpoutput_501',['HexDumpOutput',['../classaudio__tools_1_1_hex_dump_output.html',1,'HexDumpOutput'],['../classaudio__tools_1_1_hex_dump_output.html#a81a0ff258d72340fb3618b2ab5dc6732',1,'audio_tools::HexDumpOutput::HexDumpOutput()']]],
+ ['hlsparser_502',['HLSParser',['../classaudio__tools_1_1_h_l_s_parser.html',1,'audio_tools']]],
+ ['hlsstream_503',['HLSStream',['../classaudio__tools_1_1_h_l_s_stream.html',1,'audio_tools']]],
+ ['http_504',['Http',['../group__http.html',1,'']]],
+ ['httpchunkreader_505',['HttpChunkReader',['../classaudio__tools_1_1_http_chunk_reader.html',1,'HttpChunkReader'],['../classaudio__tools_1_1_http_chunk_reader.html#af042a3a6578702fb51040e9748027303',1,'audio_tools::HttpChunkReader::HttpChunkReader()'],['../classaudio__tools_1_1_http_chunk_reader.html#ac61a30a93f3075dde40f0cd1be010548',1,'audio_tools::HttpChunkReader::HttpChunkReader(HttpReplyHeader &header)']]],
+ ['httpheader_506',['HttpHeader',['../classaudio__tools_1_1_http_header.html',1,'audio_tools']]],
+ ['httpheaderline_507',['HttpHeaderLine',['../structaudio__tools_1_1_http_header_line.html',1,'audio_tools']]],
+ ['httplinereader_508',['HttpLineReader',['../classaudio__tools_1_1_http_line_reader.html',1,'audio_tools']]],
+ ['httpreplyheader_509',['HttpReplyHeader',['../classaudio__tools_1_1_http_reply_header.html',1,'audio_tools']]],
+ ['httprequest_510',['HttpRequest',['../classaudio__tools_1_1_http_request.html',1,'audio_tools']]],
+ ['httprequest_511',['httpRequest',['../classaudio__tools_1_1_abstract_u_r_l_stream.html#afd650515e4fa72af032ea2aa53d18a35',1,'audio_tools::AbstractURLStream::httpRequest()'],['../classaudio__tools_1_1_i_c_y_stream.html#a2ca90ceac0e248318ea6535bd8105569',1,'audio_tools::ICYStream::httpRequest()'],['../classaudio__tools_1_1_i_c_y_stream_buffered.html#a2ca90ceac0e248318ea6535bd8105569',1,'audio_tools::ICYStreamBuffered::httpRequest()'],['../classaudio__tools_1_1_u_r_l_stream.html#a2ca90ceac0e248318ea6535bd8105569',1,'audio_tools::URLStream::httpRequest()'],['../classaudio__tools_1_1_u_r_l_stream_buffered.html#aee06a0874ed5fef276c726ee92759661',1,'audio_tools::URLStreamBuffered::httpRequest()']]],
+ ['httprequestheader_512',['HttpRequestHeader',['../classaudio__tools_1_1_http_request_header.html',1,'audio_tools']]]
];
diff --git a/search/all_9.js b/search/all_9.js
index 282f4bcbfd..df460f6e50 100644
--- a/search/all_9.js
+++ b/search/all_9.js
@@ -1,8 +1,9 @@
var searchData=
[
- ['i2c_5fretry_5fcount_514',['i2c_retry_count',['../classaudio__tools_1_1_w_m8960_config.html#abf87d032d525a80cf660a9831b339343',1,'audio_tools::WM8960Config']]],
- ['i2s_5firqhandler_515',['I2S_IRQHandler',['../namespaceaudio__tools.html#ad663a1188408b698e16703cd27bf955f',1,'audio_tools']]],
- ['i2sconfig_516',['I2SConfig',['../classaudio__tools_1_1_i2_s_config.html',1,'I2SConfig'],['../classaudio__tools_1_1_i2_s_config.html#ab3b2f124f03d7d586841c2ce12ccc35c',1,'audio_tools::I2SConfig::I2SConfig(RxTxMode mode)'],['../classaudio__tools_1_1_i2_s_config.html#a121806f3861b13229ad26d0b33497cab',1,'audio_tools::I2SConfig::I2SConfig(const I2SConfig &cfg)=default']]],
+ ['i2c_5fretry_5fcount_513',['i2c_retry_count',['../classaudio__tools_1_1_w_m8960_config.html#abf87d032d525a80cf660a9831b339343',1,'audio_tools::WM8960Config']]],
+ ['i2s_5firqhandler_514',['I2S_IRQHandler',['../namespaceaudio__tools.html#ad663a1188408b698e16703cd27bf955f',1,'audio_tools']]],
+ ['i2sconfig_515',['I2SConfig',['../classaudio__tools_1_1_i2_s_config.html',1,'I2SConfig'],['../classaudio__tools_1_1_i2_s_config.html#ab3b2f124f03d7d586841c2ce12ccc35c',1,'audio_tools::I2SConfig::I2SConfig(RxTxMode mode)'],['../classaudio__tools_1_1_i2_s_config.html#a121806f3861b13229ad26d0b33497cab',1,'audio_tools::I2SConfig::I2SConfig(const I2SConfig &cfg)=default']]],
+ ['i2sdriveresp32_516',['I2SDriverESP32',['../classaudio__tools_1_1_i2_s_driver_e_s_p32.html',1,'audio_tools']]],
['i2sdriveresp32v1_517',['I2SDriverESP32V1',['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html',1,'audio_tools']]],
['i2sdriveresp8266_518',['I2SDriverESP8266',['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html',1,'audio_tools']]],
['i2sdrivernanoble_519',['I2SDriverNanoBLE',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html',1,'audio_tools']]],
diff --git a/search/classes_0.js b/search/classes_0.js
index fa392d261d..6a24456ecd 100644
--- a/search/classes_0.js
+++ b/search/classes_0.js
@@ -1,103 +1,103 @@
var searchData=
[
- ['a2dpconfig_1412',['A2DPConfig',['../classaudio__tools_1_1_a2_d_p_config.html',1,'audio_tools']]],
- ['a2dpstream_1413',['A2DPStream',['../classaudio__tools_1_1_a2_d_p_stream.html',1,'audio_tools']]],
- ['aacdecoderfaad_1414',['AACDecoderFAAD',['../classaudio__tools_1_1_a_a_c_decoder_f_a_a_d.html',1,'audio_tools']]],
- ['aacdecoderfdk_1415',['AACDecoderFDK',['../classaudio__tools_1_1_a_a_c_decoder_f_d_k.html',1,'audio_tools']]],
- ['aacdecoderhelix_1416',['AACDecoderHelix',['../classaudio__tools_1_1_a_a_c_decoder_helix.html',1,'audio_tools']]],
- ['aacencoderfdk_1417',['AACEncoderFDK',['../classaudio__tools_1_1_a_a_c_encoder_f_d_k.html',1,'audio_tools']]],
- ['abstractmetadata_1418',['AbstractMetaData',['../classaudio__tools_1_1_abstract_meta_data.html',1,'audio_tools']]],
- ['abstractparameter_1419',['AbstractParameter',['../classaudio__tools_1_1_abstract_parameter.html',1,'audio_tools']]],
- ['abstractsynthesizerchannel_1420',['AbstractSynthesizerChannel',['../classaudio__tools_1_1_abstract_synthesizer_channel.html',1,'audio_tools']]],
- ['abstracturlstream_1421',['AbstractURLStream',['../classaudio__tools_1_1_abstract_u_r_l_stream.html',1,'audio_tools']]],
- ['action_1422',['Action',['../structaudio__tools_1_1_audio_actions_1_1_action.html',1,'audio_tools::AudioActions']]],
- ['adapteraudiostreamtoaudiooutput_1423',['AdapterAudioStreamToAudioOutput',['../classaudio__tools_1_1_adapter_audio_stream_to_audio_output.html',1,'audio_tools']]],
- ['adapterprinttoarray_1424',['AdapterPrintToArray',['../classaudio__tools_1_1_transformation_reader_1_1_adapter_print_to_array.html',1,'audio_tools::TransformationReader']]],
- ['adapterprinttoaudiooutput_1425',['AdapterPrintToAudioOutput',['../classaudio__tools_1_1_adapter_print_to_audio_output.html',1,'audio_tools']]],
- ['adpcmdecoder_1426',['ADPCMDecoder',['../classaudio__tools_1_1_a_d_p_c_m_decoder.html',1,'audio_tools']]],
- ['adpcmdecoderxq_1427',['ADPCMDecoderXQ',['../classaudio__tools_1_1_a_d_p_c_m_decoder_x_q.html',1,'audio_tools']]],
- ['adpcmencoder_1428',['ADPCMEncoder',['../classaudio__tools_1_1_a_d_p_c_m_encoder.html',1,'audio_tools']]],
- ['adpcmencoderxq_1429',['ADPCMEncoderXQ',['../classaudio__tools_1_1_a_d_p_c_m_encoder_x_q.html',1,'audio_tools']]],
- ['adsr_1430',['ADSR',['../classaudio__tools_1_1_a_d_s_r.html',1,'audio_tools']]],
- ['adsrgain_1431',['ADSRGain',['../classaudio__tools_1_1_a_d_s_r_gain.html',1,'audio_tools']]],
- ['adtsdecoder_1432',['ADTSDecoder',['../classaudio__tools_1_1_a_d_t_s_decoder.html',1,'audio_tools']]],
- ['adtsparser_1433',['ADTSParser',['../structaudio__tools_1_1_a_d_t_s_parser.html',1,'audio_tools']]],
- ['allocsize_1434',['AllocSize',['../structaudio__tools_1_1_alloc_size.html',1,'audio_tools']]],
- ['analogaudiostream_1435',['AnalogAudioStream',['../classaudio__tools_1_1_analog_audio_stream.html',1,'audio_tools']]],
- ['analogconfigesp32_1436',['AnalogConfigESP32',['../classaudio__tools_1_1_analog_config_e_s_p32.html',1,'audio_tools']]],
- ['analogconfigesp32v1_1437',['AnalogConfigESP32V1',['../classaudio__tools_1_1_analog_config_e_s_p32_v1.html',1,'audio_tools']]],
- ['analogconfigstd_1438',['AnalogConfigStd',['../classaudio__tools_1_1_analog_config_std.html',1,'audio_tools']]],
- ['analogdriverarduino_1439',['AnalogDriverArduino',['../classaudio__tools_1_1_analog_driver_arduino.html',1,'audio_tools']]],
- ['analogdriverbase_1440',['AnalogDriverBase',['../classaudio__tools_1_1_analog_driver_base.html',1,'audio_tools']]],
- ['analogdriveresp32_1441',['AnalogDriverESP32',['../classaudio__tools_1_1_analog_driver_e_s_p32.html',1,'audio_tools']]],
- ['analogdriveresp32v1_1442',['AnalogDriverESP32V1',['../classaudio__tools_1_1_analog_driver_e_s_p32_v1.html',1,'audio_tools']]],
- ['analogdrivermbed_1443',['AnalogDriverMBED',['../classaudio__tools_1_1_analog_driver_m_b_e_d.html',1,'audio_tools']]],
- ['aptxdecoder_1444',['APTXDecoder',['../classaudio__tools_1_1_a_p_t_x_decoder.html',1,'audio_tools']]],
- ['aptxencoder_1445',['APTXEncoder',['../classaudio__tools_1_1_a_p_t_x_encoder.html',1,'audio_tools']]],
- ['array_1446',['Array',['../classffft_1_1_array.html',1,'ffft']]],
- ['array_3c_20ffft_3a_3aoscsincos_2c_20trigo_5fosc_5farr_5fsize_20_3e_1447',['Array< ffft::OscSinCos, TRIGO_OSC_ARR_SIZE >',['../classffft_1_1_array.html',1,'ffft']]],
- ['audioactions_1448',['AudioActions',['../classaudio__tools_1_1_audio_actions.html',1,'audio_tools']]],
- ['audiocmsisfft_1449',['AudioCmsisFFT',['../classaudio__tools_1_1_audio_cmsis_f_f_t.html',1,'audio_tools']]],
- ['audioconfirmdatatoreceive_1450',['AudioConfirmDataToReceive',['../structaudio__tools_1_1_audio_confirm_data_to_receive.html',1,'audio_tools']]],
- ['audiodatabegin_1451',['AudioDataBegin',['../structaudio__tools_1_1_audio_data_begin.html',1,'audio_tools']]],
- ['audiodataend_1452',['AudioDataEnd',['../structaudio__tools_1_1_audio_data_end.html',1,'audio_tools']]],
- ['audiodecoder_1453',['AudioDecoder',['../classaudio__tools_1_1_audio_decoder.html',1,'audio_tools']]],
- ['audiodecoderext_1454',['AudioDecoderExt',['../classaudio__tools_1_1_audio_decoder_ext.html',1,'audio_tools']]],
- ['audioeffect_1455',['AudioEffect',['../classaudio__tools_1_1_audio_effect.html',1,'audio_tools']]],
- ['audioeffectcommon_1456',['AudioEffectCommon',['../classaudio__tools_1_1_audio_effect_common.html',1,'audio_tools']]],
- ['audioeffects_1457',['AudioEffects',['../classaudio__tools_1_1_audio_effects.html',1,'audio_tools']]],
- ['audioeffectstream_1458',['AudioEffectStream',['../classaudio__tools_1_1_audio_effect_stream.html',1,'audio_tools']]],
- ['audioeffectstreamt_1459',['AudioEffectStreamT',['../classaudio__tools_1_1_audio_effect_stream_t.html',1,'audio_tools']]],
- ['audioencoder_1460',['AudioEncoder',['../classaudio__tools_1_1_audio_encoder.html',1,'audio_tools']]],
- ['audioencoderext_1461',['AudioEncoderExt',['../classaudio__tools_1_1_audio_encoder_ext.html',1,'audio_tools']]],
- ['audioencoderserver_1462',['AudioEncoderServer',['../classaudio__tools_1_1_audio_encoder_server.html',1,'audio_tools']]],
- ['audioesp32fft_1463',['AudioESP32FFT',['../classaudio__tools_1_1_audio_e_s_p32_f_f_t.html',1,'audio_tools']]],
- ['audioesp32ulp_1464',['AudioESP32ULP',['../class_audio_e_s_p32_u_l_p.html',1,'']]],
- ['audioespressiffft_1465',['AudioEspressifFFT',['../classaudio__tools_1_1_audio_espressif_f_f_t.html',1,'audio_tools']]],
- ['audiofftbase_1466',['AudioFFTBase',['../classaudio__tools_1_1_audio_f_f_t_base.html',1,'audio_tools']]],
- ['audiofftconfig_1467',['AudioFFTConfig',['../structaudio__tools_1_1_audio_f_f_t_config.html',1,'audio_tools']]],
- ['audiofftresult_1468',['AudioFFTResult',['../structaudio__tools_1_1_audio_f_f_t_result.html',1,'audio_tools']]],
- ['audioheader_1469',['AudioHeader',['../structaudio__tools_1_1_audio_header.html',1,'audio_tools']]],
- ['audioinfo_1470',['AudioInfo',['../structaudio__tools_1_1_audio_info.html',1,'audio_tools']]],
- ['audioinfolame_1471',['AudioInfoLAME',['../structaudio__tools_1_1_audio_info_l_a_m_e.html',1,'audio_tools']]],
- ['audioinfosource_1472',['AudioInfoSource',['../classaudio__tools_1_1_audio_info_source.html',1,'audio_tools']]],
- ['audioinfosupport_1473',['AudioInfoSupport',['../classaudio__tools_1_1_audio_info_support.html',1,'audio_tools']]],
- ['audiokissfft_1474',['AudioKissFFT',['../classaudio__tools_1_1_audio_kiss_f_f_t.html',1,'audio_tools']]],
- ['audiokitstream_1475',['AudioKitStream',['../classaudio__tools_1_1_audio_kit_stream.html',1,'audio_tools']]],
- ['audiokitstreamconfig_1476',['AudioKitStreamConfig',['../classaudio__tools_1_1_audio_kit_stream_config.html',1,'audio_tools']]],
- ['audiomp34dt05_1477',['AudioMP34DT05',['../classaudio__tools_1_1_audio_m_p34_d_t05.html',1,'audio_tools']]],
- ['audiomp34dt05config_1478',['AudioMP34DT05Config',['../structaudio__tools_1_1_audio_m_p34_d_t05_config.html',1,'audio_tools']]],
- ['audiooutput_1479',['AudioOutput',['../classaudio__tools_1_1_audio_output.html',1,'audio_tools']]],
- ['audiooutputadapter_1480',['AudioOutputAdapter',['../classaudio__tools_1_1_audio_output_adapter.html',1,'audio_tools']]],
- ['audiooutputwithcallback_1481',['AudioOutputWithCallback',['../classaudio__tools_1_1_audio_output_with_callback.html',1,'audio_tools']]],
- ['audioplayer_1482',['AudioPlayer',['../classaudio__tools_1_1_audio_player.html',1,'audio_tools']]],
- ['audiorealfft_1483',['AudioRealFFT',['../classaudio__tools_1_1_audio_real_f_f_t.html',1,'audio_tools']]],
- ['audiosenddata_1484',['AudioSendData',['../structaudio__tools_1_1_audio_send_data.html',1,'audio_tools']]],
- ['audioserver_1485',['AudioServer',['../classaudio__tools_1_1_audio_server.html',1,'audio_tools']]],
- ['audioserverex_1486',['AudioServerEx',['../classaudio__tools_1_1_audio_server_ex.html',1,'audio_tools']]],
- ['audioserverexconfig_1487',['AudioServerExConfig',['../structaudio__tools_1_1_audio_server_ex_config.html',1,'audio_tools']]],
- ['audiosource_1488',['AudioSource',['../classaudio__tools_1_1_audio_source.html',1,'audio_tools']]],
- ['audiosourcecallback_1489',['AudioSourceCallback',['../classaudio__tools_1_1_audio_source_callback.html',1,'audio_tools']]],
- ['audiosourceidxsd_1490',['AudioSourceIdxSD',['../classaudio__tools_1_1_audio_source_idx_s_d.html',1,'audio_tools']]],
- ['audiosourceidxsdfat_1491',['AudioSourceIdxSDFAT',['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html',1,'audio_tools']]],
- ['audiosourceidxsdmmc_1492',['AudioSourceIdxSDMMC',['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html',1,'audio_tools']]],
- ['audiosourcelittlefs_1493',['AudioSourceLittleFS',['../classaudio__tools_1_1_audio_source_little_f_s.html',1,'audio_tools']]],
- ['audiosourcesd_1494',['AudioSourceSD',['../classaudio__tools_1_1_audio_source_s_d.html',1,'audio_tools']]],
- ['audiosourcesdfat_1495',['AudioSourceSDFAT',['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html',1,'audio_tools']]],
- ['audiosourcesdmmc_1496',['AudioSourceSDMMC',['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html',1,'audio_tools']]],
- ['audiosourcespiffs_1497',['AudioSourceSPIFFS',['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html',1,'audio_tools']]],
- ['audiosourcestd_1498',['AudioSourceSTD',['../classaudio__tools_1_1_audio_source_s_t_d.html',1,'audio_tools']]],
- ['audiosourceurl_1499',['AudioSourceURL',['../classaudio__tools_1_1_audio_source_u_r_l.html',1,'audio_tools']]],
- ['audiostream_1500',['AudioStream',['../classaudio__tools_1_1_audio_stream.html',1,'audio_tools']]],
- ['audiostreamwrapper_1501',['AudioStreamWrapper',['../classaudio__tools_1_1_audio_stream_wrapper.html',1,'audio_tools']]],
- ['audiosyncreader_1502',['AudioSyncReader',['../classaudio__tools_1_1_audio_sync_reader.html',1,'audio_tools']]],
- ['audiosyncwriter_1503',['AudioSyncWriter',['../classaudio__tools_1_1_audio_sync_writer.html',1,'audio_tools']]],
- ['audiotime_1504',['AudioTime',['../classaudio__tools_1_1_audio_time.html',1,'audio_tools']]],
- ['audiowavserver_1505',['AudioWAVServer',['../classaudio__tools_1_1_audio_w_a_v_server.html',1,'audio_tools']]],
- ['audiowavserverex_1506',['AudioWAVServerEx',['../classaudio__tools_1_1_audio_w_a_v_server_ex.html',1,'audio_tools']]],
- ['audiowriter_1507',['AudioWriter',['../classaudio__tools_1_1_audio_writer.html',1,'audio_tools']]],
- ['audiowritertoaudiooutput_1508',['AudioWriterToAudioOutput',['../classaudio__tools_1_1_audio_writer_to_audio_output.html',1,'audio_tools']]],
- ['avidecoder_1509',['AVIDecoder',['../classaudio__tools_1_1_a_v_i_decoder.html',1,'audio_tools']]],
- ['avimainheader_1510',['AVIMainHeader',['../structaudio__tools_1_1_a_v_i_main_header.html',1,'audio_tools']]],
- ['avistreamheader_1511',['AVIStreamHeader',['../structaudio__tools_1_1_a_v_i_stream_header.html',1,'audio_tools']]]
+ ['a2dpconfig_1413',['A2DPConfig',['../classaudio__tools_1_1_a2_d_p_config.html',1,'audio_tools']]],
+ ['a2dpstream_1414',['A2DPStream',['../classaudio__tools_1_1_a2_d_p_stream.html',1,'audio_tools']]],
+ ['aacdecoderfaad_1415',['AACDecoderFAAD',['../classaudio__tools_1_1_a_a_c_decoder_f_a_a_d.html',1,'audio_tools']]],
+ ['aacdecoderfdk_1416',['AACDecoderFDK',['../classaudio__tools_1_1_a_a_c_decoder_f_d_k.html',1,'audio_tools']]],
+ ['aacdecoderhelix_1417',['AACDecoderHelix',['../classaudio__tools_1_1_a_a_c_decoder_helix.html',1,'audio_tools']]],
+ ['aacencoderfdk_1418',['AACEncoderFDK',['../classaudio__tools_1_1_a_a_c_encoder_f_d_k.html',1,'audio_tools']]],
+ ['abstractmetadata_1419',['AbstractMetaData',['../classaudio__tools_1_1_abstract_meta_data.html',1,'audio_tools']]],
+ ['abstractparameter_1420',['AbstractParameter',['../classaudio__tools_1_1_abstract_parameter.html',1,'audio_tools']]],
+ ['abstractsynthesizerchannel_1421',['AbstractSynthesizerChannel',['../classaudio__tools_1_1_abstract_synthesizer_channel.html',1,'audio_tools']]],
+ ['abstracturlstream_1422',['AbstractURLStream',['../classaudio__tools_1_1_abstract_u_r_l_stream.html',1,'audio_tools']]],
+ ['action_1423',['Action',['../structaudio__tools_1_1_audio_actions_1_1_action.html',1,'audio_tools::AudioActions']]],
+ ['adapteraudiostreamtoaudiooutput_1424',['AdapterAudioStreamToAudioOutput',['../classaudio__tools_1_1_adapter_audio_stream_to_audio_output.html',1,'audio_tools']]],
+ ['adapterprinttoarray_1425',['AdapterPrintToArray',['../classaudio__tools_1_1_transformation_reader_1_1_adapter_print_to_array.html',1,'audio_tools::TransformationReader']]],
+ ['adapterprinttoaudiooutput_1426',['AdapterPrintToAudioOutput',['../classaudio__tools_1_1_adapter_print_to_audio_output.html',1,'audio_tools']]],
+ ['adpcmdecoder_1427',['ADPCMDecoder',['../classaudio__tools_1_1_a_d_p_c_m_decoder.html',1,'audio_tools']]],
+ ['adpcmdecoderxq_1428',['ADPCMDecoderXQ',['../classaudio__tools_1_1_a_d_p_c_m_decoder_x_q.html',1,'audio_tools']]],
+ ['adpcmencoder_1429',['ADPCMEncoder',['../classaudio__tools_1_1_a_d_p_c_m_encoder.html',1,'audio_tools']]],
+ ['adpcmencoderxq_1430',['ADPCMEncoderXQ',['../classaudio__tools_1_1_a_d_p_c_m_encoder_x_q.html',1,'audio_tools']]],
+ ['adsr_1431',['ADSR',['../classaudio__tools_1_1_a_d_s_r.html',1,'audio_tools']]],
+ ['adsrgain_1432',['ADSRGain',['../classaudio__tools_1_1_a_d_s_r_gain.html',1,'audio_tools']]],
+ ['adtsdecoder_1433',['ADTSDecoder',['../classaudio__tools_1_1_a_d_t_s_decoder.html',1,'audio_tools']]],
+ ['adtsparser_1434',['ADTSParser',['../structaudio__tools_1_1_a_d_t_s_parser.html',1,'audio_tools']]],
+ ['allocsize_1435',['AllocSize',['../structaudio__tools_1_1_alloc_size.html',1,'audio_tools']]],
+ ['analogaudiostream_1436',['AnalogAudioStream',['../classaudio__tools_1_1_analog_audio_stream.html',1,'audio_tools']]],
+ ['analogconfigesp32_1437',['AnalogConfigESP32',['../classaudio__tools_1_1_analog_config_e_s_p32.html',1,'audio_tools']]],
+ ['analogconfigesp32v1_1438',['AnalogConfigESP32V1',['../classaudio__tools_1_1_analog_config_e_s_p32_v1.html',1,'audio_tools']]],
+ ['analogconfigstd_1439',['AnalogConfigStd',['../classaudio__tools_1_1_analog_config_std.html',1,'audio_tools']]],
+ ['analogdriverarduino_1440',['AnalogDriverArduino',['../classaudio__tools_1_1_analog_driver_arduino.html',1,'audio_tools']]],
+ ['analogdriverbase_1441',['AnalogDriverBase',['../classaudio__tools_1_1_analog_driver_base.html',1,'audio_tools']]],
+ ['analogdriveresp32_1442',['AnalogDriverESP32',['../classaudio__tools_1_1_analog_driver_e_s_p32.html',1,'audio_tools']]],
+ ['analogdriveresp32v1_1443',['AnalogDriverESP32V1',['../classaudio__tools_1_1_analog_driver_e_s_p32_v1.html',1,'audio_tools']]],
+ ['analogdrivermbed_1444',['AnalogDriverMBED',['../classaudio__tools_1_1_analog_driver_m_b_e_d.html',1,'audio_tools']]],
+ ['aptxdecoder_1445',['APTXDecoder',['../classaudio__tools_1_1_a_p_t_x_decoder.html',1,'audio_tools']]],
+ ['aptxencoder_1446',['APTXEncoder',['../classaudio__tools_1_1_a_p_t_x_encoder.html',1,'audio_tools']]],
+ ['array_1447',['Array',['../classffft_1_1_array.html',1,'ffft']]],
+ ['array_3c_20ffft_3a_3aoscsincos_2c_20trigo_5fosc_5farr_5fsize_20_3e_1448',['Array< ffft::OscSinCos, TRIGO_OSC_ARR_SIZE >',['../classffft_1_1_array.html',1,'ffft']]],
+ ['audioactions_1449',['AudioActions',['../classaudio__tools_1_1_audio_actions.html',1,'audio_tools']]],
+ ['audiocmsisfft_1450',['AudioCmsisFFT',['../classaudio__tools_1_1_audio_cmsis_f_f_t.html',1,'audio_tools']]],
+ ['audioconfirmdatatoreceive_1451',['AudioConfirmDataToReceive',['../structaudio__tools_1_1_audio_confirm_data_to_receive.html',1,'audio_tools']]],
+ ['audiodatabegin_1452',['AudioDataBegin',['../structaudio__tools_1_1_audio_data_begin.html',1,'audio_tools']]],
+ ['audiodataend_1453',['AudioDataEnd',['../structaudio__tools_1_1_audio_data_end.html',1,'audio_tools']]],
+ ['audiodecoder_1454',['AudioDecoder',['../classaudio__tools_1_1_audio_decoder.html',1,'audio_tools']]],
+ ['audiodecoderext_1455',['AudioDecoderExt',['../classaudio__tools_1_1_audio_decoder_ext.html',1,'audio_tools']]],
+ ['audioeffect_1456',['AudioEffect',['../classaudio__tools_1_1_audio_effect.html',1,'audio_tools']]],
+ ['audioeffectcommon_1457',['AudioEffectCommon',['../classaudio__tools_1_1_audio_effect_common.html',1,'audio_tools']]],
+ ['audioeffects_1458',['AudioEffects',['../classaudio__tools_1_1_audio_effects.html',1,'audio_tools']]],
+ ['audioeffectstream_1459',['AudioEffectStream',['../classaudio__tools_1_1_audio_effect_stream.html',1,'audio_tools']]],
+ ['audioeffectstreamt_1460',['AudioEffectStreamT',['../classaudio__tools_1_1_audio_effect_stream_t.html',1,'audio_tools']]],
+ ['audioencoder_1461',['AudioEncoder',['../classaudio__tools_1_1_audio_encoder.html',1,'audio_tools']]],
+ ['audioencoderext_1462',['AudioEncoderExt',['../classaudio__tools_1_1_audio_encoder_ext.html',1,'audio_tools']]],
+ ['audioencoderserver_1463',['AudioEncoderServer',['../classaudio__tools_1_1_audio_encoder_server.html',1,'audio_tools']]],
+ ['audioesp32fft_1464',['AudioESP32FFT',['../classaudio__tools_1_1_audio_e_s_p32_f_f_t.html',1,'audio_tools']]],
+ ['audioesp32ulp_1465',['AudioESP32ULP',['../class_audio_e_s_p32_u_l_p.html',1,'']]],
+ ['audioespressiffft_1466',['AudioEspressifFFT',['../classaudio__tools_1_1_audio_espressif_f_f_t.html',1,'audio_tools']]],
+ ['audiofftbase_1467',['AudioFFTBase',['../classaudio__tools_1_1_audio_f_f_t_base.html',1,'audio_tools']]],
+ ['audiofftconfig_1468',['AudioFFTConfig',['../structaudio__tools_1_1_audio_f_f_t_config.html',1,'audio_tools']]],
+ ['audiofftresult_1469',['AudioFFTResult',['../structaudio__tools_1_1_audio_f_f_t_result.html',1,'audio_tools']]],
+ ['audioheader_1470',['AudioHeader',['../structaudio__tools_1_1_audio_header.html',1,'audio_tools']]],
+ ['audioinfo_1471',['AudioInfo',['../structaudio__tools_1_1_audio_info.html',1,'audio_tools']]],
+ ['audioinfolame_1472',['AudioInfoLAME',['../structaudio__tools_1_1_audio_info_l_a_m_e.html',1,'audio_tools']]],
+ ['audioinfosource_1473',['AudioInfoSource',['../classaudio__tools_1_1_audio_info_source.html',1,'audio_tools']]],
+ ['audioinfosupport_1474',['AudioInfoSupport',['../classaudio__tools_1_1_audio_info_support.html',1,'audio_tools']]],
+ ['audiokissfft_1475',['AudioKissFFT',['../classaudio__tools_1_1_audio_kiss_f_f_t.html',1,'audio_tools']]],
+ ['audiokitstream_1476',['AudioKitStream',['../classaudio__tools_1_1_audio_kit_stream.html',1,'audio_tools']]],
+ ['audiokitstreamconfig_1477',['AudioKitStreamConfig',['../classaudio__tools_1_1_audio_kit_stream_config.html',1,'audio_tools']]],
+ ['audiomp34dt05_1478',['AudioMP34DT05',['../classaudio__tools_1_1_audio_m_p34_d_t05.html',1,'audio_tools']]],
+ ['audiomp34dt05config_1479',['AudioMP34DT05Config',['../structaudio__tools_1_1_audio_m_p34_d_t05_config.html',1,'audio_tools']]],
+ ['audiooutput_1480',['AudioOutput',['../classaudio__tools_1_1_audio_output.html',1,'audio_tools']]],
+ ['audiooutputadapter_1481',['AudioOutputAdapter',['../classaudio__tools_1_1_audio_output_adapter.html',1,'audio_tools']]],
+ ['audiooutputwithcallback_1482',['AudioOutputWithCallback',['../classaudio__tools_1_1_audio_output_with_callback.html',1,'audio_tools']]],
+ ['audioplayer_1483',['AudioPlayer',['../classaudio__tools_1_1_audio_player.html',1,'audio_tools']]],
+ ['audiorealfft_1484',['AudioRealFFT',['../classaudio__tools_1_1_audio_real_f_f_t.html',1,'audio_tools']]],
+ ['audiosenddata_1485',['AudioSendData',['../structaudio__tools_1_1_audio_send_data.html',1,'audio_tools']]],
+ ['audioserver_1486',['AudioServer',['../classaudio__tools_1_1_audio_server.html',1,'audio_tools']]],
+ ['audioserverex_1487',['AudioServerEx',['../classaudio__tools_1_1_audio_server_ex.html',1,'audio_tools']]],
+ ['audioserverexconfig_1488',['AudioServerExConfig',['../structaudio__tools_1_1_audio_server_ex_config.html',1,'audio_tools']]],
+ ['audiosource_1489',['AudioSource',['../classaudio__tools_1_1_audio_source.html',1,'audio_tools']]],
+ ['audiosourcecallback_1490',['AudioSourceCallback',['../classaudio__tools_1_1_audio_source_callback.html',1,'audio_tools']]],
+ ['audiosourceidxsd_1491',['AudioSourceIdxSD',['../classaudio__tools_1_1_audio_source_idx_s_d.html',1,'audio_tools']]],
+ ['audiosourceidxsdfat_1492',['AudioSourceIdxSDFAT',['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html',1,'audio_tools']]],
+ ['audiosourceidxsdmmc_1493',['AudioSourceIdxSDMMC',['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html',1,'audio_tools']]],
+ ['audiosourcelittlefs_1494',['AudioSourceLittleFS',['../classaudio__tools_1_1_audio_source_little_f_s.html',1,'audio_tools']]],
+ ['audiosourcesd_1495',['AudioSourceSD',['../classaudio__tools_1_1_audio_source_s_d.html',1,'audio_tools']]],
+ ['audiosourcesdfat_1496',['AudioSourceSDFAT',['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html',1,'audio_tools']]],
+ ['audiosourcesdmmc_1497',['AudioSourceSDMMC',['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html',1,'audio_tools']]],
+ ['audiosourcespiffs_1498',['AudioSourceSPIFFS',['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html',1,'audio_tools']]],
+ ['audiosourcestd_1499',['AudioSourceSTD',['../classaudio__tools_1_1_audio_source_s_t_d.html',1,'audio_tools']]],
+ ['audiosourceurl_1500',['AudioSourceURL',['../classaudio__tools_1_1_audio_source_u_r_l.html',1,'audio_tools']]],
+ ['audiostream_1501',['AudioStream',['../classaudio__tools_1_1_audio_stream.html',1,'audio_tools']]],
+ ['audiostreamwrapper_1502',['AudioStreamWrapper',['../classaudio__tools_1_1_audio_stream_wrapper.html',1,'audio_tools']]],
+ ['audiosyncreader_1503',['AudioSyncReader',['../classaudio__tools_1_1_audio_sync_reader.html',1,'audio_tools']]],
+ ['audiosyncwriter_1504',['AudioSyncWriter',['../classaudio__tools_1_1_audio_sync_writer.html',1,'audio_tools']]],
+ ['audiotime_1505',['AudioTime',['../classaudio__tools_1_1_audio_time.html',1,'audio_tools']]],
+ ['audiowavserver_1506',['AudioWAVServer',['../classaudio__tools_1_1_audio_w_a_v_server.html',1,'audio_tools']]],
+ ['audiowavserverex_1507',['AudioWAVServerEx',['../classaudio__tools_1_1_audio_w_a_v_server_ex.html',1,'audio_tools']]],
+ ['audiowriter_1508',['AudioWriter',['../classaudio__tools_1_1_audio_writer.html',1,'audio_tools']]],
+ ['audiowritertoaudiooutput_1509',['AudioWriterToAudioOutput',['../classaudio__tools_1_1_audio_writer_to_audio_output.html',1,'audio_tools']]],
+ ['avidecoder_1510',['AVIDecoder',['../classaudio__tools_1_1_a_v_i_decoder.html',1,'audio_tools']]],
+ ['avimainheader_1511',['AVIMainHeader',['../structaudio__tools_1_1_a_v_i_main_header.html',1,'audio_tools']]],
+ ['avistreamheader_1512',['AVIStreamHeader',['../structaudio__tools_1_1_a_v_i_stream_header.html',1,'audio_tools']]]
];
diff --git a/search/classes_1.js b/search/classes_1.js
index 15e904a520..412fc73dd9 100644
--- a/search/classes_1.js
+++ b/search/classes_1.js
@@ -1,19 +1,19 @@
var searchData=
[
- ['basebuffer_1512',['BaseBuffer',['../classaudio__tools_1_1_base_buffer.html',1,'audio_tools']]],
- ['basebuffer_3c_20uint8_5ft_20_3e_1513',['BaseBuffer< uint8_t >',['../classaudio__tools_1_1_base_buffer.html',1,'audio_tools']]],
- ['baseconverter_1514',['BaseConverter',['../classaudio__tools_1_1_base_converter.html',1,'audio_tools']]],
- ['binarycontainerdecoder_1515',['BinaryContainerDecoder',['../classaudio__tools_1_1_binary_container_decoder.html',1,'audio_tools']]],
- ['binarycontainerencoder_1516',['BinaryContainerEncoder',['../classaudio__tools_1_1_binary_container_encoder.html',1,'audio_tools']]],
- ['biquaddf1_1517',['BiQuadDF1',['../classaudio__tools_1_1_bi_quad_d_f1.html',1,'audio_tools']]],
- ['biquaddf2_1518',['BiQuadDF2',['../classaudio__tools_1_1_bi_quad_d_f2.html',1,'audio_tools']]],
- ['bitmapinfoheader_1519',['BitmapInfoHeader',['../structaudio__tools_1_1_bitmap_info_header.html',1,'audio_tools']]],
- ['blackman_1520',['Blackman',['../classaudio__tools_1_1_blackman.html',1,'audio_tools']]],
- ['blackmanharris_1521',['BlackmanHarris',['../classaudio__tools_1_1_blackman_harris.html',1,'audio_tools']]],
- ['blackmannuttall_1522',['BlackmanNuttall',['../classaudio__tools_1_1_blackman_nuttall.html',1,'audio_tools']]],
- ['boost_1523',['Boost',['../classaudio__tools_1_1_boost.html',1,'audio_tools']]],
- ['bufferedarray_1524',['BufferedArray',['../classaudio__tools_1_1_buffered_array.html',1,'audio_tools']]],
- ['bufferedstream_1525',['BufferedStream',['../classaudio__tools_1_1_buffered_stream.html',1,'audio_tools']]],
- ['bufferedtaskstream_1526',['BufferedTaskStream',['../classaudio__tools_1_1_buffered_task_stream.html',1,'audio_tools']]],
- ['bufferedwindow_1527',['BufferedWindow',['../classaudio__tools_1_1_buffered_window.html',1,'audio_tools']]]
+ ['basebuffer_1513',['BaseBuffer',['../classaudio__tools_1_1_base_buffer.html',1,'audio_tools']]],
+ ['basebuffer_3c_20uint8_5ft_20_3e_1514',['BaseBuffer< uint8_t >',['../classaudio__tools_1_1_base_buffer.html',1,'audio_tools']]],
+ ['baseconverter_1515',['BaseConverter',['../classaudio__tools_1_1_base_converter.html',1,'audio_tools']]],
+ ['binarycontainerdecoder_1516',['BinaryContainerDecoder',['../classaudio__tools_1_1_binary_container_decoder.html',1,'audio_tools']]],
+ ['binarycontainerencoder_1517',['BinaryContainerEncoder',['../classaudio__tools_1_1_binary_container_encoder.html',1,'audio_tools']]],
+ ['biquaddf1_1518',['BiQuadDF1',['../classaudio__tools_1_1_bi_quad_d_f1.html',1,'audio_tools']]],
+ ['biquaddf2_1519',['BiQuadDF2',['../classaudio__tools_1_1_bi_quad_d_f2.html',1,'audio_tools']]],
+ ['bitmapinfoheader_1520',['BitmapInfoHeader',['../structaudio__tools_1_1_bitmap_info_header.html',1,'audio_tools']]],
+ ['blackman_1521',['Blackman',['../classaudio__tools_1_1_blackman.html',1,'audio_tools']]],
+ ['blackmanharris_1522',['BlackmanHarris',['../classaudio__tools_1_1_blackman_harris.html',1,'audio_tools']]],
+ ['blackmannuttall_1523',['BlackmanNuttall',['../classaudio__tools_1_1_blackman_nuttall.html',1,'audio_tools']]],
+ ['boost_1524',['Boost',['../classaudio__tools_1_1_boost.html',1,'audio_tools']]],
+ ['bufferedarray_1525',['BufferedArray',['../classaudio__tools_1_1_buffered_array.html',1,'audio_tools']]],
+ ['bufferedstream_1526',['BufferedStream',['../classaudio__tools_1_1_buffered_stream.html',1,'audio_tools']]],
+ ['bufferedtaskstream_1527',['BufferedTaskStream',['../classaudio__tools_1_1_buffered_task_stream.html',1,'audio_tools']]],
+ ['bufferedwindow_1528',['BufferedWindow',['../classaudio__tools_1_1_buffered_window.html',1,'audio_tools']]]
];
diff --git a/search/classes_10.js b/search/classes_10.js
index d67781fba6..a0ac91e4a2 100644
--- a/search/classes_10.js
+++ b/search/classes_10.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['queue_1809',['Queue',['../classaudio__tools_1_1_queue.html',1,'audio_tools']]],
- ['queuelockfree_1810',['QueueLockFree',['../classaudio__tools_1_1_queue_lock_free.html',1,'audio_tools']]],
- ['queuestream_1811',['QueueStream',['../classaudio__tools_1_1_queue_stream.html',1,'audio_tools']]],
- ['queuestream_3c_20uint8_5ft_20_3e_1812',['QueueStream< uint8_t >',['../classaudio__tools_1_1_queue_stream.html',1,'audio_tools']]]
+ ['queue_1811',['Queue',['../classaudio__tools_1_1_queue.html',1,'audio_tools']]],
+ ['queuelockfree_1812',['QueueLockFree',['../classaudio__tools_1_1_queue_lock_free.html',1,'audio_tools']]],
+ ['queuestream_1813',['QueueStream',['../classaudio__tools_1_1_queue_stream.html',1,'audio_tools']]],
+ ['queuestream_3c_20uint8_5ft_20_3e_1814',['QueueStream< uint8_t >',['../classaudio__tools_1_1_queue_stream.html',1,'audio_tools']]]
];
diff --git a/search/classes_11.js b/search/classes_11.js
index 892e4e3fdd..9826aed51e 100644
--- a/search/classes_11.js
+++ b/search/classes_11.js
@@ -1,27 +1,27 @@
var searchData=
[
- ['rect_1813',['RECT',['../structaudio__tools_1_1_r_e_c_t.html',1,'audio_tools']]],
- ['rectange_1814',['Rectange',['../classaudio__tools_1_1_rectange.html',1,'audio_tools']]],
- ['reformatbasestream_1815',['ReformatBaseStream',['../classaudio__tools_1_1_reformat_base_stream.html',1,'audio_tools']]],
- ['resampleconfig_1816',['ResampleConfig',['../structaudio__tools_1_1_resample_config.html',1,'audio_tools']]],
- ['resamplestream_1817',['ResampleStream',['../classaudio__tools_1_1_resample_stream.html',1,'audio_tools']]],
- ['result_1818',['Result',['../structaudio__tools_1_1_tf_lite_micro_speech_recognize_commands_1_1_result.html',1,'audio_tools::TfLiteMicroSpeechRecognizeCommands']]],
- ['ringbuffer_1819',['RingBuffer',['../classaudio__tools_1_1_ring_buffer.html',1,'audio_tools']]],
- ['ringbuffer_3c_20int16_5ft_20_3e_1820',['RingBuffer< int16_t >',['../classaudio__tools_1_1_ring_buffer.html',1,'audio_tools']]],
- ['ringbuffer_3c_20sample_20_3e_1821',['RingBuffer< Sample >',['../classaudio__tools_1_1_ring_buffer.html',1,'audio_tools']]],
- ['ringbuffer_3c_20uint8_5ft_20_3e_1822',['RingBuffer< uint8_t >',['../classaudio__tools_1_1_ring_buffer.html',1,'audio_tools']]],
- ['ringbufferfile_1823',['RingBufferFile',['../classaudio__tools_1_1_ring_buffer_file.html',1,'audio_tools']]],
- ['ringbufferstream_1824',['RingBufferStream',['../classaudio__tools_1_1_ring_buffer_stream.html',1,'audio_tools']]],
- ['rtspformatabtx_1825',['RTSPFormatAbtX',['../classaudio__tools_1_1_r_t_s_p_format_abt_x.html',1,'audio_tools']]],
- ['rtspformataudiotools_1826',['RTSPFormatAudioTools',['../classaudio__tools_1_1_r_t_s_p_format_audio_tools.html',1,'audio_tools']]],
- ['rtspformatg711_1827',['RTSPFormatG711',['../classaudio__tools_1_1_r_t_s_p_format_g711.html',1,'audio_tools']]],
- ['rtspformatgsm_1828',['RTSPFormatGSM',['../classaudio__tools_1_1_r_t_s_p_format_g_s_m.html',1,'audio_tools']]],
- ['rtspformatopus_1829',['RTSPFormatOpus',['../classaudio__tools_1_1_r_t_s_p_format_opus.html',1,'audio_tools']]],
- ['rtspformatpcm_1830',['RTSPFormatPCM',['../classaudio__tools_1_1_r_t_s_p_format_p_c_m.html',1,'audio_tools']]],
- ['rtspformatpcm8_1831',['RTSPFormatPCM8',['../classaudio__tools_1_1_r_t_s_p_format_p_c_m8.html',1,'audio_tools']]],
- ['rtspoutput_1832',['RTSPOutput',['../classaudio__tools_1_1_r_t_s_p_output.html',1,'audio_tools']]],
- ['rtspoutputpcminfo_1833',['RTSPOutputPCMInfo',['../classaudio__tools_1_1_r_t_s_p_output_p_c_m_info.html',1,'audio_tools']]],
- ['rtsppcmaudioinfo_1834',['RTSPPCMAudioInfo',['../classaudio__tools_1_1_r_t_s_p_p_c_m_audio_info.html',1,'audio_tools']]],
- ['rtspsourcefromaudiostream_1835',['RTSPSourceFromAudioStream',['../classaudio__tools_1_1_r_t_s_p_source_from_audio_stream.html',1,'audio_tools']]],
- ['rtspsourcestream_1836',['RTSPSourceStream',['../classaudio__tools_1_1_r_t_s_p_source_stream.html',1,'audio_tools']]]
+ ['rect_1815',['RECT',['../structaudio__tools_1_1_r_e_c_t.html',1,'audio_tools']]],
+ ['rectange_1816',['Rectange',['../classaudio__tools_1_1_rectange.html',1,'audio_tools']]],
+ ['reformatbasestream_1817',['ReformatBaseStream',['../classaudio__tools_1_1_reformat_base_stream.html',1,'audio_tools']]],
+ ['resampleconfig_1818',['ResampleConfig',['../structaudio__tools_1_1_resample_config.html',1,'audio_tools']]],
+ ['resamplestream_1819',['ResampleStream',['../classaudio__tools_1_1_resample_stream.html',1,'audio_tools']]],
+ ['result_1820',['Result',['../structaudio__tools_1_1_tf_lite_micro_speech_recognize_commands_1_1_result.html',1,'audio_tools::TfLiteMicroSpeechRecognizeCommands']]],
+ ['ringbuffer_1821',['RingBuffer',['../classaudio__tools_1_1_ring_buffer.html',1,'audio_tools']]],
+ ['ringbuffer_3c_20int16_5ft_20_3e_1822',['RingBuffer< int16_t >',['../classaudio__tools_1_1_ring_buffer.html',1,'audio_tools']]],
+ ['ringbuffer_3c_20sample_20_3e_1823',['RingBuffer< Sample >',['../classaudio__tools_1_1_ring_buffer.html',1,'audio_tools']]],
+ ['ringbuffer_3c_20uint8_5ft_20_3e_1824',['RingBuffer< uint8_t >',['../classaudio__tools_1_1_ring_buffer.html',1,'audio_tools']]],
+ ['ringbufferfile_1825',['RingBufferFile',['../classaudio__tools_1_1_ring_buffer_file.html',1,'audio_tools']]],
+ ['ringbufferstream_1826',['RingBufferStream',['../classaudio__tools_1_1_ring_buffer_stream.html',1,'audio_tools']]],
+ ['rtspformatabtx_1827',['RTSPFormatAbtX',['../classaudio__tools_1_1_r_t_s_p_format_abt_x.html',1,'audio_tools']]],
+ ['rtspformataudiotools_1828',['RTSPFormatAudioTools',['../classaudio__tools_1_1_r_t_s_p_format_audio_tools.html',1,'audio_tools']]],
+ ['rtspformatg711_1829',['RTSPFormatG711',['../classaudio__tools_1_1_r_t_s_p_format_g711.html',1,'audio_tools']]],
+ ['rtspformatgsm_1830',['RTSPFormatGSM',['../classaudio__tools_1_1_r_t_s_p_format_g_s_m.html',1,'audio_tools']]],
+ ['rtspformatopus_1831',['RTSPFormatOpus',['../classaudio__tools_1_1_r_t_s_p_format_opus.html',1,'audio_tools']]],
+ ['rtspformatpcm_1832',['RTSPFormatPCM',['../classaudio__tools_1_1_r_t_s_p_format_p_c_m.html',1,'audio_tools']]],
+ ['rtspformatpcm8_1833',['RTSPFormatPCM8',['../classaudio__tools_1_1_r_t_s_p_format_p_c_m8.html',1,'audio_tools']]],
+ ['rtspoutput_1834',['RTSPOutput',['../classaudio__tools_1_1_r_t_s_p_output.html',1,'audio_tools']]],
+ ['rtspoutputpcminfo_1835',['RTSPOutputPCMInfo',['../classaudio__tools_1_1_r_t_s_p_output_p_c_m_info.html',1,'audio_tools']]],
+ ['rtsppcmaudioinfo_1836',['RTSPPCMAudioInfo',['../classaudio__tools_1_1_r_t_s_p_p_c_m_audio_info.html',1,'audio_tools']]],
+ ['rtspsourcefromaudiostream_1837',['RTSPSourceFromAudioStream',['../classaudio__tools_1_1_r_t_s_p_source_from_audio_stream.html',1,'audio_tools']]],
+ ['rtspsourcestream_1838',['RTSPSourceStream',['../classaudio__tools_1_1_r_t_s_p_source_stream.html',1,'audio_tools']]]
];
diff --git a/search/classes_12.js b/search/classes_12.js
index 259b86e893..75379c98ea 100644
--- a/search/classes_12.js
+++ b/search/classes_12.js
@@ -1,67 +1,67 @@
var searchData=
[
- ['sbcdecoder_1837',['SBCDecoder',['../classaudio__tools_1_1_s_b_c_decoder.html',1,'audio_tools']]],
- ['sbcencoder_1838',['SBCEncoder',['../classaudio__tools_1_1_s_b_c_encoder.html',1,'audio_tools']]],
- ['scaledparameter_1839',['ScaledParameter',['../classaudio__tools_1_1_scaled_parameter.html',1,'audio_tools']]],
- ['sddirect_1840',['SDDirect',['../classaudio__tools_1_1_s_d_direct.html',1,'audio_tools']]],
- ['sddirect_3c_20audiofs_2c_20audiofile_20_3e_1841',['SDDirect< AudioFs, AudioFile >',['../classaudio__tools_1_1_s_d_direct.html',1,'audio_tools']]],
- ['sddirect_3c_20fs_3a_3alittlefsfs_2c_20fs_3a_3afile_20_3e_1842',['SDDirect< fs::LittleFSFS, fs::File >',['../classaudio__tools_1_1_s_d_direct.html',1,'audio_tools']]],
- ['sddirect_3c_20fs_3a_3asdfs_2c_20fs_3a_3afile_20_3e_1843',['SDDirect< fs::SDFS, fs::File >',['../classaudio__tools_1_1_s_d_direct.html',1,'audio_tools']]],
- ['sddirect_3c_20fs_3a_3asdmmcfs_2c_20fs_3a_3afile_20_3e_1844',['SDDirect< fs::SDMMCFS, fs::File >',['../classaudio__tools_1_1_s_d_direct.html',1,'audio_tools']]],
- ['sddirect_3c_20fs_3a_3aspiffsfs_2c_20fs_3a_3afile_20_3e_1845',['SDDirect< fs::SPIFFSFS, fs::File >',['../classaudio__tools_1_1_s_d_direct.html',1,'audio_tools']]],
- ['sdindex_1846',['SDIndex',['../classaudio__tools_1_1_s_d_index.html',1,'audio_tools']]],
- ['sdindex_3c_20audiofs_2c_20audiofile_20_3e_1847',['SDIndex< AudioFs, AudioFile >',['../classaudio__tools_1_1_s_d_index.html',1,'audio_tools']]],
- ['sdindex_3c_20fs_3a_3asdfs_2c_20fs_3a_3afile_20_3e_1848',['SDIndex< fs::SDFS, fs::File >',['../classaudio__tools_1_1_s_d_index.html',1,'audio_tools']]],
- ['sdindex_3c_20fs_3a_3asdmmcfs_2c_20fs_3a_3afile_20_3e_1849',['SDIndex< fs::SDMMCFS, fs::File >',['../classaudio__tools_1_1_s_d_index.html',1,'audio_tools']]],
- ['silencegenerator_1850',['SilenceGenerator',['../classaudio__tools_1_1_silence_generator.html',1,'audio_tools']]],
- ['silenceremovalconverter_1851',['SilenceRemovalConverter',['../classaudio__tools_1_1_silence_removal_converter.html',1,'audio_tools']]],
- ['simplechorus_1852',['SimpleChorus',['../classaudio__tools_1_1_simple_chorus.html',1,'audio_tools']]],
- ['simplecontainerconfig_1853',['SimpleContainerConfig',['../structaudio__tools_1_1_simple_container_config.html',1,'audio_tools']]],
- ['simplecontainerdataheader_1854',['SimpleContainerDataHeader',['../structaudio__tools_1_1_simple_container_data_header.html',1,'audio_tools']]],
- ['simplecontainermetadataheader_1855',['SimpleContainerMetaDataHeader',['../structaudio__tools_1_1_simple_container_meta_data_header.html',1,'audio_tools']]],
- ['simpledelay_1856',['SimpleDelay',['../classaudio__tools_1_1_simple_delay.html',1,'audio_tools']]],
- ['simpleflanger_1857',['SimpleFlanger',['../classaudio__tools_1_1_simple_flanger.html',1,'audio_tools']]],
- ['simplelpf_1858',['SimpleLPF',['../classaudio__tools_1_1_simple_l_p_f.html',1,'audio_tools']]],
- ['simulatedaudiopot_1859',['SimulatedAudioPot',['../classaudio__tools_1_1_simulated_audio_pot.html',1,'audio_tools']]],
- ['sinefromtable_1860',['SineFromTable',['../classaudio__tools_1_1_sine_from_table.html',1,'audio_tools']]],
- ['sinewavegenerator_1861',['SineWaveGenerator',['../classaudio__tools_1_1_sine_wave_generator.html',1,'audio_tools']]],
- ['singlebuffer_1862',['SingleBuffer',['../classaudio__tools_1_1_single_buffer.html',1,'audio_tools']]],
- ['singlebuffer_3c_20int16_5ft_20_3e_1863',['SingleBuffer< int16_t >',['../classaudio__tools_1_1_single_buffer.html',1,'audio_tools']]],
- ['singlebuffer_3c_20uint8_5ft_20_3e_1864',['SingleBuffer< uint8_t >',['../classaudio__tools_1_1_single_buffer.html',1,'audio_tools']]],
- ['slice_1865',['Slice',['../classaudio__tools_1_1_slice.html',1,'audio_tools']]],
- ['smedianfilter_5ft_1866',['sMedianFilter_t',['../structaudio__tools_1_1_median_filter_1_1s_median_filter__t.html',1,'audio_tools::MedianFilter']]],
- ['smediannode_5ft_1867',['sMedianNode_t',['../structaudio__tools_1_1_median_filter_1_1s_median_node__t.html',1,'audio_tools::MedianFilter']]],
- ['smoothtransition_1868',['SmoothTransition',['../classaudio__tools_1_1_smooth_transition.html',1,'audio_tools']]],
- ['sosfilter_1869',['SOSFilter',['../classaudio__tools_1_1_s_o_s_filter.html',1,'audio_tools']]],
- ['soundgenerator_1870',['SoundGenerator',['../classaudio__tools_1_1_sound_generator.html',1,'audio_tools']]],
- ['soundgenerator_3c_20effect_5ft_20_3e_1871',['SoundGenerator< effect_t >',['../classaudio__tools_1_1_sound_generator.html',1,'audio_tools']]],
- ['soundgenerator_3c_20int16_5ft_20_3e_1872',['SoundGenerator< int16_t >',['../classaudio__tools_1_1_sound_generator.html',1,'audio_tools']]],
- ['soundgeneratormodulation_1873',['SoundGeneratorModulation',['../classaudio__tools_1_1_sound_generator_modulation.html',1,'audio_tools']]],
- ['spdifconfig_1874',['SPDIFConfig',['../structaudio__tools_1_1_s_p_d_i_f_config.html',1,'audio_tools']]],
- ['spdifoutput_1875',['SPDIFOutput',['../classaudio__tools_1_1_s_p_d_i_f_output.html',1,'audio_tools']]],
- ['squarewavegenerator_1876',['SquareWaveGenerator',['../classaudio__tools_1_1_square_wave_generator.html',1,'audio_tools']]],
- ['stack_1877',['Stack',['../classaudio__tools_1_1_stack.html',1,'audio_tools']]],
- ['stack_3c_20audio_5ftools_3a_3aparseobject_20_3e_1878',['Stack< audio_tools::ParseObject >',['../classaudio__tools_1_1_stack.html',1,'audio_tools']]],
- ['stdiostream_1879',['StdioStream',['../classaudio__tools_1_1_stdio_stream.html',1,'audio_tools']]],
- ['stkchorus_1880',['STKChorus',['../classaudio__tools_1_1_s_t_k_chorus.html',1,'audio_tools']]],
- ['stkchowningreverb_1881',['STKChowningReverb',['../classaudio__tools_1_1_s_t_k_chowning_reverb.html',1,'audio_tools']]],
- ['stkecho_1882',['STKEcho',['../classaudio__tools_1_1_s_t_k_echo.html',1,'audio_tools']]],
- ['stkeffect_1883',['STKEffect',['../classaudio__tools_1_1_s_t_k_effect.html',1,'audio_tools']]],
- ['stkfreeverb_1884',['STKFreeVerb',['../classaudio__tools_1_1_s_t_k_free_verb.html',1,'audio_tools']]],
- ['stkgenerator_1885',['STKGenerator',['../classaudio__tools_1_1_s_t_k_generator.html',1,'audio_tools']]],
- ['stkgenerator_3c_20stkcls_2c_20int16_5ft_20_3e_1886',['STKGenerator< StkCls, int16_t >',['../classaudio__tools_1_1_s_t_k_generator.html',1,'audio_tools']]],
- ['stklentpitshift_1887',['STKLentPitShift',['../classaudio__tools_1_1_s_t_k_lent_pit_shift.html',1,'audio_tools']]],
- ['stknreverb_1888',['STKNReverb',['../classaudio__tools_1_1_s_t_k_n_reverb.html',1,'audio_tools']]],
- ['stkperryreverb_1889',['STKPerryReverb',['../classaudio__tools_1_1_s_t_k_perry_reverb.html',1,'audio_tools']]],
- ['stkpitshift_1890',['STKPitShift',['../classaudio__tools_1_1_s_t_k_pit_shift.html',1,'audio_tools']]],
- ['stkstream_1891',['STKStream',['../classaudio__tools_1_1_s_t_k_stream.html',1,'audio_tools']]],
- ['str_1892',['Str',['../classaudio__tools_1_1_str.html',1,'audio_tools']]],
- ['stream_1893',['Stream',['../classaudio__tools_1_1_stream.html',1,'audio_tools']]],
- ['streamcopy_1894',['StreamCopy',['../classaudio__tools_1_1_stream_copy.html',1,'audio_tools']]],
- ['streamcopyt_1895',['StreamCopyT',['../classaudio__tools_1_1_stream_copy_t.html',1,'audio_tools']]],
- ['streamcopyt_3c_20uint8_5ft_20_3e_1896',['StreamCopyT< uint8_t >',['../classaudio__tools_1_1_stream_copy_t.html',1,'audio_tools']]],
- ['streamingdecoder_1897',['StreamingDecoder',['../classaudio__tools_1_1_streaming_decoder.html',1,'audio_tools']]],
- ['strext_1898',['StrExt',['../classaudio__tools_1_1_str_ext.html',1,'audio_tools']]],
- ['synthesizer_1899',['Synthesizer',['../classaudio__tools_1_1_synthesizer.html',1,'audio_tools']]],
- ['synthesizerkey_1900',['SynthesizerKey',['../structaudio__tools_1_1_synthesizer_key.html',1,'audio_tools']]]
+ ['sbcdecoder_1839',['SBCDecoder',['../classaudio__tools_1_1_s_b_c_decoder.html',1,'audio_tools']]],
+ ['sbcencoder_1840',['SBCEncoder',['../classaudio__tools_1_1_s_b_c_encoder.html',1,'audio_tools']]],
+ ['scaledparameter_1841',['ScaledParameter',['../classaudio__tools_1_1_scaled_parameter.html',1,'audio_tools']]],
+ ['sddirect_1842',['SDDirect',['../classaudio__tools_1_1_s_d_direct.html',1,'audio_tools']]],
+ ['sddirect_3c_20audiofs_2c_20audiofile_20_3e_1843',['SDDirect< AudioFs, AudioFile >',['../classaudio__tools_1_1_s_d_direct.html',1,'audio_tools']]],
+ ['sddirect_3c_20fs_3a_3alittlefsfs_2c_20fs_3a_3afile_20_3e_1844',['SDDirect< fs::LittleFSFS, fs::File >',['../classaudio__tools_1_1_s_d_direct.html',1,'audio_tools']]],
+ ['sddirect_3c_20fs_3a_3asdfs_2c_20fs_3a_3afile_20_3e_1845',['SDDirect< fs::SDFS, fs::File >',['../classaudio__tools_1_1_s_d_direct.html',1,'audio_tools']]],
+ ['sddirect_3c_20fs_3a_3asdmmcfs_2c_20fs_3a_3afile_20_3e_1846',['SDDirect< fs::SDMMCFS, fs::File >',['../classaudio__tools_1_1_s_d_direct.html',1,'audio_tools']]],
+ ['sddirect_3c_20fs_3a_3aspiffsfs_2c_20fs_3a_3afile_20_3e_1847',['SDDirect< fs::SPIFFSFS, fs::File >',['../classaudio__tools_1_1_s_d_direct.html',1,'audio_tools']]],
+ ['sdindex_1848',['SDIndex',['../classaudio__tools_1_1_s_d_index.html',1,'audio_tools']]],
+ ['sdindex_3c_20audiofs_2c_20audiofile_20_3e_1849',['SDIndex< AudioFs, AudioFile >',['../classaudio__tools_1_1_s_d_index.html',1,'audio_tools']]],
+ ['sdindex_3c_20fs_3a_3asdfs_2c_20fs_3a_3afile_20_3e_1850',['SDIndex< fs::SDFS, fs::File >',['../classaudio__tools_1_1_s_d_index.html',1,'audio_tools']]],
+ ['sdindex_3c_20fs_3a_3asdmmcfs_2c_20fs_3a_3afile_20_3e_1851',['SDIndex< fs::SDMMCFS, fs::File >',['../classaudio__tools_1_1_s_d_index.html',1,'audio_tools']]],
+ ['silencegenerator_1852',['SilenceGenerator',['../classaudio__tools_1_1_silence_generator.html',1,'audio_tools']]],
+ ['silenceremovalconverter_1853',['SilenceRemovalConverter',['../classaudio__tools_1_1_silence_removal_converter.html',1,'audio_tools']]],
+ ['simplechorus_1854',['SimpleChorus',['../classaudio__tools_1_1_simple_chorus.html',1,'audio_tools']]],
+ ['simplecontainerconfig_1855',['SimpleContainerConfig',['../structaudio__tools_1_1_simple_container_config.html',1,'audio_tools']]],
+ ['simplecontainerdataheader_1856',['SimpleContainerDataHeader',['../structaudio__tools_1_1_simple_container_data_header.html',1,'audio_tools']]],
+ ['simplecontainermetadataheader_1857',['SimpleContainerMetaDataHeader',['../structaudio__tools_1_1_simple_container_meta_data_header.html',1,'audio_tools']]],
+ ['simpledelay_1858',['SimpleDelay',['../classaudio__tools_1_1_simple_delay.html',1,'audio_tools']]],
+ ['simpleflanger_1859',['SimpleFlanger',['../classaudio__tools_1_1_simple_flanger.html',1,'audio_tools']]],
+ ['simplelpf_1860',['SimpleLPF',['../classaudio__tools_1_1_simple_l_p_f.html',1,'audio_tools']]],
+ ['simulatedaudiopot_1861',['SimulatedAudioPot',['../classaudio__tools_1_1_simulated_audio_pot.html',1,'audio_tools']]],
+ ['sinefromtable_1862',['SineFromTable',['../classaudio__tools_1_1_sine_from_table.html',1,'audio_tools']]],
+ ['sinewavegenerator_1863',['SineWaveGenerator',['../classaudio__tools_1_1_sine_wave_generator.html',1,'audio_tools']]],
+ ['singlebuffer_1864',['SingleBuffer',['../classaudio__tools_1_1_single_buffer.html',1,'audio_tools']]],
+ ['singlebuffer_3c_20int16_5ft_20_3e_1865',['SingleBuffer< int16_t >',['../classaudio__tools_1_1_single_buffer.html',1,'audio_tools']]],
+ ['singlebuffer_3c_20uint8_5ft_20_3e_1866',['SingleBuffer< uint8_t >',['../classaudio__tools_1_1_single_buffer.html',1,'audio_tools']]],
+ ['slice_1867',['Slice',['../classaudio__tools_1_1_slice.html',1,'audio_tools']]],
+ ['smedianfilter_5ft_1868',['sMedianFilter_t',['../structaudio__tools_1_1_median_filter_1_1s_median_filter__t.html',1,'audio_tools::MedianFilter']]],
+ ['smediannode_5ft_1869',['sMedianNode_t',['../structaudio__tools_1_1_median_filter_1_1s_median_node__t.html',1,'audio_tools::MedianFilter']]],
+ ['smoothtransition_1870',['SmoothTransition',['../classaudio__tools_1_1_smooth_transition.html',1,'audio_tools']]],
+ ['sosfilter_1871',['SOSFilter',['../classaudio__tools_1_1_s_o_s_filter.html',1,'audio_tools']]],
+ ['soundgenerator_1872',['SoundGenerator',['../classaudio__tools_1_1_sound_generator.html',1,'audio_tools']]],
+ ['soundgenerator_3c_20effect_5ft_20_3e_1873',['SoundGenerator< effect_t >',['../classaudio__tools_1_1_sound_generator.html',1,'audio_tools']]],
+ ['soundgenerator_3c_20int16_5ft_20_3e_1874',['SoundGenerator< int16_t >',['../classaudio__tools_1_1_sound_generator.html',1,'audio_tools']]],
+ ['soundgeneratormodulation_1875',['SoundGeneratorModulation',['../classaudio__tools_1_1_sound_generator_modulation.html',1,'audio_tools']]],
+ ['spdifconfig_1876',['SPDIFConfig',['../structaudio__tools_1_1_s_p_d_i_f_config.html',1,'audio_tools']]],
+ ['spdifoutput_1877',['SPDIFOutput',['../classaudio__tools_1_1_s_p_d_i_f_output.html',1,'audio_tools']]],
+ ['squarewavegenerator_1878',['SquareWaveGenerator',['../classaudio__tools_1_1_square_wave_generator.html',1,'audio_tools']]],
+ ['stack_1879',['Stack',['../classaudio__tools_1_1_stack.html',1,'audio_tools']]],
+ ['stack_3c_20audio_5ftools_3a_3aparseobject_20_3e_1880',['Stack< audio_tools::ParseObject >',['../classaudio__tools_1_1_stack.html',1,'audio_tools']]],
+ ['stdiostream_1881',['StdioStream',['../classaudio__tools_1_1_stdio_stream.html',1,'audio_tools']]],
+ ['stkchorus_1882',['STKChorus',['../classaudio__tools_1_1_s_t_k_chorus.html',1,'audio_tools']]],
+ ['stkchowningreverb_1883',['STKChowningReverb',['../classaudio__tools_1_1_s_t_k_chowning_reverb.html',1,'audio_tools']]],
+ ['stkecho_1884',['STKEcho',['../classaudio__tools_1_1_s_t_k_echo.html',1,'audio_tools']]],
+ ['stkeffect_1885',['STKEffect',['../classaudio__tools_1_1_s_t_k_effect.html',1,'audio_tools']]],
+ ['stkfreeverb_1886',['STKFreeVerb',['../classaudio__tools_1_1_s_t_k_free_verb.html',1,'audio_tools']]],
+ ['stkgenerator_1887',['STKGenerator',['../classaudio__tools_1_1_s_t_k_generator.html',1,'audio_tools']]],
+ ['stkgenerator_3c_20stkcls_2c_20int16_5ft_20_3e_1888',['STKGenerator< StkCls, int16_t >',['../classaudio__tools_1_1_s_t_k_generator.html',1,'audio_tools']]],
+ ['stklentpitshift_1889',['STKLentPitShift',['../classaudio__tools_1_1_s_t_k_lent_pit_shift.html',1,'audio_tools']]],
+ ['stknreverb_1890',['STKNReverb',['../classaudio__tools_1_1_s_t_k_n_reverb.html',1,'audio_tools']]],
+ ['stkperryreverb_1891',['STKPerryReverb',['../classaudio__tools_1_1_s_t_k_perry_reverb.html',1,'audio_tools']]],
+ ['stkpitshift_1892',['STKPitShift',['../classaudio__tools_1_1_s_t_k_pit_shift.html',1,'audio_tools']]],
+ ['stkstream_1893',['STKStream',['../classaudio__tools_1_1_s_t_k_stream.html',1,'audio_tools']]],
+ ['str_1894',['Str',['../classaudio__tools_1_1_str.html',1,'audio_tools']]],
+ ['stream_1895',['Stream',['../classaudio__tools_1_1_stream.html',1,'audio_tools']]],
+ ['streamcopy_1896',['StreamCopy',['../classaudio__tools_1_1_stream_copy.html',1,'audio_tools']]],
+ ['streamcopyt_1897',['StreamCopyT',['../classaudio__tools_1_1_stream_copy_t.html',1,'audio_tools']]],
+ ['streamcopyt_3c_20uint8_5ft_20_3e_1898',['StreamCopyT< uint8_t >',['../classaudio__tools_1_1_stream_copy_t.html',1,'audio_tools']]],
+ ['streamingdecoder_1899',['StreamingDecoder',['../classaudio__tools_1_1_streaming_decoder.html',1,'audio_tools']]],
+ ['strext_1900',['StrExt',['../classaudio__tools_1_1_str_ext.html',1,'audio_tools']]],
+ ['synthesizer_1901',['Synthesizer',['../classaudio__tools_1_1_synthesizer.html',1,'audio_tools']]],
+ ['synthesizerkey_1902',['SynthesizerKey',['../structaudio__tools_1_1_synthesizer_key.html',1,'audio_tools']]]
];
diff --git a/search/classes_13.js b/search/classes_13.js
index 3027ec8469..a6d935b9d6 100644
--- a/search/classes_13.js
+++ b/search/classes_13.js
@@ -1,32 +1,32 @@
var searchData=
[
- ['testgenerator_1901',['TestGenerator',['../classaudio__tools_1_1_test_generator.html',1,'audio_tools']]],
- ['tfliteabstractrecognizecommands_1902',['TfLiteAbstractRecognizeCommands',['../classaudio__tools_1_1_tf_lite_abstract_recognize_commands.html',1,'audio_tools']]],
- ['tfliteaudioerrorreporter_1903',['TfLiteAudioErrorReporter',['../classaudio__tools_1_1_tf_lite_audio_error_reporter.html',1,'audio_tools']]],
- ['tfliteaudiostream_1904',['TfLiteAudioStream',['../classaudio__tools_1_1_tf_lite_audio_stream.html',1,'audio_tools']]],
- ['tfliteaudiostreambase_1905',['TfLiteAudioStreamBase',['../classaudio__tools_1_1_tf_lite_audio_stream_base.html',1,'audio_tools']]],
- ['tfliteconfig_1906',['TfLiteConfig',['../structaudio__tools_1_1_tf_lite_config.html',1,'audio_tools']]],
- ['tflitemicrospeachwriter_1907',['TfLiteMicroSpeachWriter',['../classaudio__tools_1_1_tf_lite_micro_speach_writer.html',1,'audio_tools']]],
- ['tflitemicrospeechrecognizecommands_1908',['TfLiteMicroSpeechRecognizeCommands',['../classaudio__tools_1_1_tf_lite_micro_speech_recognize_commands.html',1,'audio_tools']]],
- ['tflitequantizer_1909',['TfLiteQuantizer',['../classaudio__tools_1_1_tf_lite_quantizer.html',1,'audio_tools']]],
- ['tflitereader_1910',['TfLiteReader',['../classaudio__tools_1_1_tf_lite_reader.html',1,'audio_tools']]],
- ['tflitesinereader_1911',['TfLiteSineReader',['../classaudio__tools_1_1_tf_lite_sine_reader.html',1,'audio_tools']]],
- ['tflitewriter_1912',['TfLiteWriter',['../classaudio__tools_1_1_tf_lite_writer.html',1,'audio_tools']]],
- ['throttle_1913',['Throttle',['../classaudio__tools_1_1_throttle.html',1,'audio_tools']]],
- ['throttleconfig_1914',['ThrottleConfig',['../structaudio__tools_1_1_throttle_config.html',1,'audio_tools']]],
- ['timedstream_1915',['TimedStream',['../classaudio__tools_1_1_timed_stream.html',1,'audio_tools']]],
- ['timeralarmrepeating_1916',['TimerAlarmRepeating',['../classaudio__tools_1_1_timer_alarm_repeating.html',1,'audio_tools']]],
- ['timeralarmrepeatingdriveravr_1917',['TimerAlarmRepeatingDriverAVR',['../classaudio__tools_1_1_timer_alarm_repeating_driver_a_v_r.html',1,'audio_tools']]],
- ['timeralarmrepeatingdriverbase_1918',['TimerAlarmRepeatingDriverBase',['../classaudio__tools_1_1_timer_alarm_repeating_driver_base.html',1,'audio_tools']]],
- ['timeralarmrepeatingdriveresp8266_1919',['TimerAlarmRepeatingDriverESP8266',['../classaudio__tools_1_1_timer_alarm_repeating_driver_e_s_p8266.html',1,'audio_tools']]],
- ['timeralarmrepeatingdrivermbed_1920',['TimerAlarmRepeatingDriverMBED',['../classaudio__tools_1_1_timer_alarm_repeating_driver_m_b_e_d.html',1,'audio_tools']]],
- ['timeralarmrepeatingdriverrenesas_1921',['TimerAlarmRepeatingDriverRenesas',['../classaudio__tools_1_1_timer_alarm_repeating_driver_renesas.html',1,'audio_tools']]],
- ['timeralarmrepeatingdriverstm32_1922',['TimerAlarmRepeatingDriverSTM32',['../classaudio__tools_1_1_timer_alarm_repeating_driver_s_t_m32.html',1,'audio_tools']]],
- ['timercallbackaudiostream_1923',['TimerCallbackAudioStream',['../classaudio__tools_1_1_timer_callback_audio_stream.html',1,'audio_tools']]],
- ['timercallbackaudiostreaminfo_1924',['TimerCallbackAudioStreamInfo',['../structaudio__tools_1_1_timer_callback_audio_stream_info.html',1,'audio_tools']]],
- ['transformationreader_1925',['TransformationReader',['../classaudio__tools_1_1_transformation_reader.html',1,'audio_tools']]],
- ['transformationreader_3c_20audio_5ftools_3a_3areformatbasestream_20_3e_1926',['TransformationReader< audio_tools::ReformatBaseStream >',['../classaudio__tools_1_1_transformation_reader.html',1,'audio_tools']]],
- ['transformationreader_3c_20audio_5ftools_3a_3aresamplestream_20_3e_1927',['TransformationReader< audio_tools::ResampleStream >',['../classaudio__tools_1_1_transformation_reader.html',1,'audio_tools']]],
- ['tremolo_1928',['Tremolo',['../classaudio__tools_1_1_tremolo.html',1,'audio_tools']]],
- ['triangle_1929',['Triangle',['../classaudio__tools_1_1_triangle.html',1,'audio_tools']]]
+ ['testgenerator_1903',['TestGenerator',['../classaudio__tools_1_1_test_generator.html',1,'audio_tools']]],
+ ['tfliteabstractrecognizecommands_1904',['TfLiteAbstractRecognizeCommands',['../classaudio__tools_1_1_tf_lite_abstract_recognize_commands.html',1,'audio_tools']]],
+ ['tfliteaudioerrorreporter_1905',['TfLiteAudioErrorReporter',['../classaudio__tools_1_1_tf_lite_audio_error_reporter.html',1,'audio_tools']]],
+ ['tfliteaudiostream_1906',['TfLiteAudioStream',['../classaudio__tools_1_1_tf_lite_audio_stream.html',1,'audio_tools']]],
+ ['tfliteaudiostreambase_1907',['TfLiteAudioStreamBase',['../classaudio__tools_1_1_tf_lite_audio_stream_base.html',1,'audio_tools']]],
+ ['tfliteconfig_1908',['TfLiteConfig',['../structaudio__tools_1_1_tf_lite_config.html',1,'audio_tools']]],
+ ['tflitemicrospeachwriter_1909',['TfLiteMicroSpeachWriter',['../classaudio__tools_1_1_tf_lite_micro_speach_writer.html',1,'audio_tools']]],
+ ['tflitemicrospeechrecognizecommands_1910',['TfLiteMicroSpeechRecognizeCommands',['../classaudio__tools_1_1_tf_lite_micro_speech_recognize_commands.html',1,'audio_tools']]],
+ ['tflitequantizer_1911',['TfLiteQuantizer',['../classaudio__tools_1_1_tf_lite_quantizer.html',1,'audio_tools']]],
+ ['tflitereader_1912',['TfLiteReader',['../classaudio__tools_1_1_tf_lite_reader.html',1,'audio_tools']]],
+ ['tflitesinereader_1913',['TfLiteSineReader',['../classaudio__tools_1_1_tf_lite_sine_reader.html',1,'audio_tools']]],
+ ['tflitewriter_1914',['TfLiteWriter',['../classaudio__tools_1_1_tf_lite_writer.html',1,'audio_tools']]],
+ ['throttle_1915',['Throttle',['../classaudio__tools_1_1_throttle.html',1,'audio_tools']]],
+ ['throttleconfig_1916',['ThrottleConfig',['../structaudio__tools_1_1_throttle_config.html',1,'audio_tools']]],
+ ['timedstream_1917',['TimedStream',['../classaudio__tools_1_1_timed_stream.html',1,'audio_tools']]],
+ ['timeralarmrepeating_1918',['TimerAlarmRepeating',['../classaudio__tools_1_1_timer_alarm_repeating.html',1,'audio_tools']]],
+ ['timeralarmrepeatingdriveravr_1919',['TimerAlarmRepeatingDriverAVR',['../classaudio__tools_1_1_timer_alarm_repeating_driver_a_v_r.html',1,'audio_tools']]],
+ ['timeralarmrepeatingdriverbase_1920',['TimerAlarmRepeatingDriverBase',['../classaudio__tools_1_1_timer_alarm_repeating_driver_base.html',1,'audio_tools']]],
+ ['timeralarmrepeatingdriveresp8266_1921',['TimerAlarmRepeatingDriverESP8266',['../classaudio__tools_1_1_timer_alarm_repeating_driver_e_s_p8266.html',1,'audio_tools']]],
+ ['timeralarmrepeatingdrivermbed_1922',['TimerAlarmRepeatingDriverMBED',['../classaudio__tools_1_1_timer_alarm_repeating_driver_m_b_e_d.html',1,'audio_tools']]],
+ ['timeralarmrepeatingdriverrenesas_1923',['TimerAlarmRepeatingDriverRenesas',['../classaudio__tools_1_1_timer_alarm_repeating_driver_renesas.html',1,'audio_tools']]],
+ ['timeralarmrepeatingdriverstm32_1924',['TimerAlarmRepeatingDriverSTM32',['../classaudio__tools_1_1_timer_alarm_repeating_driver_s_t_m32.html',1,'audio_tools']]],
+ ['timercallbackaudiostream_1925',['TimerCallbackAudioStream',['../classaudio__tools_1_1_timer_callback_audio_stream.html',1,'audio_tools']]],
+ ['timercallbackaudiostreaminfo_1926',['TimerCallbackAudioStreamInfo',['../structaudio__tools_1_1_timer_callback_audio_stream_info.html',1,'audio_tools']]],
+ ['transformationreader_1927',['TransformationReader',['../classaudio__tools_1_1_transformation_reader.html',1,'audio_tools']]],
+ ['transformationreader_3c_20audio_5ftools_3a_3areformatbasestream_20_3e_1928',['TransformationReader< audio_tools::ReformatBaseStream >',['../classaudio__tools_1_1_transformation_reader.html',1,'audio_tools']]],
+ ['transformationreader_3c_20audio_5ftools_3a_3aresamplestream_20_3e_1929',['TransformationReader< audio_tools::ResampleStream >',['../classaudio__tools_1_1_transformation_reader.html',1,'audio_tools']]],
+ ['tremolo_1930',['Tremolo',['../classaudio__tools_1_1_tremolo.html',1,'audio_tools']]],
+ ['triangle_1931',['Triangle',['../classaudio__tools_1_1_triangle.html',1,'audio_tools']]]
];
diff --git a/search/classes_14.js b/search/classes_14.js
index ff15354538..d77f3e0812 100644
--- a/search/classes_14.js
+++ b/search/classes_14.js
@@ -1,10 +1,10 @@
var searchData=
[
- ['udpstream_1930',['UDPStream',['../classaudio__tools_1_1_u_d_p_stream.html',1,'audio_tools']]],
- ['ui_1931',['UI',['../class_u_i.html',1,'']]],
- ['url_1932',['Url',['../classaudio__tools_1_1_url.html',1,'audio_tools']]],
- ['urlhistory_1933',['URLHistory',['../classaudio__tools_1_1_u_r_l_history.html',1,'audio_tools']]],
- ['urlloader_1934',['URLLoader',['../classaudio__tools_1_1_u_r_l_loader.html',1,'audio_tools']]],
- ['urlstream_1935',['URLStream',['../classaudio__tools_1_1_u_r_l_stream.html',1,'audio_tools']]],
- ['urlstreambuffered_1936',['URLStreamBuffered',['../classaudio__tools_1_1_u_r_l_stream_buffered.html',1,'audio_tools']]]
+ ['udpstream_1932',['UDPStream',['../classaudio__tools_1_1_u_d_p_stream.html',1,'audio_tools']]],
+ ['ui_1933',['UI',['../class_u_i.html',1,'']]],
+ ['url_1934',['Url',['../classaudio__tools_1_1_url.html',1,'audio_tools']]],
+ ['urlhistory_1935',['URLHistory',['../classaudio__tools_1_1_u_r_l_history.html',1,'audio_tools']]],
+ ['urlloader_1936',['URLLoader',['../classaudio__tools_1_1_u_r_l_loader.html',1,'audio_tools']]],
+ ['urlstream_1937',['URLStream',['../classaudio__tools_1_1_u_r_l_stream.html',1,'audio_tools']]],
+ ['urlstreambuffered_1938',['URLStreamBuffered',['../classaudio__tools_1_1_u_r_l_stream_buffered.html',1,'audio_tools']]]
];
diff --git a/search/classes_15.js b/search/classes_15.js
index f562b4c61a..264c66e4bd 100644
--- a/search/classes_15.js
+++ b/search/classes_15.js
@@ -1,57 +1,57 @@
var searchData=
[
- ['variablespeedringbuffer_1937',['VariableSpeedRingBuffer',['../classaudio__tools_1_1_variable_speed_ring_buffer.html',1,'audio_tools']]],
- ['variablespeedringbuffer180_1938',['VariableSpeedRingBuffer180',['../classaudio__tools_1_1_variable_speed_ring_buffer180.html',1,'audio_tools']]],
- ['variablespeedringbuffer_3c_20int16_5ft_20_3e_1939',['VariableSpeedRingBuffer< int16_t >',['../classaudio__tools_1_1_variable_speed_ring_buffer.html',1,'audio_tools']]],
- ['variablespeedringbuffersimple_1940',['VariableSpeedRingBufferSimple',['../classaudio__tools_1_1_variable_speed_ring_buffer_simple.html',1,'audio_tools']]],
- ['vban_1941',['VBan',['../struct_v_ban.html',1,'']]],
- ['vbanconfig_1942',['VBANConfig',['../classaudio__tools_1_1_v_b_a_n_config.html',1,'audio_tools']]],
- ['vbanheader_1943',['VBanHeader',['../struct_v_ban_header.html',1,'']]],
- ['vbanstream_1944',['VBANStream',['../classaudio__tools_1_1_v_b_a_n_stream.html',1,'audio_tools']]],
- ['vector_1945',['Vector',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20audio_5ftools_3a_3aabstractsynthesizerchannel_20_2a_20_3e_1946',['Vector< audio_tools::AbstractSynthesizerChannel * >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20audio_5ftools_3a_3aallocsize_20_3e_1947',['Vector< audio_tools::AllocSize >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20audio_5ftools_3a_3aaudioeffect_20_2a_20_3e_1948',['Vector< audio_tools::AudioEffect * >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20audio_5ftools_3a_3aaudiooutput_20_2a_20_3e_1949',['Vector< audio_tools::AudioOutput * >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20audio_5ftools_3a_3aavistreamheader_20_3e_1950',['Vector< audio_tools::AVIStreamHeader >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20audio_5ftools_3a_3abasebuffer_3c_20t_20_3e_20_2a_20_3e_1951',['Vector< audio_tools::BaseBuffer< T > * >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20audio_5ftools_3a_3abaseconverter_20_2a_20_3e_1952',['Vector< audio_tools::BaseConverter * >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20audio_5ftools_3a_3achannelsplitoutput_3a_3achannelselectionoutputdef_20_3e_1953',['Vector< audio_tools::ChannelSplitOutput::ChannelSelectionOutputDef >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20audio_5ftools_3a_3ahttpheaderline_20_2a_20_3e_1954',['Vector< audio_tools::HttpHeaderLine * >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20audio_5ftools_3a_3amedianfilter_3a_3asmediannode_5ft_20_3e_1955',['Vector< audio_tools::MedianFilter::sMedianNode_t >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20audio_5ftools_3a_3apininfoesp32_20_3e_1956',['Vector< audio_tools::PinInfoESP32 >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20audio_5ftools_3a_3aringbuffer_3c_20t_20_3e_20_2a_20_3e_1957',['Vector< audio_tools::RingBuffer< T > * >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20audio_5ftools_3a_3asoundgenerator_3c_20t_20_3e_20_2a_20_3e_1958',['Vector< audio_tools::SoundGenerator< T > * >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20audio_5ftools_3a_3astream_20_2a_20_3e_1959',['Vector< audio_tools::Stream * >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20audio_5ftools_3a_3atflitemicrospeechrecognizecommands_3a_3aresult_20_3e_1960',['Vector< audio_tools::TfLiteMicroSpeechRecognizeCommands::Result >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20audio_5ftools_3a_3aurlstream_20_2a_20_3e_1961',['Vector< audio_tools::URLStream * >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20bool_20_3e_1962',['Vector< bool >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20char_20_3e_1963',['Vector< char >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20const_20char_20_2a_20_3e_1964',['Vector< const char * >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20crgb_20_3e_1965',['Vector< CRGB >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20effect_5ft_20_3e_1966',['Vector< effect_t >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20flac_5f_5fint32_20_3e_1967',['Vector< FLAC__int32 >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20float_20_3e_1968',['Vector< float >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20int_20_3e_1969',['Vector< int >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20int16_5ft_20_3e_1970',['Vector< int16_t >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20int24x_5ft_20_3e_1971',['Vector< int24x_t >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20int8_5ft_20_3e_1972',['Vector< int8_t >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20mbed_3a_3apwmout_20_2a_20_3e_1973',['Vector< mbed::PwmOut * >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20mp3d_5fsample_5ft_20_3e_1974',['Vector< mp3d_sample_t >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20pwmout_20_2a_20_3e_1975',['Vector< PwmOut * >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20pwmpin_20_3e_1976',['Vector< PWMPin >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20streamcontenttype_20_3e_1977',['Vector< StreamContentType >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20tsdpmtstreamtype_20_3e_1978',['Vector< TSDPMTStreamType >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20uint16_5ft_20_3e_1979',['Vector< uint16_t >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['vector_3c_20uint8_5ft_20_3e_1980',['Vector< uint8_t >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
- ['videoaudiobufferedsync_1981',['VideoAudioBufferedSync',['../classaudio__tools_1_1_video_audio_buffered_sync.html',1,'audio_tools']]],
- ['videoaudiosync_1982',['VideoAudioSync',['../classaudio__tools_1_1_video_audio_sync.html',1,'audio_tools']]],
- ['videooutput_1983',['VideoOutput',['../classaudio__tools_1_1_video_output.html',1,'audio_tools']]],
- ['volumecontrol_1984',['VolumeControl',['../classaudio__tools_1_1_volume_control.html',1,'audio_tools']]],
- ['volumeoutput_1985',['VolumeOutput',['../classaudio__tools_1_1_volume_output.html',1,'audio_tools']]],
- ['volumestream_1986',['VolumeStream',['../classaudio__tools_1_1_volume_stream.html',1,'audio_tools']]],
- ['volumestreamconfig_1987',['VolumeStreamConfig',['../structaudio__tools_1_1_volume_stream_config.html',1,'audio_tools']]],
- ['vorbisdecoder_1988',['VorbisDecoder',['../classaudio__tools_1_1_vorbis_decoder.html',1,'audio_tools']]],
- ['vs1053config_1989',['VS1053Config',['../classaudio__tools_1_1_v_s1053_config.html',1,'audio_tools']]],
- ['vs1053stream_1990',['VS1053Stream',['../classaudio__tools_1_1_v_s1053_stream.html',1,'audio_tools']]]
+ ['variablespeedringbuffer_1939',['VariableSpeedRingBuffer',['../classaudio__tools_1_1_variable_speed_ring_buffer.html',1,'audio_tools']]],
+ ['variablespeedringbuffer180_1940',['VariableSpeedRingBuffer180',['../classaudio__tools_1_1_variable_speed_ring_buffer180.html',1,'audio_tools']]],
+ ['variablespeedringbuffer_3c_20int16_5ft_20_3e_1941',['VariableSpeedRingBuffer< int16_t >',['../classaudio__tools_1_1_variable_speed_ring_buffer.html',1,'audio_tools']]],
+ ['variablespeedringbuffersimple_1942',['VariableSpeedRingBufferSimple',['../classaudio__tools_1_1_variable_speed_ring_buffer_simple.html',1,'audio_tools']]],
+ ['vban_1943',['VBan',['../struct_v_ban.html',1,'']]],
+ ['vbanconfig_1944',['VBANConfig',['../classaudio__tools_1_1_v_b_a_n_config.html',1,'audio_tools']]],
+ ['vbanheader_1945',['VBanHeader',['../struct_v_ban_header.html',1,'']]],
+ ['vbanstream_1946',['VBANStream',['../classaudio__tools_1_1_v_b_a_n_stream.html',1,'audio_tools']]],
+ ['vector_1947',['Vector',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20audio_5ftools_3a_3aabstractsynthesizerchannel_20_2a_20_3e_1948',['Vector< audio_tools::AbstractSynthesizerChannel * >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20audio_5ftools_3a_3aallocsize_20_3e_1949',['Vector< audio_tools::AllocSize >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20audio_5ftools_3a_3aaudioeffect_20_2a_20_3e_1950',['Vector< audio_tools::AudioEffect * >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20audio_5ftools_3a_3aaudiooutput_20_2a_20_3e_1951',['Vector< audio_tools::AudioOutput * >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20audio_5ftools_3a_3aavistreamheader_20_3e_1952',['Vector< audio_tools::AVIStreamHeader >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20audio_5ftools_3a_3abasebuffer_3c_20t_20_3e_20_2a_20_3e_1953',['Vector< audio_tools::BaseBuffer< T > * >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20audio_5ftools_3a_3abaseconverter_20_2a_20_3e_1954',['Vector< audio_tools::BaseConverter * >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20audio_5ftools_3a_3achannelsplitoutput_3a_3achannelselectionoutputdef_20_3e_1955',['Vector< audio_tools::ChannelSplitOutput::ChannelSelectionOutputDef >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20audio_5ftools_3a_3ahttpheaderline_20_2a_20_3e_1956',['Vector< audio_tools::HttpHeaderLine * >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20audio_5ftools_3a_3amedianfilter_3a_3asmediannode_5ft_20_3e_1957',['Vector< audio_tools::MedianFilter::sMedianNode_t >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20audio_5ftools_3a_3apininfoesp32_20_3e_1958',['Vector< audio_tools::PinInfoESP32 >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20audio_5ftools_3a_3aringbuffer_3c_20t_20_3e_20_2a_20_3e_1959',['Vector< audio_tools::RingBuffer< T > * >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20audio_5ftools_3a_3asoundgenerator_3c_20t_20_3e_20_2a_20_3e_1960',['Vector< audio_tools::SoundGenerator< T > * >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20audio_5ftools_3a_3astream_20_2a_20_3e_1961',['Vector< audio_tools::Stream * >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20audio_5ftools_3a_3atflitemicrospeechrecognizecommands_3a_3aresult_20_3e_1962',['Vector< audio_tools::TfLiteMicroSpeechRecognizeCommands::Result >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20audio_5ftools_3a_3aurlstream_20_2a_20_3e_1963',['Vector< audio_tools::URLStream * >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20bool_20_3e_1964',['Vector< bool >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20char_20_3e_1965',['Vector< char >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20const_20char_20_2a_20_3e_1966',['Vector< const char * >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20crgb_20_3e_1967',['Vector< CRGB >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20effect_5ft_20_3e_1968',['Vector< effect_t >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20flac_5f_5fint32_20_3e_1969',['Vector< FLAC__int32 >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20float_20_3e_1970',['Vector< float >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20int_20_3e_1971',['Vector< int >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20int16_5ft_20_3e_1972',['Vector< int16_t >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20int24x_5ft_20_3e_1973',['Vector< int24x_t >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20int8_5ft_20_3e_1974',['Vector< int8_t >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20mbed_3a_3apwmout_20_2a_20_3e_1975',['Vector< mbed::PwmOut * >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20mp3d_5fsample_5ft_20_3e_1976',['Vector< mp3d_sample_t >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20pwmout_20_2a_20_3e_1977',['Vector< PwmOut * >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20pwmpin_20_3e_1978',['Vector< PWMPin >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20streamcontenttype_20_3e_1979',['Vector< StreamContentType >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20tsdpmtstreamtype_20_3e_1980',['Vector< TSDPMTStreamType >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20uint16_5ft_20_3e_1981',['Vector< uint16_t >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['vector_3c_20uint8_5ft_20_3e_1982',['Vector< uint8_t >',['../classaudio__tools_1_1_vector.html',1,'audio_tools']]],
+ ['videoaudiobufferedsync_1983',['VideoAudioBufferedSync',['../classaudio__tools_1_1_video_audio_buffered_sync.html',1,'audio_tools']]],
+ ['videoaudiosync_1984',['VideoAudioSync',['../classaudio__tools_1_1_video_audio_sync.html',1,'audio_tools']]],
+ ['videooutput_1985',['VideoOutput',['../classaudio__tools_1_1_video_output.html',1,'audio_tools']]],
+ ['volumecontrol_1986',['VolumeControl',['../classaudio__tools_1_1_volume_control.html',1,'audio_tools']]],
+ ['volumeoutput_1987',['VolumeOutput',['../classaudio__tools_1_1_volume_output.html',1,'audio_tools']]],
+ ['volumestream_1988',['VolumeStream',['../classaudio__tools_1_1_volume_stream.html',1,'audio_tools']]],
+ ['volumestreamconfig_1989',['VolumeStreamConfig',['../structaudio__tools_1_1_volume_stream_config.html',1,'audio_tools']]],
+ ['vorbisdecoder_1990',['VorbisDecoder',['../classaudio__tools_1_1_vorbis_decoder.html',1,'audio_tools']]],
+ ['vs1053config_1991',['VS1053Config',['../classaudio__tools_1_1_v_s1053_config.html',1,'audio_tools']]],
+ ['vs1053stream_1992',['VS1053Stream',['../classaudio__tools_1_1_v_s1053_stream.html',1,'audio_tools']]]
];
diff --git a/search/classes_16.js b/search/classes_16.js
index 4ebbd4e98a..cfb7d05060 100644
--- a/search/classes_16.js
+++ b/search/classes_16.js
@@ -1,16 +1,16 @@
var searchData=
[
- ['wavaudioinfo_1991',['WAVAudioInfo',['../structaudio__tools_1_1_w_a_v_audio_info.html',1,'audio_tools']]],
- ['wavdecoder_1992',['WAVDecoder',['../classaudio__tools_1_1_w_a_v_decoder.html',1,'audio_tools']]],
- ['wavencoder_1993',['WAVEncoder',['../classaudio__tools_1_1_w_a_v_encoder.html',1,'audio_tools']]],
- ['wavformatx_1994',['WAVFormatX',['../structaudio__tools_1_1_w_a_v_format_x.html',1,'audio_tools']]],
- ['wavheader_1995',['WAVHeader',['../classaudio__tools_1_1_w_a_v_header.html',1,'audio_tools']]],
- ['wavimaaudioinfo_1996',['WavIMAAudioInfo',['../structaudio__tools_1_1_wav_i_m_a_audio_info.html',1,'audio_tools']]],
- ['wavimadecoder_1997',['WavIMADecoder',['../classaudio__tools_1_1_wav_i_m_a_decoder.html',1,'audio_tools']]],
- ['wavimaheader_1998',['WavIMAHeader',['../classaudio__tools_1_1_wav_i_m_a_header.html',1,'audio_tools']]],
- ['welch_1999',['Welch',['../classaudio__tools_1_1_welch.html',1,'audio_tools']]],
- ['whitenoisegenerator_2000',['WhiteNoiseGenerator',['../classaudio__tools_1_1_white_noise_generator.html',1,'audio_tools']]],
- ['windowfunction_2001',['WindowFunction',['../classaudio__tools_1_1_window_function.html',1,'audio_tools']]],
- ['wm8960config_2002',['WM8960Config',['../classaudio__tools_1_1_w_m8960_config.html',1,'audio_tools']]],
- ['wm8960stream_2003',['WM8960Stream',['../classaudio__tools_1_1_w_m8960_stream.html',1,'audio_tools']]]
+ ['wavaudioinfo_1993',['WAVAudioInfo',['../structaudio__tools_1_1_w_a_v_audio_info.html',1,'audio_tools']]],
+ ['wavdecoder_1994',['WAVDecoder',['../classaudio__tools_1_1_w_a_v_decoder.html',1,'audio_tools']]],
+ ['wavencoder_1995',['WAVEncoder',['../classaudio__tools_1_1_w_a_v_encoder.html',1,'audio_tools']]],
+ ['wavformatx_1996',['WAVFormatX',['../structaudio__tools_1_1_w_a_v_format_x.html',1,'audio_tools']]],
+ ['wavheader_1997',['WAVHeader',['../classaudio__tools_1_1_w_a_v_header.html',1,'audio_tools']]],
+ ['wavimaaudioinfo_1998',['WavIMAAudioInfo',['../structaudio__tools_1_1_wav_i_m_a_audio_info.html',1,'audio_tools']]],
+ ['wavimadecoder_1999',['WavIMADecoder',['../classaudio__tools_1_1_wav_i_m_a_decoder.html',1,'audio_tools']]],
+ ['wavimaheader_2000',['WavIMAHeader',['../classaudio__tools_1_1_wav_i_m_a_header.html',1,'audio_tools']]],
+ ['welch_2001',['Welch',['../classaudio__tools_1_1_welch.html',1,'audio_tools']]],
+ ['whitenoisegenerator_2002',['WhiteNoiseGenerator',['../classaudio__tools_1_1_white_noise_generator.html',1,'audio_tools']]],
+ ['windowfunction_2003',['WindowFunction',['../classaudio__tools_1_1_window_function.html',1,'audio_tools']]],
+ ['wm8960config_2004',['WM8960Config',['../classaudio__tools_1_1_w_m8960_config.html',1,'audio_tools']]],
+ ['wm8960stream_2005',['WM8960Stream',['../classaudio__tools_1_1_w_m8960_stream.html',1,'audio_tools']]]
];
diff --git a/search/classes_2.js b/search/classes_2.js
index bc65e5d5bc..3de831a971 100644
--- a/search/classes_2.js
+++ b/search/classes_2.js
@@ -1,38 +1,38 @@
var searchData=
[
- ['cachedvolumecontrol_1528',['CachedVolumeControl',['../classaudio__tools_1_1_cached_volume_control.html',1,'audio_tools']]],
- ['callbackstream_1529',['CallbackStream',['../classaudio__tools_1_1_callback_stream.html',1,'audio_tools']]],
- ['callbackvolumecontrol_1530',['CallbackVolumeControl',['../classaudio__tools_1_1_callback_volume_control.html',1,'audio_tools']]],
- ['catstream_1531',['CatStream',['../classaudio__tools_1_1_cat_stream.html',1,'audio_tools']]],
- ['channelconverter_1532',['ChannelConverter',['../classaudio__tools_1_1_channel_converter.html',1,'audio_tools']]],
- ['channelenhancer_1533',['ChannelEnhancer',['../classaudio__tools_1_1_channel_enhancer.html',1,'audio_tools']]],
- ['channelformatconverterstream_1534',['ChannelFormatConverterStream',['../classaudio__tools_1_1_channel_format_converter_stream.html',1,'audio_tools']]],
- ['channelformatconverterstreamt_1535',['ChannelFormatConverterStreamT',['../classaudio__tools_1_1_channel_format_converter_stream_t.html',1,'audio_tools']]],
- ['channelreducer_1536',['ChannelReducer',['../classaudio__tools_1_1_channel_reducer.html',1,'audio_tools']]],
- ['channelreducert_1537',['ChannelReducerT',['../classaudio__tools_1_1_channel_reducer_t.html',1,'audio_tools']]],
- ['channelselectionoutputdef_1538',['ChannelSelectionOutputDef',['../structaudio__tools_1_1_channel_split_output_1_1_channel_selection_output_def.html',1,'audio_tools::ChannelSplitOutput']]],
- ['channelsplitoutput_1539',['ChannelSplitOutput',['../classaudio__tools_1_1_channel_split_output.html',1,'audio_tools']]],
- ['chartt_1540',['ChartT',['../classaudio__tools_1_1_chart_t.html',1,'audio_tools']]],
- ['client_1541',['Client',['../classaudio__tools_1_1_client.html',1,'audio_tools']]],
- ['codec2decoder_1542',['Codec2Decoder',['../classaudio__tools_1_1_codec2_decoder.html',1,'audio_tools']]],
- ['codec2encoder_1543',['Codec2Encoder',['../classaudio__tools_1_1_codec2_encoder.html',1,'audio_tools']]],
- ['codecnop_1544',['CodecNOP',['../classaudio__tools_1_1_codec_n_o_p.html',1,'audio_tools']]],
- ['commonheader_1545',['CommonHeader',['../structaudio__tools_1_1_common_header.html',1,'audio_tools']]],
- ['configequilizer3bands_1546',['ConfigEquilizer3Bands',['../structaudio__tools_1_1_config_equilizer3_bands.html',1,'audio_tools']]],
- ['containermp4_1547',['ContainerMP4',['../classaudio__tools_1_1_container_m_p4.html',1,'audio_tools']]],
- ['containertarget_1548',['ContainerTarget',['../classaudio__tools_1_1_container_target.html',1,'audio_tools']]],
- ['containertargetprint_1549',['ContainerTargetPrint',['../classaudio__tools_1_1_container_target_print.html',1,'audio_tools']]],
- ['converter1channel_1550',['Converter1Channel',['../classaudio__tools_1_1_converter1_channel.html',1,'audio_tools']]],
- ['converterautocenter_1551',['ConverterAutoCenter',['../classaudio__tools_1_1_converter_auto_center.html',1,'audio_tools']]],
- ['converterautocentert_1552',['ConverterAutoCenterT',['../classaudio__tools_1_1_converter_auto_center_t.html',1,'audio_tools']]],
- ['converterfillleftandright_1553',['ConverterFillLeftAndRight',['../classaudio__tools_1_1_converter_fill_left_and_right.html',1,'audio_tools']]],
- ['converternchannels_1554',['ConverterNChannels',['../classaudio__tools_1_1_converter_n_channels.html',1,'audio_tools']]],
- ['converternchannels_3c_20t_2c_20tf_20_3e_1555',['ConverterNChannels< T, TF >',['../classaudio__tools_1_1_converter_n_channels.html',1,'audio_tools']]],
- ['converterscaler_1556',['ConverterScaler',['../classaudio__tools_1_1_converter_scaler.html',1,'audio_tools']]],
- ['converterstream_1557',['ConverterStream',['../classaudio__tools_1_1_converter_stream.html',1,'audio_tools']]],
- ['converterswitchleftandright_1558',['ConverterSwitchLeftAndRight',['../classaudio__tools_1_1_converter_switch_left_and_right.html',1,'audio_tools']]],
- ['convertertointernaldacformat_1559',['ConverterToInternalDACFormat',['../classaudio__tools_1_1_converter_to_internal_d_a_c_format.html',1,'audio_tools']]],
- ['copydecoder_1560',['CopyDecoder',['../classaudio__tools_1_1_copy_decoder.html',1,'audio_tools']]],
- ['copyencoder_1561',['CopyEncoder',['../classaudio__tools_1_1_copy_encoder.html',1,'audio_tools']]],
- ['csvoutput_1562',['CsvOutput',['../classaudio__tools_1_1_csv_output.html',1,'audio_tools']]]
+ ['cachedvolumecontrol_1529',['CachedVolumeControl',['../classaudio__tools_1_1_cached_volume_control.html',1,'audio_tools']]],
+ ['callbackstream_1530',['CallbackStream',['../classaudio__tools_1_1_callback_stream.html',1,'audio_tools']]],
+ ['callbackvolumecontrol_1531',['CallbackVolumeControl',['../classaudio__tools_1_1_callback_volume_control.html',1,'audio_tools']]],
+ ['catstream_1532',['CatStream',['../classaudio__tools_1_1_cat_stream.html',1,'audio_tools']]],
+ ['channelconverter_1533',['ChannelConverter',['../classaudio__tools_1_1_channel_converter.html',1,'audio_tools']]],
+ ['channelenhancer_1534',['ChannelEnhancer',['../classaudio__tools_1_1_channel_enhancer.html',1,'audio_tools']]],
+ ['channelformatconverterstream_1535',['ChannelFormatConverterStream',['../classaudio__tools_1_1_channel_format_converter_stream.html',1,'audio_tools']]],
+ ['channelformatconverterstreamt_1536',['ChannelFormatConverterStreamT',['../classaudio__tools_1_1_channel_format_converter_stream_t.html',1,'audio_tools']]],
+ ['channelreducer_1537',['ChannelReducer',['../classaudio__tools_1_1_channel_reducer.html',1,'audio_tools']]],
+ ['channelreducert_1538',['ChannelReducerT',['../classaudio__tools_1_1_channel_reducer_t.html',1,'audio_tools']]],
+ ['channelselectionoutputdef_1539',['ChannelSelectionOutputDef',['../structaudio__tools_1_1_channel_split_output_1_1_channel_selection_output_def.html',1,'audio_tools::ChannelSplitOutput']]],
+ ['channelsplitoutput_1540',['ChannelSplitOutput',['../classaudio__tools_1_1_channel_split_output.html',1,'audio_tools']]],
+ ['chartt_1541',['ChartT',['../classaudio__tools_1_1_chart_t.html',1,'audio_tools']]],
+ ['client_1542',['Client',['../classaudio__tools_1_1_client.html',1,'audio_tools']]],
+ ['codec2decoder_1543',['Codec2Decoder',['../classaudio__tools_1_1_codec2_decoder.html',1,'audio_tools']]],
+ ['codec2encoder_1544',['Codec2Encoder',['../classaudio__tools_1_1_codec2_encoder.html',1,'audio_tools']]],
+ ['codecnop_1545',['CodecNOP',['../classaudio__tools_1_1_codec_n_o_p.html',1,'audio_tools']]],
+ ['commonheader_1546',['CommonHeader',['../structaudio__tools_1_1_common_header.html',1,'audio_tools']]],
+ ['configequilizer3bands_1547',['ConfigEquilizer3Bands',['../structaudio__tools_1_1_config_equilizer3_bands.html',1,'audio_tools']]],
+ ['containermp4_1548',['ContainerMP4',['../classaudio__tools_1_1_container_m_p4.html',1,'audio_tools']]],
+ ['containertarget_1549',['ContainerTarget',['../classaudio__tools_1_1_container_target.html',1,'audio_tools']]],
+ ['containertargetprint_1550',['ContainerTargetPrint',['../classaudio__tools_1_1_container_target_print.html',1,'audio_tools']]],
+ ['converter1channel_1551',['Converter1Channel',['../classaudio__tools_1_1_converter1_channel.html',1,'audio_tools']]],
+ ['converterautocenter_1552',['ConverterAutoCenter',['../classaudio__tools_1_1_converter_auto_center.html',1,'audio_tools']]],
+ ['converterautocentert_1553',['ConverterAutoCenterT',['../classaudio__tools_1_1_converter_auto_center_t.html',1,'audio_tools']]],
+ ['converterfillleftandright_1554',['ConverterFillLeftAndRight',['../classaudio__tools_1_1_converter_fill_left_and_right.html',1,'audio_tools']]],
+ ['converternchannels_1555',['ConverterNChannels',['../classaudio__tools_1_1_converter_n_channels.html',1,'audio_tools']]],
+ ['converternchannels_3c_20t_2c_20tf_20_3e_1556',['ConverterNChannels< T, TF >',['../classaudio__tools_1_1_converter_n_channels.html',1,'audio_tools']]],
+ ['converterscaler_1557',['ConverterScaler',['../classaudio__tools_1_1_converter_scaler.html',1,'audio_tools']]],
+ ['converterstream_1558',['ConverterStream',['../classaudio__tools_1_1_converter_stream.html',1,'audio_tools']]],
+ ['converterswitchleftandright_1559',['ConverterSwitchLeftAndRight',['../classaudio__tools_1_1_converter_switch_left_and_right.html',1,'audio_tools']]],
+ ['convertertointernaldacformat_1560',['ConverterToInternalDACFormat',['../classaudio__tools_1_1_converter_to_internal_d_a_c_format.html',1,'audio_tools']]],
+ ['copydecoder_1561',['CopyDecoder',['../classaudio__tools_1_1_copy_decoder.html',1,'audio_tools']]],
+ ['copyencoder_1562',['CopyEncoder',['../classaudio__tools_1_1_copy_encoder.html',1,'audio_tools']]],
+ ['csvoutput_1563',['CsvOutput',['../classaudio__tools_1_1_csv_output.html',1,'audio_tools']]]
];
diff --git a/search/classes_3.js b/search/classes_3.js
index 6a5816d1f0..fbc533d6dc 100644
--- a/search/classes_3.js
+++ b/search/classes_3.js
@@ -1,27 +1,27 @@
var searchData=
[
- ['datanode_1563',['DataNode',['../structaudio__tools_1_1_dynamic_memory_stream_1_1_data_node.html',1,'audio_tools::DynamicMemoryStream']]],
- ['debouncer_1564',['Debouncer',['../classaudio__tools_1_1_debouncer.html',1,'audio_tools']]],
- ['decimate_1565',['Decimate',['../classaudio__tools_1_1_decimate.html',1,'audio_tools']]],
- ['decimatet_1566',['DecimateT',['../classaudio__tools_1_1_decimate_t.html',1,'audio_tools']]],
- ['decoderbase64_1567',['DecoderBase64',['../classaudio__tools_1_1_decoder_base64.html',1,'audio_tools']]],
- ['decoderbasic_1568',['DecoderBasic',['../classaudio__tools_1_1_decoder_basic.html',1,'audio_tools']]],
- ['decoderfloat_1569',['DecoderFloat',['../classaudio__tools_1_1_decoder_float.html',1,'audio_tools']]],
- ['decoderhelix_1570',['DecoderHelix',['../classaudio__tools_1_1_decoder_helix.html',1,'audio_tools']]],
- ['decoderl16_1571',['DecoderL16',['../classaudio__tools_1_1_decoder_l16.html',1,'audio_tools']]],
- ['decoderl8_1572',['DecoderL8',['../classaudio__tools_1_1_decoder_l8.html',1,'audio_tools']]],
- ['defaultsynthesizerchannel_1573',['DefaultSynthesizerChannel',['../classaudio__tools_1_1_default_synthesizer_channel.html',1,'audio_tools']]],
- ['delay_1574',['Delay',['../classaudio__tools_1_1_delay.html',1,'audio_tools']]],
- ['delayeffectbase_1575',['DelayEffectBase',['../classaudio__tools_1_1_delay_effect_base.html',1,'audio_tools']]],
- ['distortion_1576',['Distortion',['../classaudio__tools_1_1_distortion.html',1,'audio_tools']]],
- ['drivercommon_1577',['DriverCommon',['../structaudio__tools_1_1_i2_s_driver_e_s_p32_v1_1_1_driver_common.html',1,'audio_tools::I2SDriverESP32V1']]],
- ['driveri2s_1578',['DriverI2S',['../structaudio__tools_1_1_i2_s_driver_e_s_p32_v1_1_1_driver_i2_s.html',1,'audio_tools::I2SDriverESP32V1']]],
- ['driverpwmbase_1579',['DriverPWMBase',['../classaudio__tools_1_1_driver_p_w_m_base.html',1,'audio_tools']]],
- ['dsp_1580',['dsp',['../classdsp.html',1,'']]],
- ['dsp_5fmemory_5fmanager_1581',['dsp_memory_manager',['../classdsp__memory__manager.html',1,'']]],
- ['dynamicmemorystream_1582',['DynamicMemoryStream',['../classaudio__tools_1_1_dynamic_memory_stream.html',1,'audio_tools']]],
- ['dynarray_1583',['DynArray',['../classffft_1_1_dyn_array.html',1,'ffft']]],
- ['dynarray_3c_20datatype_20_3e_1584',['DynArray< DataType >',['../classffft_1_1_dyn_array.html',1,'ffft']]],
- ['dynarray_3c_20ffft_3a_3aoscsincos_20_3e_1585',['DynArray< ffft::OscSinCos >',['../classffft_1_1_dyn_array.html',1,'ffft']]],
- ['dynarray_3c_20long_20_3e_1586',['DynArray< long >',['../classffft_1_1_dyn_array.html',1,'ffft']]]
+ ['datanode_1564',['DataNode',['../structaudio__tools_1_1_dynamic_memory_stream_1_1_data_node.html',1,'audio_tools::DynamicMemoryStream']]],
+ ['debouncer_1565',['Debouncer',['../classaudio__tools_1_1_debouncer.html',1,'audio_tools']]],
+ ['decimate_1566',['Decimate',['../classaudio__tools_1_1_decimate.html',1,'audio_tools']]],
+ ['decimatet_1567',['DecimateT',['../classaudio__tools_1_1_decimate_t.html',1,'audio_tools']]],
+ ['decoderbase64_1568',['DecoderBase64',['../classaudio__tools_1_1_decoder_base64.html',1,'audio_tools']]],
+ ['decoderbasic_1569',['DecoderBasic',['../classaudio__tools_1_1_decoder_basic.html',1,'audio_tools']]],
+ ['decoderfloat_1570',['DecoderFloat',['../classaudio__tools_1_1_decoder_float.html',1,'audio_tools']]],
+ ['decoderhelix_1571',['DecoderHelix',['../classaudio__tools_1_1_decoder_helix.html',1,'audio_tools']]],
+ ['decoderl16_1572',['DecoderL16',['../classaudio__tools_1_1_decoder_l16.html',1,'audio_tools']]],
+ ['decoderl8_1573',['DecoderL8',['../classaudio__tools_1_1_decoder_l8.html',1,'audio_tools']]],
+ ['defaultsynthesizerchannel_1574',['DefaultSynthesizerChannel',['../classaudio__tools_1_1_default_synthesizer_channel.html',1,'audio_tools']]],
+ ['delay_1575',['Delay',['../classaudio__tools_1_1_delay.html',1,'audio_tools']]],
+ ['delayeffectbase_1576',['DelayEffectBase',['../classaudio__tools_1_1_delay_effect_base.html',1,'audio_tools']]],
+ ['distortion_1577',['Distortion',['../classaudio__tools_1_1_distortion.html',1,'audio_tools']]],
+ ['drivercommon_1578',['DriverCommon',['../structaudio__tools_1_1_i2_s_driver_e_s_p32_v1_1_1_driver_common.html',1,'audio_tools::I2SDriverESP32V1']]],
+ ['driveri2s_1579',['DriverI2S',['../structaudio__tools_1_1_i2_s_driver_e_s_p32_v1_1_1_driver_i2_s.html',1,'audio_tools::I2SDriverESP32V1']]],
+ ['driverpwmbase_1580',['DriverPWMBase',['../classaudio__tools_1_1_driver_p_w_m_base.html',1,'audio_tools']]],
+ ['dsp_1581',['dsp',['../classdsp.html',1,'']]],
+ ['dsp_5fmemory_5fmanager_1582',['dsp_memory_manager',['../classdsp__memory__manager.html',1,'']]],
+ ['dynamicmemorystream_1583',['DynamicMemoryStream',['../classaudio__tools_1_1_dynamic_memory_stream.html',1,'audio_tools']]],
+ ['dynarray_1584',['DynArray',['../classffft_1_1_dyn_array.html',1,'ffft']]],
+ ['dynarray_3c_20datatype_20_3e_1585',['DynArray< DataType >',['../classffft_1_1_dyn_array.html',1,'ffft']]],
+ ['dynarray_3c_20ffft_3a_3aoscsincos_20_3e_1586',['DynArray< ffft::OscSinCos >',['../classffft_1_1_dyn_array.html',1,'ffft']]],
+ ['dynarray_3c_20long_20_3e_1587',['DynArray< long >',['../classffft_1_1_dyn_array.html',1,'ffft']]]
];
diff --git a/search/classes_4.js b/search/classes_4.js
index 913d7f1ad1..492e2ccc8f 100644
--- a/search/classes_4.js
+++ b/search/classes_4.js
@@ -1,18 +1,18 @@
var searchData=
[
- ['effectsuitebase_1587',['EffectSuiteBase',['../classaudio__tools_1_1_effect_suite_base.html',1,'audio_tools']]],
- ['encodedaudiooutput_1588',['EncodedAudioOutput',['../classaudio__tools_1_1_encoded_audio_output.html',1,'audio_tools']]],
- ['encodedaudiostream_1589',['EncodedAudioStream',['../classaudio__tools_1_1_encoded_audio_stream.html',1,'audio_tools']]],
- ['encoderbase64_1590',['EncoderBase64',['../classaudio__tools_1_1_encoder_base64.html',1,'audio_tools']]],
- ['encoderbasic_1591',['EncoderBasic',['../classaudio__tools_1_1_encoder_basic.html',1,'audio_tools']]],
- ['encoderfloat_1592',['EncoderFloat',['../classaudio__tools_1_1_encoder_float.html',1,'audio_tools']]],
- ['encoderl16_1593',['EncoderL16',['../classaudio__tools_1_1_encoder_l16.html',1,'audio_tools']]],
- ['encoderl8_1594',['EncoderL8',['../classaudio__tools_1_1_encoder_l8.html',1,'audio_tools']]],
- ['envelopefilter_1595',['EnvelopeFilter',['../classaudio__tools_1_1_envelope_filter.html',1,'audio_tools']]],
- ['eqstate_1596',['EQSTATE',['../structaudio__tools_1_1_equilizer3_bands_1_1_e_q_s_t_a_t_e.html',1,'audio_tools::Equilizer3Bands']]],
- ['equilizer3bands_1597',['Equilizer3Bands',['../classaudio__tools_1_1_equilizer3_bands.html',1,'audio_tools']]],
- ['esp3288audiooutput_1598',['ESP3288AudioOutput',['../classaudio__tools_1_1_e_s_p3288_audio_output.html',1,'audio_tools']]],
- ['espnowstream_1599',['ESPNowStream',['../classaudio__tools_1_1_e_s_p_now_stream.html',1,'audio_tools']]],
- ['espnowstreamconfig_1600',['ESPNowStreamConfig',['../structaudio__tools_1_1_e_s_p_now_stream_config.html',1,'audio_tools']]],
- ['exponentialvolumecontrol_1601',['ExponentialVolumeControl',['../classaudio__tools_1_1_exponential_volume_control.html',1,'audio_tools']]]
+ ['effectsuitebase_1588',['EffectSuiteBase',['../classaudio__tools_1_1_effect_suite_base.html',1,'audio_tools']]],
+ ['encodedaudiooutput_1589',['EncodedAudioOutput',['../classaudio__tools_1_1_encoded_audio_output.html',1,'audio_tools']]],
+ ['encodedaudiostream_1590',['EncodedAudioStream',['../classaudio__tools_1_1_encoded_audio_stream.html',1,'audio_tools']]],
+ ['encoderbase64_1591',['EncoderBase64',['../classaudio__tools_1_1_encoder_base64.html',1,'audio_tools']]],
+ ['encoderbasic_1592',['EncoderBasic',['../classaudio__tools_1_1_encoder_basic.html',1,'audio_tools']]],
+ ['encoderfloat_1593',['EncoderFloat',['../classaudio__tools_1_1_encoder_float.html',1,'audio_tools']]],
+ ['encoderl16_1594',['EncoderL16',['../classaudio__tools_1_1_encoder_l16.html',1,'audio_tools']]],
+ ['encoderl8_1595',['EncoderL8',['../classaudio__tools_1_1_encoder_l8.html',1,'audio_tools']]],
+ ['envelopefilter_1596',['EnvelopeFilter',['../classaudio__tools_1_1_envelope_filter.html',1,'audio_tools']]],
+ ['eqstate_1597',['EQSTATE',['../structaudio__tools_1_1_equilizer3_bands_1_1_e_q_s_t_a_t_e.html',1,'audio_tools::Equilizer3Bands']]],
+ ['equilizer3bands_1598',['Equilizer3Bands',['../classaudio__tools_1_1_equilizer3_bands.html',1,'audio_tools']]],
+ ['esp3288audiooutput_1599',['ESP3288AudioOutput',['../classaudio__tools_1_1_e_s_p3288_audio_output.html',1,'audio_tools']]],
+ ['espnowstream_1600',['ESPNowStream',['../classaudio__tools_1_1_e_s_p_now_stream.html',1,'audio_tools']]],
+ ['espnowstreamconfig_1601',['ESPNowStreamConfig',['../structaudio__tools_1_1_e_s_p_now_stream_config.html',1,'audio_tools']]],
+ ['exponentialvolumecontrol_1602',['ExponentialVolumeControl',['../classaudio__tools_1_1_exponential_volume_control.html',1,'audio_tools']]]
];
diff --git a/search/classes_5.js b/search/classes_5.js
index 2eb0bbe9c2..962ae23535 100644
--- a/search/classes_5.js
+++ b/search/classes_5.js
@@ -1,43 +1,43 @@
var searchData=
[
- ['fade_1602',['Fade',['../classaudio__tools_1_1_fade.html',1,'audio_tools']]],
- ['fadeconverter_1603',['FadeConverter',['../classaudio__tools_1_1_fade_converter.html',1,'audio_tools']]],
- ['fadestream_1604',['FadeStream',['../classaudio__tools_1_1_fade_stream.html',1,'audio_tools']]],
- ['fastsinegenerator_1605',['FastSineGenerator',['../classaudio__tools_1_1_fast_sine_generator.html',1,'audio_tools']]],
- ['fauststream_1606',['FaustStream',['../classaudio__tools_1_1_faust_stream.html',1,'audio_tools']]],
- ['fftdisplay_1607',['FFTDisplay',['../classaudio__tools_1_1_f_f_t_display.html',1,'audio_tools']]],
- ['fftdriver_1608',['FFTDriver',['../classaudio__tools_1_1_f_f_t_driver.html',1,'audio_tools']]],
- ['fftdrivercmsisfft_1609',['FFTDriverCmsisFFT',['../classaudio__tools_1_1_f_f_t_driver_cmsis_f_f_t.html',1,'audio_tools']]],
- ['fftdriveresp32fft_1610',['FFTDriverESP32FFT',['../classaudio__tools_1_1_f_f_t_driver_e_s_p32_f_f_t.html',1,'audio_tools']]],
- ['fftdriverespressiffft_1611',['FFTDriverEspressifFFT',['../classaudio__tools_1_1_f_f_t_driver_espressif_f_f_t.html',1,'audio_tools']]],
- ['fftdriverkissfft_1612',['FFTDriverKissFFT',['../classaudio__tools_1_1_f_f_t_driver_kiss_f_f_t.html',1,'audio_tools']]],
- ['fftdriverrealfft_1613',['FFTDriverRealFFT',['../classaudio__tools_1_1_f_f_t_driver_real_f_f_t.html',1,'audio_tools']]],
- ['fftreal_1614',['FFTReal',['../classffft_1_1_f_f_t_real.html',1,'ffft']]],
- ['fftreal_3c_20float_20_3e_1615',['FFTReal< float >',['../classffft_1_1_f_f_t_real.html',1,'ffft']]],
- ['fftrealfixlen_1616',['FFTRealFixLen',['../classffft_1_1_f_f_t_real_fix_len.html',1,'ffft']]],
- ['fftrealfixlenparam_1617',['FFTRealFixLenParam',['../classffft_1_1_f_f_t_real_fix_len_param.html',1,'ffft']]],
- ['fftrealpassdirect_1618',['FFTRealPassDirect',['../classffft_1_1_f_f_t_real_pass_direct.html',1,'ffft']]],
- ['fftrealpassinverse_1619',['FFTRealPassInverse',['../classffft_1_1_f_f_t_real_pass_inverse.html',1,'ffft']]],
- ['fftrealselect_1620',['FFTRealSelect',['../classffft_1_1_f_f_t_real_select.html',1,'ffft']]],
- ['fftrealusetrigo_1621',['FFTRealUseTrigo',['../classffft_1_1_f_f_t_real_use_trigo.html',1,'ffft']]],
- ['file_1622',['File',['../classaudio__tools_1_1_file.html',1,'audio_tools']]],
- ['fileloop_1623',['FileLoop',['../classaudio__tools_1_1_file_loop.html',1,'audio_tools']]],
- ['fileloopt_1624',['FileLoopT',['../classaudio__tools_1_1_file_loop_t.html',1,'audio_tools']]],
- ['fileloopt_3c_20file_20_3e_1625',['FileLoopT< File >',['../classaudio__tools_1_1_file_loop_t.html',1,'audio_tools']]],
- ['fileoutput_1626',['FileOutput',['../classaudio__tools_1_1_file_output.html',1,'audio_tools']]],
- ['filter_1627',['Filter',['../classaudio__tools_1_1_filter.html',1,'audio_tools']]],
- ['filter_3c_20ft_20_3e_1628',['Filter< FT >',['../classaudio__tools_1_1_filter.html',1,'audio_tools']]],
- ['filterchain_1629',['FilterChain',['../classaudio__tools_1_1_filter_chain.html',1,'audio_tools']]],
- ['filtereddelay_1630',['FilteredDelay',['../classaudio__tools_1_1_filtered_delay.html',1,'audio_tools']]],
- ['filteredstream_1631',['FilteredStream',['../classaudio__tools_1_1_filtered_stream.html',1,'audio_tools']]],
- ['filtereffectbase_1632',['FilterEffectBase',['../classaudio__tools_1_1_filter_effect_base.html',1,'audio_tools']]],
- ['fir_1633',['FIR',['../classaudio__tools_1_1_f_i_r.html',1,'audio_tools']]],
- ['flacdecoder_1634',['FLACDecoder',['../classaudio__tools_1_1_f_l_a_c_decoder.html',1,'audio_tools']]],
- ['flacencoder_1635',['FLACEncoder',['../classaudio__tools_1_1_f_l_a_c_encoder.html',1,'audio_tools']]],
- ['flattop_1636',['FlatTop',['../classaudio__tools_1_1_flat_top.html',1,'audio_tools']]],
- ['float16_1637',['float16',['../classaudio__tools_1_1float16.html',1,'audio_tools']]],
- ['float32_1638',['float32',['../classaudio__tools_1_1float32.html',1,'audio_tools']]],
- ['formatconverterstream_1639',['FormatConverterStream',['../classaudio__tools_1_1_format_converter_stream.html',1,'audio_tools']]],
- ['fs_1640',['FS',['../classaudio__tools_1_1_f_s.html',1,'audio_tools']]],
- ['fuzz_1641',['Fuzz',['../classaudio__tools_1_1_fuzz.html',1,'audio_tools']]]
+ ['fade_1603',['Fade',['../classaudio__tools_1_1_fade.html',1,'audio_tools']]],
+ ['fadeconverter_1604',['FadeConverter',['../classaudio__tools_1_1_fade_converter.html',1,'audio_tools']]],
+ ['fadestream_1605',['FadeStream',['../classaudio__tools_1_1_fade_stream.html',1,'audio_tools']]],
+ ['fastsinegenerator_1606',['FastSineGenerator',['../classaudio__tools_1_1_fast_sine_generator.html',1,'audio_tools']]],
+ ['fauststream_1607',['FaustStream',['../classaudio__tools_1_1_faust_stream.html',1,'audio_tools']]],
+ ['fftdisplay_1608',['FFTDisplay',['../classaudio__tools_1_1_f_f_t_display.html',1,'audio_tools']]],
+ ['fftdriver_1609',['FFTDriver',['../classaudio__tools_1_1_f_f_t_driver.html',1,'audio_tools']]],
+ ['fftdrivercmsisfft_1610',['FFTDriverCmsisFFT',['../classaudio__tools_1_1_f_f_t_driver_cmsis_f_f_t.html',1,'audio_tools']]],
+ ['fftdriveresp32fft_1611',['FFTDriverESP32FFT',['../classaudio__tools_1_1_f_f_t_driver_e_s_p32_f_f_t.html',1,'audio_tools']]],
+ ['fftdriverespressiffft_1612',['FFTDriverEspressifFFT',['../classaudio__tools_1_1_f_f_t_driver_espressif_f_f_t.html',1,'audio_tools']]],
+ ['fftdriverkissfft_1613',['FFTDriverKissFFT',['../classaudio__tools_1_1_f_f_t_driver_kiss_f_f_t.html',1,'audio_tools']]],
+ ['fftdriverrealfft_1614',['FFTDriverRealFFT',['../classaudio__tools_1_1_f_f_t_driver_real_f_f_t.html',1,'audio_tools']]],
+ ['fftreal_1615',['FFTReal',['../classffft_1_1_f_f_t_real.html',1,'ffft']]],
+ ['fftreal_3c_20float_20_3e_1616',['FFTReal< float >',['../classffft_1_1_f_f_t_real.html',1,'ffft']]],
+ ['fftrealfixlen_1617',['FFTRealFixLen',['../classffft_1_1_f_f_t_real_fix_len.html',1,'ffft']]],
+ ['fftrealfixlenparam_1618',['FFTRealFixLenParam',['../classffft_1_1_f_f_t_real_fix_len_param.html',1,'ffft']]],
+ ['fftrealpassdirect_1619',['FFTRealPassDirect',['../classffft_1_1_f_f_t_real_pass_direct.html',1,'ffft']]],
+ ['fftrealpassinverse_1620',['FFTRealPassInverse',['../classffft_1_1_f_f_t_real_pass_inverse.html',1,'ffft']]],
+ ['fftrealselect_1621',['FFTRealSelect',['../classffft_1_1_f_f_t_real_select.html',1,'ffft']]],
+ ['fftrealusetrigo_1622',['FFTRealUseTrigo',['../classffft_1_1_f_f_t_real_use_trigo.html',1,'ffft']]],
+ ['file_1623',['File',['../classaudio__tools_1_1_file.html',1,'audio_tools']]],
+ ['fileloop_1624',['FileLoop',['../classaudio__tools_1_1_file_loop.html',1,'audio_tools']]],
+ ['fileloopt_1625',['FileLoopT',['../classaudio__tools_1_1_file_loop_t.html',1,'audio_tools']]],
+ ['fileloopt_3c_20file_20_3e_1626',['FileLoopT< File >',['../classaudio__tools_1_1_file_loop_t.html',1,'audio_tools']]],
+ ['fileoutput_1627',['FileOutput',['../classaudio__tools_1_1_file_output.html',1,'audio_tools']]],
+ ['filter_1628',['Filter',['../classaudio__tools_1_1_filter.html',1,'audio_tools']]],
+ ['filter_3c_20ft_20_3e_1629',['Filter< FT >',['../classaudio__tools_1_1_filter.html',1,'audio_tools']]],
+ ['filterchain_1630',['FilterChain',['../classaudio__tools_1_1_filter_chain.html',1,'audio_tools']]],
+ ['filtereddelay_1631',['FilteredDelay',['../classaudio__tools_1_1_filtered_delay.html',1,'audio_tools']]],
+ ['filteredstream_1632',['FilteredStream',['../classaudio__tools_1_1_filtered_stream.html',1,'audio_tools']]],
+ ['filtereffectbase_1633',['FilterEffectBase',['../classaudio__tools_1_1_filter_effect_base.html',1,'audio_tools']]],
+ ['fir_1634',['FIR',['../classaudio__tools_1_1_f_i_r.html',1,'audio_tools']]],
+ ['flacdecoder_1635',['FLACDecoder',['../classaudio__tools_1_1_f_l_a_c_decoder.html',1,'audio_tools']]],
+ ['flacencoder_1636',['FLACEncoder',['../classaudio__tools_1_1_f_l_a_c_encoder.html',1,'audio_tools']]],
+ ['flattop_1637',['FlatTop',['../classaudio__tools_1_1_flat_top.html',1,'audio_tools']]],
+ ['float16_1638',['float16',['../classaudio__tools_1_1float16.html',1,'audio_tools']]],
+ ['float32_1639',['float32',['../classaudio__tools_1_1float32.html',1,'audio_tools']]],
+ ['formatconverterstream_1640',['FormatConverterStream',['../classaudio__tools_1_1_format_converter_stream.html',1,'audio_tools']]],
+ ['fs_1641',['FS',['../classaudio__tools_1_1_f_s.html',1,'audio_tools']]],
+ ['fuzz_1642',['Fuzz',['../classaudio__tools_1_1_fuzz.html',1,'audio_tools']]]
];
diff --git a/search/classes_6.js b/search/classes_6.js
index b00315594a..6b6c391976 100644
--- a/search/classes_6.js
+++ b/search/classes_6.js
@@ -1,27 +1,27 @@
var searchData=
[
- ['g711_5falawdecoder_1642',['G711_ALAWDecoder',['../classaudio__tools_1_1_g711___a_l_a_w_decoder.html',1,'audio_tools']]],
- ['g711_5falawencoder_1643',['G711_ALAWEncoder',['../classaudio__tools_1_1_g711___a_l_a_w_encoder.html',1,'audio_tools']]],
- ['g711_5fulawdecoder_1644',['G711_ULAWDecoder',['../classaudio__tools_1_1_g711___u_l_a_w_decoder.html',1,'audio_tools']]],
- ['g711_5fulawencoder_1645',['G711_ULAWEncoder',['../classaudio__tools_1_1_g711___u_l_a_w_encoder.html',1,'audio_tools']]],
- ['g711decoder_1646',['G711Decoder',['../classaudio__tools_1_1_g711_decoder.html',1,'audio_tools']]],
- ['g711encoder_1647',['G711Encoder',['../classaudio__tools_1_1_g711_encoder.html',1,'audio_tools']]],
- ['g721decoder_1648',['G721Decoder',['../classaudio__tools_1_1_g721_decoder.html',1,'audio_tools']]],
- ['g721encoder_1649',['G721Encoder',['../classaudio__tools_1_1_g721_encoder.html',1,'audio_tools']]],
- ['g722decoder_1650',['G722Decoder',['../classaudio__tools_1_1_g722_decoder.html',1,'audio_tools']]],
- ['g722encoder_1651',['G722Encoder',['../classaudio__tools_1_1_g722_encoder.html',1,'audio_tools']]],
- ['g723_5f24decoder_1652',['G723_24Decoder',['../classaudio__tools_1_1_g723__24_decoder.html',1,'audio_tools']]],
- ['g723_5f24encoder_1653',['G723_24Encoder',['../classaudio__tools_1_1_g723__24_encoder.html',1,'audio_tools']]],
- ['g723_5f40decoder_1654',['G723_40Decoder',['../classaudio__tools_1_1_g723__40_decoder.html',1,'audio_tools']]],
- ['g723_5f40encoder_1655',['G723_40Encoder',['../classaudio__tools_1_1_g723__40_encoder.html',1,'audio_tools']]],
- ['g7xxdecoder_1656',['G7xxDecoder',['../classaudio__tools_1_1_g7xx_decoder.html',1,'audio_tools']]],
- ['g7xxencoder_1657',['G7xxEncoder',['../classaudio__tools_1_1_g7xx_encoder.html',1,'audio_tools']]],
- ['generatedsoundstream_1658',['GeneratedSoundStream',['../classaudio__tools_1_1_generated_sound_stream.html',1,'audio_tools']]],
- ['generatedsoundstream_3c_20int16_5ft_20_3e_1659',['GeneratedSoundStream< int16_t >',['../classaudio__tools_1_1_generated_sound_stream.html',1,'audio_tools']]],
- ['generatorfixedvalue_1660',['GeneratorFixedValue',['../classaudio__tools_1_1_generator_fixed_value.html',1,'audio_tools']]],
- ['generatorfromarray_1661',['GeneratorFromArray',['../classaudio__tools_1_1_generator_from_array.html',1,'audio_tools']]],
- ['generatorfromstream_1662',['GeneratorFromStream',['../classaudio__tools_1_1_generator_from_stream.html',1,'audio_tools']]],
- ['generatormixer_1663',['GeneratorMixer',['../classaudio__tools_1_1_generator_mixer.html',1,'audio_tools']]],
- ['gsmdecoder_1664',['GSMDecoder',['../classaudio__tools_1_1_g_s_m_decoder.html',1,'audio_tools']]],
- ['gsmencoder_1665',['GSMEncoder',['../classaudio__tools_1_1_g_s_m_encoder.html',1,'audio_tools']]]
+ ['g711_5falawdecoder_1643',['G711_ALAWDecoder',['../classaudio__tools_1_1_g711___a_l_a_w_decoder.html',1,'audio_tools']]],
+ ['g711_5falawencoder_1644',['G711_ALAWEncoder',['../classaudio__tools_1_1_g711___a_l_a_w_encoder.html',1,'audio_tools']]],
+ ['g711_5fulawdecoder_1645',['G711_ULAWDecoder',['../classaudio__tools_1_1_g711___u_l_a_w_decoder.html',1,'audio_tools']]],
+ ['g711_5fulawencoder_1646',['G711_ULAWEncoder',['../classaudio__tools_1_1_g711___u_l_a_w_encoder.html',1,'audio_tools']]],
+ ['g711decoder_1647',['G711Decoder',['../classaudio__tools_1_1_g711_decoder.html',1,'audio_tools']]],
+ ['g711encoder_1648',['G711Encoder',['../classaudio__tools_1_1_g711_encoder.html',1,'audio_tools']]],
+ ['g721decoder_1649',['G721Decoder',['../classaudio__tools_1_1_g721_decoder.html',1,'audio_tools']]],
+ ['g721encoder_1650',['G721Encoder',['../classaudio__tools_1_1_g721_encoder.html',1,'audio_tools']]],
+ ['g722decoder_1651',['G722Decoder',['../classaudio__tools_1_1_g722_decoder.html',1,'audio_tools']]],
+ ['g722encoder_1652',['G722Encoder',['../classaudio__tools_1_1_g722_encoder.html',1,'audio_tools']]],
+ ['g723_5f24decoder_1653',['G723_24Decoder',['../classaudio__tools_1_1_g723__24_decoder.html',1,'audio_tools']]],
+ ['g723_5f24encoder_1654',['G723_24Encoder',['../classaudio__tools_1_1_g723__24_encoder.html',1,'audio_tools']]],
+ ['g723_5f40decoder_1655',['G723_40Decoder',['../classaudio__tools_1_1_g723__40_decoder.html',1,'audio_tools']]],
+ ['g723_5f40encoder_1656',['G723_40Encoder',['../classaudio__tools_1_1_g723__40_encoder.html',1,'audio_tools']]],
+ ['g7xxdecoder_1657',['G7xxDecoder',['../classaudio__tools_1_1_g7xx_decoder.html',1,'audio_tools']]],
+ ['g7xxencoder_1658',['G7xxEncoder',['../classaudio__tools_1_1_g7xx_encoder.html',1,'audio_tools']]],
+ ['generatedsoundstream_1659',['GeneratedSoundStream',['../classaudio__tools_1_1_generated_sound_stream.html',1,'audio_tools']]],
+ ['generatedsoundstream_3c_20int16_5ft_20_3e_1660',['GeneratedSoundStream< int16_t >',['../classaudio__tools_1_1_generated_sound_stream.html',1,'audio_tools']]],
+ ['generatorfixedvalue_1661',['GeneratorFixedValue',['../classaudio__tools_1_1_generator_fixed_value.html',1,'audio_tools']]],
+ ['generatorfromarray_1662',['GeneratorFromArray',['../classaudio__tools_1_1_generator_from_array.html',1,'audio_tools']]],
+ ['generatorfromstream_1663',['GeneratorFromStream',['../classaudio__tools_1_1_generator_from_stream.html',1,'audio_tools']]],
+ ['generatormixer_1664',['GeneratorMixer',['../classaudio__tools_1_1_generator_mixer.html',1,'audio_tools']]],
+ ['gsmdecoder_1665',['GSMDecoder',['../classaudio__tools_1_1_g_s_m_decoder.html',1,'audio_tools']]],
+ ['gsmencoder_1666',['GSMEncoder',['../classaudio__tools_1_1_g_s_m_encoder.html',1,'audio_tools']]]
];
diff --git a/search/classes_7.js b/search/classes_7.js
index 0b969345a4..9f1882ac6a 100644
--- a/search/classes_7.js
+++ b/search/classes_7.js
@@ -1,16 +1,16 @@
var searchData=
[
- ['hamming_1666',['Hamming',['../classaudio__tools_1_1_hamming.html',1,'audio_tools']]],
- ['hann_1667',['Hann',['../classaudio__tools_1_1_hann.html',1,'audio_tools']]],
- ['hardwareserial_1668',['HardwareSerial',['../classaudio__tools_1_1_hardware_serial.html',1,'audio_tools']]],
- ['hexdumpoutput_1669',['HexDumpOutput',['../classaudio__tools_1_1_hex_dump_output.html',1,'audio_tools']]],
- ['hlsparser_1670',['HLSParser',['../classaudio__tools_1_1_h_l_s_parser.html',1,'audio_tools']]],
- ['hlsstream_1671',['HLSStream',['../classaudio__tools_1_1_h_l_s_stream.html',1,'audio_tools']]],
- ['httpchunkreader_1672',['HttpChunkReader',['../classaudio__tools_1_1_http_chunk_reader.html',1,'audio_tools']]],
- ['httpheader_1673',['HttpHeader',['../classaudio__tools_1_1_http_header.html',1,'audio_tools']]],
- ['httpheaderline_1674',['HttpHeaderLine',['../structaudio__tools_1_1_http_header_line.html',1,'audio_tools']]],
- ['httplinereader_1675',['HttpLineReader',['../classaudio__tools_1_1_http_line_reader.html',1,'audio_tools']]],
- ['httpreplyheader_1676',['HttpReplyHeader',['../classaudio__tools_1_1_http_reply_header.html',1,'audio_tools']]],
- ['httprequest_1677',['HttpRequest',['../classaudio__tools_1_1_http_request.html',1,'audio_tools']]],
- ['httprequestheader_1678',['HttpRequestHeader',['../classaudio__tools_1_1_http_request_header.html',1,'audio_tools']]]
+ ['hamming_1667',['Hamming',['../classaudio__tools_1_1_hamming.html',1,'audio_tools']]],
+ ['hann_1668',['Hann',['../classaudio__tools_1_1_hann.html',1,'audio_tools']]],
+ ['hardwareserial_1669',['HardwareSerial',['../classaudio__tools_1_1_hardware_serial.html',1,'audio_tools']]],
+ ['hexdumpoutput_1670',['HexDumpOutput',['../classaudio__tools_1_1_hex_dump_output.html',1,'audio_tools']]],
+ ['hlsparser_1671',['HLSParser',['../classaudio__tools_1_1_h_l_s_parser.html',1,'audio_tools']]],
+ ['hlsstream_1672',['HLSStream',['../classaudio__tools_1_1_h_l_s_stream.html',1,'audio_tools']]],
+ ['httpchunkreader_1673',['HttpChunkReader',['../classaudio__tools_1_1_http_chunk_reader.html',1,'audio_tools']]],
+ ['httpheader_1674',['HttpHeader',['../classaudio__tools_1_1_http_header.html',1,'audio_tools']]],
+ ['httpheaderline_1675',['HttpHeaderLine',['../structaudio__tools_1_1_http_header_line.html',1,'audio_tools']]],
+ ['httplinereader_1676',['HttpLineReader',['../classaudio__tools_1_1_http_line_reader.html',1,'audio_tools']]],
+ ['httpreplyheader_1677',['HttpReplyHeader',['../classaudio__tools_1_1_http_reply_header.html',1,'audio_tools']]],
+ ['httprequest_1678',['HttpRequest',['../classaudio__tools_1_1_http_request.html',1,'audio_tools']]],
+ ['httprequestheader_1679',['HttpRequestHeader',['../classaudio__tools_1_1_http_request_header.html',1,'audio_tools']]]
];
diff --git a/search/classes_8.js b/search/classes_8.js
index 87fe0d4668..db6eea2fff 100644
--- a/search/classes_8.js
+++ b/search/classes_8.js
@@ -1,30 +1,31 @@
var searchData=
[
- ['i2sconfig_1679',['I2SConfig',['../classaudio__tools_1_1_i2_s_config.html',1,'audio_tools']]],
- ['i2sdriveresp32v1_1680',['I2SDriverESP32V1',['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html',1,'audio_tools']]],
- ['i2sdriveresp8266_1681',['I2SDriverESP8266',['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html',1,'audio_tools']]],
- ['i2sdrivernanoble_1682',['I2SDriverNanoBLE',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html',1,'audio_tools']]],
- ['i2sdriversamd_1683',['I2SDriverSAMD',['../classaudio__tools_1_1_i2_s_driver_s_a_m_d.html',1,'audio_tools']]],
- ['i2sdriverstm32_1684',['I2SDriverSTM32',['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html',1,'audio_tools']]],
- ['i2sstream_1685',['I2SStream',['../classaudio__tools_1_1_i2_s_stream.html',1,'audio_tools']]],
- ['icystream_1686',['ICYStream',['../classaudio__tools_1_1_i_c_y_stream.html',1,'audio_tools']]],
- ['icystreambuffered_1687',['ICYStreamBuffered',['../classaudio__tools_1_1_i_c_y_stream_buffered.html',1,'audio_tools']]],
- ['icyurlsetup_1688',['ICYUrlSetup',['../classaudio__tools_1_1_i_c_y_url_setup.html',1,'audio_tools']]],
- ['id3v1_1689',['ID3v1',['../structaudio__tools_1_1_i_d3v1.html',1,'audio_tools']]],
- ['id3v1enhanced_1690',['ID3v1Enhanced',['../structaudio__tools_1_1_i_d3v1_enhanced.html',1,'audio_tools']]],
- ['id3v2_1691',['ID3v2',['../structaudio__tools_1_1_i_d3v2.html',1,'ID3v2'],['../structaudio__tools_1_1_meta_data_filter_1_1_i_d3v2.html',1,'MetaDataFilter< Decoder >::ID3v2']]],
- ['id3v2frame_1692',['ID3v2Frame',['../structaudio__tools_1_1_i_d3v2_frame.html',1,'audio_tools']]],
- ['id3v2framestring_1693',['ID3v2FrameString',['../structaudio__tools_1_1_i_d3v2_frame_string.html',1,'audio_tools']]],
- ['iir_1694',['IIR',['../classaudio__tools_1_1_i_i_r.html',1,'audio_tools']]],
- ['ilbcdecoder_1695',['ILBCDecoder',['../classaudio__tools_1_1_i_l_b_c_decoder.html',1,'audio_tools']]],
- ['ilbcencoder_1696',['ILBCEncoder',['../classaudio__tools_1_1_i_l_b_c_encoder.html',1,'audio_tools']]],
- ['imastate_1697',['IMAState',['../structaudio__tools_1_1_i_m_a_state.html',1,'audio_tools']]],
- ['initializer_5flist_1698',['initializer_list',['../classstd_1_1initializer__list.html',1,'std']]],
- ['inputmerge_1699',['InputMerge',['../classaudio__tools_1_1_input_merge.html',1,'audio_tools']]],
- ['inputmixer_1700',['InputMixer',['../classaudio__tools_1_1_input_mixer.html',1,'audio_tools']]],
- ['int24_5f3bytes_5ft_1701',['int24_3bytes_t',['../classaudio__tools_1_1int24__3bytes__t.html',1,'audio_tools']]],
- ['int24_5f4bytes_5ft_1702',['int24_4bytes_t',['../classaudio__tools_1_1int24__4bytes__t.html',1,'audio_tools']]],
- ['io16bit_1703',['IO16Bit',['../classaudio__tools_1_1_analog_driver_e_s_p32_v1_1_1_i_o16_bit.html',1,'audio_tools::AnalogDriverESP32V1']]],
- ['iterator_1704',['Iterator',['../classaudio__tools_1_1_list_1_1_iterator.html',1,'audio_tools::List']]],
- ['iterator_1705',['iterator',['../classaudio__tools_1_1_vector_1_1iterator.html',1,'audio_tools::Vector']]]
+ ['i2sconfig_1680',['I2SConfig',['../classaudio__tools_1_1_i2_s_config.html',1,'audio_tools']]],
+ ['i2sdriveresp32_1681',['I2SDriverESP32',['../classaudio__tools_1_1_i2_s_driver_e_s_p32.html',1,'audio_tools']]],
+ ['i2sdriveresp32v1_1682',['I2SDriverESP32V1',['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html',1,'audio_tools']]],
+ ['i2sdriveresp8266_1683',['I2SDriverESP8266',['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html',1,'audio_tools']]],
+ ['i2sdrivernanoble_1684',['I2SDriverNanoBLE',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html',1,'audio_tools']]],
+ ['i2sdriversamd_1685',['I2SDriverSAMD',['../classaudio__tools_1_1_i2_s_driver_s_a_m_d.html',1,'audio_tools']]],
+ ['i2sdriverstm32_1686',['I2SDriverSTM32',['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html',1,'audio_tools']]],
+ ['i2sstream_1687',['I2SStream',['../classaudio__tools_1_1_i2_s_stream.html',1,'audio_tools']]],
+ ['icystream_1688',['ICYStream',['../classaudio__tools_1_1_i_c_y_stream.html',1,'audio_tools']]],
+ ['icystreambuffered_1689',['ICYStreamBuffered',['../classaudio__tools_1_1_i_c_y_stream_buffered.html',1,'audio_tools']]],
+ ['icyurlsetup_1690',['ICYUrlSetup',['../classaudio__tools_1_1_i_c_y_url_setup.html',1,'audio_tools']]],
+ ['id3v1_1691',['ID3v1',['../structaudio__tools_1_1_i_d3v1.html',1,'audio_tools']]],
+ ['id3v1enhanced_1692',['ID3v1Enhanced',['../structaudio__tools_1_1_i_d3v1_enhanced.html',1,'audio_tools']]],
+ ['id3v2_1693',['ID3v2',['../structaudio__tools_1_1_i_d3v2.html',1,'ID3v2'],['../structaudio__tools_1_1_meta_data_filter_1_1_i_d3v2.html',1,'MetaDataFilter< Decoder >::ID3v2']]],
+ ['id3v2frame_1694',['ID3v2Frame',['../structaudio__tools_1_1_i_d3v2_frame.html',1,'audio_tools']]],
+ ['id3v2framestring_1695',['ID3v2FrameString',['../structaudio__tools_1_1_i_d3v2_frame_string.html',1,'audio_tools']]],
+ ['iir_1696',['IIR',['../classaudio__tools_1_1_i_i_r.html',1,'audio_tools']]],
+ ['ilbcdecoder_1697',['ILBCDecoder',['../classaudio__tools_1_1_i_l_b_c_decoder.html',1,'audio_tools']]],
+ ['ilbcencoder_1698',['ILBCEncoder',['../classaudio__tools_1_1_i_l_b_c_encoder.html',1,'audio_tools']]],
+ ['imastate_1699',['IMAState',['../structaudio__tools_1_1_i_m_a_state.html',1,'audio_tools']]],
+ ['initializer_5flist_1700',['initializer_list',['../classstd_1_1initializer__list.html',1,'std']]],
+ ['inputmerge_1701',['InputMerge',['../classaudio__tools_1_1_input_merge.html',1,'audio_tools']]],
+ ['inputmixer_1702',['InputMixer',['../classaudio__tools_1_1_input_mixer.html',1,'audio_tools']]],
+ ['int24_5f3bytes_5ft_1703',['int24_3bytes_t',['../classaudio__tools_1_1int24__3bytes__t.html',1,'audio_tools']]],
+ ['int24_5f4bytes_5ft_1704',['int24_4bytes_t',['../classaudio__tools_1_1int24__4bytes__t.html',1,'audio_tools']]],
+ ['io16bit_1705',['IO16Bit',['../classaudio__tools_1_1_analog_driver_e_s_p32_v1_1_1_i_o16_bit.html',1,'audio_tools::AnalogDriverESP32V1']]],
+ ['iterator_1706',['Iterator',['../classaudio__tools_1_1_list_1_1_iterator.html',1,'audio_tools::List']]],
+ ['iterator_1707',['iterator',['../classaudio__tools_1_1_vector_1_1iterator.html',1,'audio_tools::Vector']]]
];
diff --git a/search/classes_9.js b/search/classes_9.js
index 0b6d812b02..522091aafd 100644
--- a/search/classes_9.js
+++ b/search/classes_9.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['jpegopencv_1706',['JpegOpenCV',['../classaudio__tools_1_1_jpeg_open_c_v.html',1,'audio_tools']]],
- ['jpegtft_1707',['JpegTFT',['../classaudio__tools_1_1_jpeg_t_f_t.html',1,'audio_tools']]],
- ['jupyteraudiot_1708',['JupyterAudioT',['../classaudio__tools_1_1_jupyter_audio_t.html',1,'audio_tools']]]
+ ['jpegopencv_1708',['JpegOpenCV',['../classaudio__tools_1_1_jpeg_open_c_v.html',1,'audio_tools']]],
+ ['jpegtft_1709',['JpegTFT',['../classaudio__tools_1_1_jpeg_t_f_t.html',1,'audio_tools']]],
+ ['jupyteraudiot_1710',['JupyterAudioT',['../classaudio__tools_1_1_jupyter_audio_t.html',1,'audio_tools']]]
];
diff --git a/search/classes_a.js b/search/classes_a.js
index 8597765114..e7222f8f26 100644
--- a/search/classes_a.js
+++ b/search/classes_a.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['keyparameter_1709',['KeyParameter',['../structaudio__tools_1_1_synthesizer_1_1_key_parameter.html',1,'audio_tools::Synthesizer']]]
+ ['keyparameter_1711',['KeyParameter',['../structaudio__tools_1_1_synthesizer_1_1_key_parameter.html',1,'audio_tools::Synthesizer']]]
];
diff --git a/search/classes_b.js b/search/classes_b.js
index 668480009b..593a873424 100644
--- a/search/classes_b.js
+++ b/search/classes_b.js
@@ -1,20 +1,20 @@
var searchData=
[
- ['lastsamplefader_1710',['LastSampleFader',['../classaudio__tools_1_1_last_sample_fader.html',1,'audio_tools']]],
- ['lastsamplefadert_1711',['LastSampleFaderT',['../classaudio__tools_1_1_last_sample_fader_t.html',1,'audio_tools']]],
- ['lastsamplefadert_3c_20audio_5ftools_3a_3aint24_5f4bytes_5ft_20_3e_1712',['LastSampleFaderT< audio_tools::int24_4bytes_t >',['../classaudio__tools_1_1_last_sample_fader_t.html',1,'audio_tools']]],
- ['lastsamplefadert_3c_20int16_5ft_20_3e_1713',['LastSampleFaderT< int16_t >',['../classaudio__tools_1_1_last_sample_fader_t.html',1,'audio_tools']]],
- ['lastsamplefadert_3c_20int32_5ft_20_3e_1714',['LastSampleFaderT< int32_t >',['../classaudio__tools_1_1_last_sample_fader_t.html',1,'audio_tools']]],
- ['lc3decoder_1715',['LC3Decoder',['../classaudio__tools_1_1_l_c3_decoder.html',1,'audio_tools']]],
- ['lc3encoder_1716',['LC3Encoder',['../classaudio__tools_1_1_l_c3_encoder.html',1,'audio_tools']]],
- ['ledoutput_1717',['LEDOutput',['../classaudio__tools_1_1_l_e_d_output.html',1,'audio_tools']]],
- ['ledoutputconfig_1718',['LEDOutputConfig',['../structaudio__tools_1_1_l_e_d_output_config.html',1,'audio_tools']]],
- ['ledoutputunor4_1719',['LEDOutputUnoR4',['../classaudio__tools_1_1_l_e_d_output_uno_r4.html',1,'audio_tools']]],
- ['ledoutputunor4config_1720',['LEDOutputUnoR4Config',['../structaudio__tools_1_1_l_e_d_output_uno_r4_config.html',1,'audio_tools']]],
- ['linearvolumecontrol_1721',['LinearVolumeControl',['../classaudio__tools_1_1_linear_volume_control.html',1,'audio_tools']]],
- ['list_1722',['List',['../classaudio__tools_1_1_list.html',1,'audio_tools']]],
- ['list_3c_20audio_5ftools_3a_3adynamicmemorystream_3a_3adatanode_20_2a_20_3e_1723',['List< audio_tools::DynamicMemoryStream::DataNode * >',['../classaudio__tools_1_1_list.html',1,'audio_tools']]],
- ['list_3c_20string_20_3e_1724',['List< String >',['../classaudio__tools_1_1_list.html',1,'audio_tools']]],
- ['lock_1725',['Lock',['../classaudio__tools_1_1_lock.html',1,'audio_tools']]],
- ['logarithmicvolumecontrol_1726',['LogarithmicVolumeControl',['../classaudio__tools_1_1_logarithmic_volume_control.html',1,'audio_tools']]]
+ ['lastsamplefader_1712',['LastSampleFader',['../classaudio__tools_1_1_last_sample_fader.html',1,'audio_tools']]],
+ ['lastsamplefadert_1713',['LastSampleFaderT',['../classaudio__tools_1_1_last_sample_fader_t.html',1,'audio_tools']]],
+ ['lastsamplefadert_3c_20audio_5ftools_3a_3aint24_5f4bytes_5ft_20_3e_1714',['LastSampleFaderT< audio_tools::int24_4bytes_t >',['../classaudio__tools_1_1_last_sample_fader_t.html',1,'audio_tools']]],
+ ['lastsamplefadert_3c_20int16_5ft_20_3e_1715',['LastSampleFaderT< int16_t >',['../classaudio__tools_1_1_last_sample_fader_t.html',1,'audio_tools']]],
+ ['lastsamplefadert_3c_20int32_5ft_20_3e_1716',['LastSampleFaderT< int32_t >',['../classaudio__tools_1_1_last_sample_fader_t.html',1,'audio_tools']]],
+ ['lc3decoder_1717',['LC3Decoder',['../classaudio__tools_1_1_l_c3_decoder.html',1,'audio_tools']]],
+ ['lc3encoder_1718',['LC3Encoder',['../classaudio__tools_1_1_l_c3_encoder.html',1,'audio_tools']]],
+ ['ledoutput_1719',['LEDOutput',['../classaudio__tools_1_1_l_e_d_output.html',1,'audio_tools']]],
+ ['ledoutputconfig_1720',['LEDOutputConfig',['../structaudio__tools_1_1_l_e_d_output_config.html',1,'audio_tools']]],
+ ['ledoutputunor4_1721',['LEDOutputUnoR4',['../classaudio__tools_1_1_l_e_d_output_uno_r4.html',1,'audio_tools']]],
+ ['ledoutputunor4config_1722',['LEDOutputUnoR4Config',['../structaudio__tools_1_1_l_e_d_output_uno_r4_config.html',1,'audio_tools']]],
+ ['linearvolumecontrol_1723',['LinearVolumeControl',['../classaudio__tools_1_1_linear_volume_control.html',1,'audio_tools']]],
+ ['list_1724',['List',['../classaudio__tools_1_1_list.html',1,'audio_tools']]],
+ ['list_3c_20audio_5ftools_3a_3adynamicmemorystream_3a_3adatanode_20_2a_20_3e_1725',['List< audio_tools::DynamicMemoryStream::DataNode * >',['../classaudio__tools_1_1_list.html',1,'audio_tools']]],
+ ['list_3c_20string_20_3e_1726',['List< String >',['../classaudio__tools_1_1_list.html',1,'audio_tools']]],
+ ['lock_1727',['Lock',['../classaudio__tools_1_1_lock.html',1,'audio_tools']]],
+ ['logarithmicvolumecontrol_1728',['LogarithmicVolumeControl',['../classaudio__tools_1_1_logarithmic_volume_control.html',1,'audio_tools']]]
];
diff --git a/search/classes_c.js b/search/classes_c.js
index fd63785d52..5cc31380e5 100644
--- a/search/classes_c.js
+++ b/search/classes_c.js
@@ -1,34 +1,34 @@
var searchData=
[
- ['maximilian_1727',['Maximilian',['../classaudio__tools_1_1_maximilian.html',1,'audio_tools']]],
- ['measuringstream_1728',['MeasuringStream',['../classaudio__tools_1_1_measuring_stream.html',1,'audio_tools']]],
- ['medianfilter_1729',['MedianFilter',['../classaudio__tools_1_1_median_filter.html',1,'audio_tools']]],
- ['memorymanager_1730',['MemoryManager',['../classaudio__tools_1_1_memory_manager.html',1,'audio_tools']]],
- ['memoryoutput_1731',['MemoryOutput',['../classaudio__tools_1_1_memory_output.html',1,'audio_tools']]],
- ['memorystream_1732',['MemoryStream',['../classaudio__tools_1_1_memory_stream.html',1,'audio_tools']]],
- ['meta_1733',['Meta',['../class_meta.html',1,'']]],
- ['metadatafilter_1734',['MetaDataFilter',['../classaudio__tools_1_1_meta_data_filter.html',1,'audio_tools']]],
- ['metadatafilter_3c_20libhelix_3a_3amp3decoderhelix_20_3e_1735',['MetaDataFilter< libhelix::MP3DecoderHelix >',['../classaudio__tools_1_1_meta_data_filter.html',1,'audio_tools']]],
- ['metadataicy_1736',['MetaDataICY',['../classaudio__tools_1_1_meta_data_i_c_y.html',1,'audio_tools']]],
- ['metadataid3_1737',['MetaDataID3',['../classaudio__tools_1_1_meta_data_i_d3.html',1,'audio_tools']]],
- ['metadataid3base_1738',['MetaDataID3Base',['../classaudio__tools_1_1_meta_data_i_d3_base.html',1,'audio_tools']]],
- ['metadataid3v1_1739',['MetaDataID3V1',['../classaudio__tools_1_1_meta_data_i_d3_v1.html',1,'audio_tools']]],
- ['metadataid3v2_1740',['MetaDataID3V2',['../classaudio__tools_1_1_meta_data_i_d3_v2.html',1,'audio_tools']]],
- ['metadataoutput_1741',['MetaDataOutput',['../classaudio__tools_1_1_meta_data_output.html',1,'audio_tools']]],
- ['miniaudioconfig_1742',['MiniAudioConfig',['../classaudio__tools_1_1_mini_audio_config.html',1,'audio_tools']]],
- ['miniaudiostream_1743',['MiniAudioStream',['../classaudio__tools_1_1_mini_audio_stream.html',1,'audio_tools']]],
- ['modulationbaseclass_1744',['ModulationBaseClass',['../classaudio__tools_1_1_modulation_base_class.html',1,'audio_tools']]],
- ['mozziconfig_1745',['MozziConfig',['../structaudio__tools_1_1_mozzi_config.html',1,'audio_tools']]],
- ['mozzigenerator_1746',['MozziGenerator',['../classaudio__tools_1_1_mozzi_generator.html',1,'audio_tools']]],
- ['mozzistream_1747',['MozziStream',['../classaudio__tools_1_1_mozzi_stream.html',1,'audio_tools']]],
- ['mp3decoderhelix_1748',['MP3DecoderHelix',['../classaudio__tools_1_1_m_p3_decoder_helix.html',1,'audio_tools']]],
- ['mp3decodermad_1749',['MP3DecoderMAD',['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html',1,'audio_tools']]],
- ['mp3decodermini_1750',['MP3DecoderMini',['../classaudio__tools_1_1_m_p3_decoder_mini.html',1,'audio_tools']]],
- ['mp3encoderlame_1751',['MP3EncoderLAME',['../classaudio__tools_1_1_m_p3_encoder_l_a_m_e.html',1,'audio_tools']]],
- ['mp4atom_1752',['MP4Atom',['../structaudio__tools_1_1_m_p4_atom.html',1,'audio_tools']]],
- ['mp4parsebuffer_1753',['MP4ParseBuffer',['../classaudio__tools_1_1_m_p4_parse_buffer.html',1,'audio_tools']]],
- ['mtsdecoder_1754',['MTSDecoder',['../classaudio__tools_1_1_m_t_s_decoder.html',1,'audio_tools']]],
- ['multiconverter_1755',['MultiConverter',['../classaudio__tools_1_1_multi_converter.html',1,'audio_tools']]],
- ['multioutput_1756',['MultiOutput',['../classaudio__tools_1_1_multi_output.html',1,'audio_tools']]],
- ['musicalnotes_1757',['MusicalNotes',['../classaudio__tools_1_1_musical_notes.html',1,'audio_tools']]]
+ ['maximilian_1729',['Maximilian',['../classaudio__tools_1_1_maximilian.html',1,'audio_tools']]],
+ ['measuringstream_1730',['MeasuringStream',['../classaudio__tools_1_1_measuring_stream.html',1,'audio_tools']]],
+ ['medianfilter_1731',['MedianFilter',['../classaudio__tools_1_1_median_filter.html',1,'audio_tools']]],
+ ['memorymanager_1732',['MemoryManager',['../classaudio__tools_1_1_memory_manager.html',1,'audio_tools']]],
+ ['memoryoutput_1733',['MemoryOutput',['../classaudio__tools_1_1_memory_output.html',1,'audio_tools']]],
+ ['memorystream_1734',['MemoryStream',['../classaudio__tools_1_1_memory_stream.html',1,'audio_tools']]],
+ ['meta_1735',['Meta',['../class_meta.html',1,'']]],
+ ['metadatafilter_1736',['MetaDataFilter',['../classaudio__tools_1_1_meta_data_filter.html',1,'audio_tools']]],
+ ['metadatafilter_3c_20libhelix_3a_3amp3decoderhelix_20_3e_1737',['MetaDataFilter< libhelix::MP3DecoderHelix >',['../classaudio__tools_1_1_meta_data_filter.html',1,'audio_tools']]],
+ ['metadataicy_1738',['MetaDataICY',['../classaudio__tools_1_1_meta_data_i_c_y.html',1,'audio_tools']]],
+ ['metadataid3_1739',['MetaDataID3',['../classaudio__tools_1_1_meta_data_i_d3.html',1,'audio_tools']]],
+ ['metadataid3base_1740',['MetaDataID3Base',['../classaudio__tools_1_1_meta_data_i_d3_base.html',1,'audio_tools']]],
+ ['metadataid3v1_1741',['MetaDataID3V1',['../classaudio__tools_1_1_meta_data_i_d3_v1.html',1,'audio_tools']]],
+ ['metadataid3v2_1742',['MetaDataID3V2',['../classaudio__tools_1_1_meta_data_i_d3_v2.html',1,'audio_tools']]],
+ ['metadataoutput_1743',['MetaDataOutput',['../classaudio__tools_1_1_meta_data_output.html',1,'audio_tools']]],
+ ['miniaudioconfig_1744',['MiniAudioConfig',['../classaudio__tools_1_1_mini_audio_config.html',1,'audio_tools']]],
+ ['miniaudiostream_1745',['MiniAudioStream',['../classaudio__tools_1_1_mini_audio_stream.html',1,'audio_tools']]],
+ ['modulationbaseclass_1746',['ModulationBaseClass',['../classaudio__tools_1_1_modulation_base_class.html',1,'audio_tools']]],
+ ['mozziconfig_1747',['MozziConfig',['../structaudio__tools_1_1_mozzi_config.html',1,'audio_tools']]],
+ ['mozzigenerator_1748',['MozziGenerator',['../classaudio__tools_1_1_mozzi_generator.html',1,'audio_tools']]],
+ ['mozzistream_1749',['MozziStream',['../classaudio__tools_1_1_mozzi_stream.html',1,'audio_tools']]],
+ ['mp3decoderhelix_1750',['MP3DecoderHelix',['../classaudio__tools_1_1_m_p3_decoder_helix.html',1,'audio_tools']]],
+ ['mp3decodermad_1751',['MP3DecoderMAD',['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html',1,'audio_tools']]],
+ ['mp3decodermini_1752',['MP3DecoderMini',['../classaudio__tools_1_1_m_p3_decoder_mini.html',1,'audio_tools']]],
+ ['mp3encoderlame_1753',['MP3EncoderLAME',['../classaudio__tools_1_1_m_p3_encoder_l_a_m_e.html',1,'audio_tools']]],
+ ['mp4atom_1754',['MP4Atom',['../structaudio__tools_1_1_m_p4_atom.html',1,'audio_tools']]],
+ ['mp4parsebuffer_1755',['MP4ParseBuffer',['../classaudio__tools_1_1_m_p4_parse_buffer.html',1,'audio_tools']]],
+ ['mtsdecoder_1756',['MTSDecoder',['../classaudio__tools_1_1_m_t_s_decoder.html',1,'audio_tools']]],
+ ['multiconverter_1757',['MultiConverter',['../classaudio__tools_1_1_multi_converter.html',1,'audio_tools']]],
+ ['multioutput_1758',['MultiOutput',['../classaudio__tools_1_1_multi_output.html',1,'audio_tools']]],
+ ['musicalnotes_1759',['MusicalNotes',['../classaudio__tools_1_1_musical_notes.html',1,'audio_tools']]]
];
diff --git a/search/classes_d.js b/search/classes_d.js
index 04fc8401c2..2c8e9b06bf 100644
--- a/search/classes_d.js
+++ b/search/classes_d.js
@@ -1,18 +1,18 @@
var searchData=
[
- ['nano_5fble_5ffreq_5finfo_1758',['Nano_BLE_freq_info',['../structaudio__tools_1_1_nano___b_l_e__freq__info.html',1,'audio_tools']]],
- ['nano_5fble_5fratio_5finfo_1759',['Nano_BLE_ratio_info',['../structaudio__tools_1_1_nano___b_l_e__ratio__info.html',1,'audio_tools']]],
- ['nbuffer_1760',['NBuffer',['../classaudio__tools_1_1_n_buffer.html',1,'audio_tools']]],
- ['nbuffer_3c_20frame_20_3e_1761',['NBuffer< Frame >',['../classaudio__tools_1_1_n_buffer.html',1,'audio_tools']]],
- ['nbuffer_3c_20uint8_5ft_20_3e_1762',['NBuffer< uint8_t >',['../classaudio__tools_1_1_n_buffer.html',1,'audio_tools']]],
- ['node_1763',['Node',['../structaudio__tools_1_1_list_1_1_node.html',1,'audio_tools::List']]],
- ['node_1764',['node',['../structaudio__tools_1_1_queue_lock_free_1_1node.html',1,'audio_tools::QueueLockFree']]],
- ['nofilter_1765',['NoFilter',['../classaudio__tools_1_1_no_filter.html',1,'audio_tools']]],
- ['nopconverter_1766',['NOPConverter',['../classaudio__tools_1_1_n_o_p_converter.html',1,'audio_tools']]],
- ['nullstream_1767',['NullStream',['../classaudio__tools_1_1_null_stream.html',1,'audio_tools']]],
- ['numberconverter_1768',['NumberConverter',['../classaudio__tools_1_1_number_converter.html',1,'audio_tools']]],
- ['numberformatconverterstream_1769',['NumberFormatConverterStream',['../classaudio__tools_1_1_number_format_converter_stream.html',1,'audio_tools']]],
- ['numberformatconverterstreamt_1770',['NumberFormatConverterStreamT',['../classaudio__tools_1_1_number_format_converter_stream_t.html',1,'audio_tools']]],
- ['numberreader_1771',['NumberReader',['../classaudio__tools_1_1_number_reader.html',1,'audio_tools']]],
- ['nuttall_1772',['Nuttall',['../classaudio__tools_1_1_nuttall.html',1,'audio_tools']]]
+ ['nano_5fble_5ffreq_5finfo_1760',['Nano_BLE_freq_info',['../structaudio__tools_1_1_nano___b_l_e__freq__info.html',1,'audio_tools']]],
+ ['nano_5fble_5fratio_5finfo_1761',['Nano_BLE_ratio_info',['../structaudio__tools_1_1_nano___b_l_e__ratio__info.html',1,'audio_tools']]],
+ ['nbuffer_1762',['NBuffer',['../classaudio__tools_1_1_n_buffer.html',1,'audio_tools']]],
+ ['nbuffer_3c_20frame_20_3e_1763',['NBuffer< Frame >',['../classaudio__tools_1_1_n_buffer.html',1,'audio_tools']]],
+ ['nbuffer_3c_20uint8_5ft_20_3e_1764',['NBuffer< uint8_t >',['../classaudio__tools_1_1_n_buffer.html',1,'audio_tools']]],
+ ['node_1765',['Node',['../structaudio__tools_1_1_list_1_1_node.html',1,'audio_tools::List']]],
+ ['node_1766',['node',['../structaudio__tools_1_1_queue_lock_free_1_1node.html',1,'audio_tools::QueueLockFree']]],
+ ['nofilter_1767',['NoFilter',['../classaudio__tools_1_1_no_filter.html',1,'audio_tools']]],
+ ['nopconverter_1768',['NOPConverter',['../classaudio__tools_1_1_n_o_p_converter.html',1,'audio_tools']]],
+ ['nullstream_1769',['NullStream',['../classaudio__tools_1_1_null_stream.html',1,'audio_tools']]],
+ ['numberconverter_1770',['NumberConverter',['../classaudio__tools_1_1_number_converter.html',1,'audio_tools']]],
+ ['numberformatconverterstream_1771',['NumberFormatConverterStream',['../classaudio__tools_1_1_number_format_converter_stream.html',1,'audio_tools']]],
+ ['numberformatconverterstreamt_1772',['NumberFormatConverterStreamT',['../classaudio__tools_1_1_number_format_converter_stream_t.html',1,'audio_tools']]],
+ ['numberreader_1773',['NumberReader',['../classaudio__tools_1_1_number_reader.html',1,'audio_tools']]],
+ ['nuttall_1774',['Nuttall',['../classaudio__tools_1_1_nuttall.html',1,'audio_tools']]]
];
diff --git a/search/classes_e.js b/search/classes_e.js
index a6dfdfa958..369c45a7b3 100644
--- a/search/classes_e.js
+++ b/search/classes_e.js
@@ -1,16 +1,16 @@
var searchData=
[
- ['oggcontainerdecoder_1773',['OggContainerDecoder',['../classaudio__tools_1_1_ogg_container_decoder.html',1,'audio_tools']]],
- ['oggcontainerencoder_1774',['OggContainerEncoder',['../classaudio__tools_1_1_ogg_container_encoder.html',1,'audio_tools']]],
- ['oggcontaineroutput_1775',['OggContainerOutput',['../classaudio__tools_1_1_ogg_container_output.html',1,'audio_tools']]],
- ['onoffoutput_1776',['OnOffOutput',['../classaudio__tools_1_1_on_off_output.html',1,'audio_tools']]],
- ['opusaudiodecoder_1777',['OpusAudioDecoder',['../classaudio__tools_1_1_opus_audio_decoder.html',1,'audio_tools']]],
- ['opusaudioencoder_1778',['OpusAudioEncoder',['../classaudio__tools_1_1_opus_audio_encoder.html',1,'audio_tools']]],
- ['opusencodersettings_1779',['OpusEncoderSettings',['../structaudio__tools_1_1_opus_encoder_settings.html',1,'audio_tools']]],
- ['opusoggdecoder_1780',['OpusOggDecoder',['../classaudio__tools_1_1_opus_ogg_decoder.html',1,'audio_tools']]],
- ['opusoggencoder_1781',['OpusOggEncoder',['../classaudio__tools_1_1_opus_ogg_encoder.html',1,'audio_tools']]],
- ['opusoggwriter_1782',['OpusOggWriter',['../classaudio__tools_1_1_opus_ogg_writer.html',1,'audio_tools']]],
- ['opussettings_1783',['OpusSettings',['../structaudio__tools_1_1_opus_settings.html',1,'audio_tools']]],
- ['oscsincos_1784',['OscSinCos',['../classffft_1_1_osc_sin_cos.html',1,'ffft']]],
- ['outputmixer_1785',['OutputMixer',['../classaudio__tools_1_1_output_mixer.html',1,'audio_tools']]]
+ ['oggcontainerdecoder_1775',['OggContainerDecoder',['../classaudio__tools_1_1_ogg_container_decoder.html',1,'audio_tools']]],
+ ['oggcontainerencoder_1776',['OggContainerEncoder',['../classaudio__tools_1_1_ogg_container_encoder.html',1,'audio_tools']]],
+ ['oggcontaineroutput_1777',['OggContainerOutput',['../classaudio__tools_1_1_ogg_container_output.html',1,'audio_tools']]],
+ ['onoffoutput_1778',['OnOffOutput',['../classaudio__tools_1_1_on_off_output.html',1,'audio_tools']]],
+ ['opusaudiodecoder_1779',['OpusAudioDecoder',['../classaudio__tools_1_1_opus_audio_decoder.html',1,'audio_tools']]],
+ ['opusaudioencoder_1780',['OpusAudioEncoder',['../classaudio__tools_1_1_opus_audio_encoder.html',1,'audio_tools']]],
+ ['opusencodersettings_1781',['OpusEncoderSettings',['../structaudio__tools_1_1_opus_encoder_settings.html',1,'audio_tools']]],
+ ['opusoggdecoder_1782',['OpusOggDecoder',['../classaudio__tools_1_1_opus_ogg_decoder.html',1,'audio_tools']]],
+ ['opusoggencoder_1783',['OpusOggEncoder',['../classaudio__tools_1_1_opus_ogg_encoder.html',1,'audio_tools']]],
+ ['opusoggwriter_1784',['OpusOggWriter',['../classaudio__tools_1_1_opus_ogg_writer.html',1,'audio_tools']]],
+ ['opussettings_1785',['OpusSettings',['../structaudio__tools_1_1_opus_settings.html',1,'audio_tools']]],
+ ['oscsincos_1786',['OscSinCos',['../classffft_1_1_osc_sin_cos.html',1,'ffft']]],
+ ['outputmixer_1787',['OutputMixer',['../classaudio__tools_1_1_output_mixer.html',1,'audio_tools']]]
];
diff --git a/search/classes_f.js b/search/classes_f.js
index dd1ffcd687..c55956b72b 100644
--- a/search/classes_f.js
+++ b/search/classes_f.js
@@ -1,26 +1,26 @@
var searchData=
[
- ['parameter_1786',['Parameter',['../classaudio__tools_1_1_parameter.html',1,'audio_tools']]],
- ['parsebuffer_1787',['ParseBuffer',['../classaudio__tools_1_1_parse_buffer.html',1,'audio_tools']]],
- ['parseobject_1788',['ParseObject',['../classaudio__tools_1_1_parse_object.html',1,'audio_tools']]],
- ['pininfoesp32_1789',['PinInfoESP32',['../structaudio__tools_1_1_pin_info_e_s_p32.html',1,'audio_tools']]],
- ['pinknoisegenerator_1790',['PinkNoiseGenerator',['../classaudio__tools_1_1_pink_noise_generator.html',1,'audio_tools']]],
- ['pitchshift_1791',['PitchShift',['../classaudio__tools_1_1_pitch_shift.html',1,'audio_tools']]],
- ['pitchshiftinfo_1792',['PitchShiftInfo',['../structaudio__tools_1_1_pitch_shift_info.html',1,'audio_tools']]],
- ['pitchshiftoutput_1793',['PitchShiftOutput',['../classaudio__tools_1_1_pitch_shift_output.html',1,'audio_tools']]],
- ['poppingsoundremover_1794',['PoppingSoundRemover',['../classaudio__tools_1_1_popping_sound_remover.html',1,'audio_tools']]],
- ['portaudioconfig_1795',['PortAudioConfig',['../classaudio__tools_1_1_port_audio_config.html',1,'audio_tools']]],
- ['portaudiostream_1796',['PortAudioStream',['../classaudio__tools_1_1_port_audio_stream.html',1,'audio_tools']]],
- ['print_1797',['Print',['../classaudio__tools_1_1_print.html',1,'audio_tools']]],
- ['printable_1798',['Printable',['../class_printable.html',1,'']]],
- ['processedresult_1799',['ProcessedResult',['../structaudio__tools_1_1_processed_result.html',1,'audio_tools']]],
- ['progressstream_1800',['ProgressStream',['../classaudio__tools_1_1_progress_stream.html',1,'audio_tools']]],
- ['progressstreaminfo_1801',['ProgressStreamInfo',['../classaudio__tools_1_1_progress_stream_info.html',1,'audio_tools']]],
- ['pwmaudiooutput_1802',['PWMAudioOutput',['../classaudio__tools_1_1_p_w_m_audio_output.html',1,'audio_tools']]],
- ['pwmconfig_1803',['PWMConfig',['../structaudio__tools_1_1_p_w_m_config.html',1,'audio_tools']]],
- ['pwmdriveravr_1804',['PWMDriverAVR',['../classaudio__tools_1_1_p_w_m_driver_a_v_r.html',1,'audio_tools']]],
- ['pwmdriveresp32_1805',['PWMDriverESP32',['../classaudio__tools_1_1_p_w_m_driver_e_s_p32.html',1,'audio_tools']]],
- ['pwmdrivermbed_1806',['PWMDriverMBED',['../classaudio__tools_1_1_p_w_m_driver_m_b_e_d.html',1,'audio_tools']]],
- ['pwmdriverrenesas_1807',['PWMDriverRenesas',['../classaudio__tools_1_1_p_w_m_driver_renesas.html',1,'audio_tools']]],
- ['pwmdriverstm32_1808',['PWMDriverSTM32',['../classaudio__tools_1_1_p_w_m_driver_s_t_m32.html',1,'audio_tools']]]
+ ['parameter_1788',['Parameter',['../classaudio__tools_1_1_parameter.html',1,'audio_tools']]],
+ ['parsebuffer_1789',['ParseBuffer',['../classaudio__tools_1_1_parse_buffer.html',1,'audio_tools']]],
+ ['parseobject_1790',['ParseObject',['../classaudio__tools_1_1_parse_object.html',1,'audio_tools']]],
+ ['pininfoesp32_1791',['PinInfoESP32',['../structaudio__tools_1_1_pin_info_e_s_p32.html',1,'audio_tools']]],
+ ['pinknoisegenerator_1792',['PinkNoiseGenerator',['../classaudio__tools_1_1_pink_noise_generator.html',1,'audio_tools']]],
+ ['pitchshift_1793',['PitchShift',['../classaudio__tools_1_1_pitch_shift.html',1,'audio_tools']]],
+ ['pitchshiftinfo_1794',['PitchShiftInfo',['../structaudio__tools_1_1_pitch_shift_info.html',1,'audio_tools']]],
+ ['pitchshiftoutput_1795',['PitchShiftOutput',['../classaudio__tools_1_1_pitch_shift_output.html',1,'audio_tools']]],
+ ['poppingsoundremover_1796',['PoppingSoundRemover',['../classaudio__tools_1_1_popping_sound_remover.html',1,'audio_tools']]],
+ ['portaudioconfig_1797',['PortAudioConfig',['../classaudio__tools_1_1_port_audio_config.html',1,'audio_tools']]],
+ ['portaudiostream_1798',['PortAudioStream',['../classaudio__tools_1_1_port_audio_stream.html',1,'audio_tools']]],
+ ['print_1799',['Print',['../classaudio__tools_1_1_print.html',1,'audio_tools']]],
+ ['printable_1800',['Printable',['../class_printable.html',1,'']]],
+ ['processedresult_1801',['ProcessedResult',['../structaudio__tools_1_1_processed_result.html',1,'audio_tools']]],
+ ['progressstream_1802',['ProgressStream',['../classaudio__tools_1_1_progress_stream.html',1,'audio_tools']]],
+ ['progressstreaminfo_1803',['ProgressStreamInfo',['../classaudio__tools_1_1_progress_stream_info.html',1,'audio_tools']]],
+ ['pwmaudiooutput_1804',['PWMAudioOutput',['../classaudio__tools_1_1_p_w_m_audio_output.html',1,'audio_tools']]],
+ ['pwmconfig_1805',['PWMConfig',['../structaudio__tools_1_1_p_w_m_config.html',1,'audio_tools']]],
+ ['pwmdriveravr_1806',['PWMDriverAVR',['../classaudio__tools_1_1_p_w_m_driver_a_v_r.html',1,'audio_tools']]],
+ ['pwmdriveresp32_1807',['PWMDriverESP32',['../classaudio__tools_1_1_p_w_m_driver_e_s_p32.html',1,'audio_tools']]],
+ ['pwmdrivermbed_1808',['PWMDriverMBED',['../classaudio__tools_1_1_p_w_m_driver_m_b_e_d.html',1,'audio_tools']]],
+ ['pwmdriverrenesas_1809',['PWMDriverRenesas',['../classaudio__tools_1_1_p_w_m_driver_renesas.html',1,'audio_tools']]],
+ ['pwmdriverstm32_1810',['PWMDriverSTM32',['../classaudio__tools_1_1_p_w_m_driver_s_t_m32.html',1,'audio_tools']]]
];
diff --git a/search/enums_0.js b/search/enums_0.js
index 8d153e93d1..ee1399e156 100644
--- a/search/enums_0.js
+++ b/search/enums_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['audioformat_2860',['AudioFormat',['../group__video.html#ga4fcb46758e1356d5ff7c6523c52810c1',1,'audio_tools']]]
+ ['audioformat_2865',['AudioFormat',['../group__video.html#ga4fcb46758e1356d5ff7c6523c52810c1',1,'audio_tools']]]
];
diff --git a/search/enums_1.js b/search/enums_1.js
index 91a4c1fca0..cdb1061e07 100644
--- a/search/enums_1.js
+++ b/search/enums_1.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['chunk_5fresult_2861',['chunk_result',['../namespaceaudio__tools.html#a6a59ed379dc716d3d4f19e585d96abcc',1,'audio_tools']]]
+ ['chunk_5fresult_2866',['chunk_result',['../namespaceaudio__tools.html#a6a59ed379dc716d3d4f19e585d96abcc',1,'audio_tools']]]
];
diff --git a/search/enums_2.js b/search/enums_2.js
index 9333d6a3c6..2a2538a385 100644
--- a/search/enums_2.js
+++ b/search/enums_2.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['g7xxcodec_5fe_2862',['G7xxCODEC_e',['../namespaceaudio__tools.html#a44f4d7d26b9f81198ebefe8c302ee30c',1,'audio_tools']]]
+ ['g7xxcodec_5fe_2867',['G7xxCODEC_e',['../namespaceaudio__tools.html#a44f4d7d26b9f81198ebefe8c302ee30c',1,'audio_tools']]]
];
diff --git a/search/enums_3.js b/search/enums_3.js
index 4a252d438f..4af634a1c3 100644
--- a/search/enums_3.js
+++ b/search/enums_3.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['i2sformat_2863',['I2SFormat',['../namespaceaudio__tools.html#a720616ce211566d808f3e441f9b18cda',1,'audio_tools']]],
- ['i2ssignaltype_2864',['I2SSignalType',['../namespaceaudio__tools.html#a1d3846b210a1698eaf7cdb7258fcc3e1',1,'audio_tools']]],
- ['id3typeselection_2865',['ID3TypeSelection',['../group__metadata.html#ga27477aa4d162c65da12c7ffd964f5779',1,'audio_tools']]]
+ ['i2sformat_2868',['I2SFormat',['../namespaceaudio__tools.html#a720616ce211566d808f3e441f9b18cda',1,'audio_tools']]],
+ ['i2ssignaltype_2869',['I2SSignalType',['../namespaceaudio__tools.html#a1d3846b210a1698eaf7cdb7258fcc3e1',1,'audio_tools']]],
+ ['id3typeselection_2870',['ID3TypeSelection',['../group__metadata.html#ga27477aa4d162c65da12c7ffd964f5779',1,'audio_tools']]]
];
diff --git a/search/enums_4.js b/search/enums_4.js
index 32fc003ec3..1db61ef603 100644
--- a/search/enums_4.js
+++ b/search/enums_4.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['memorytype_2866',['MemoryType',['../group__basic.html#ga462bfa9dfea81692463ecb192183dd01',1,'audio_tools']]],
- ['metadatatype_2867',['MetaDataType',['../group__metadata.html#ga6760f423085f8a63374b1e2db102a6d1',1,'audio_tools']]],
- ['musicalnotesenum_2868',['MusicalNotesEnum',['../group__tools.html#ga9715fceb4c700e7e4a610400464e9396',1,'audio_tools::MusicalNotes']]]
+ ['memorytype_2871',['MemoryType',['../group__basic.html#ga462bfa9dfea81692463ecb192183dd01',1,'audio_tools']]],
+ ['metadatatype_2872',['MetaDataType',['../group__metadata.html#ga6760f423085f8a63374b1e2db102a6d1',1,'audio_tools']]],
+ ['musicalnotesenum_2873',['MusicalNotesEnum',['../group__tools.html#ga9715fceb4c700e7e4a610400464e9396',1,'audio_tools::MusicalNotes']]]
];
diff --git a/search/enums_5.js b/search/enums_5.js
index a5e2349650..a180cbcaad 100644
--- a/search/enums_5.js
+++ b/search/enums_5.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['parsestatus_2869',['ParseStatus',['../group__metadata-id3.html#ga1857f5fa1f018989102d5a5e3c5cf182',1,'audio_tools']]]
+ ['parsestatus_2874',['ParseStatus',['../group__metadata-id3.html#ga1857f5fa1f018989102d5a5e3c5cf182',1,'audio_tools']]]
];
diff --git a/search/enums_6.js b/search/enums_6.js
index 92ce4b32aa..d8ddee5235 100644
--- a/search/enums_6.js
+++ b/search/enums_6.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['rxtxmode_2870',['RxTxMode',['../group__basic.html#ga8cbd91a8bac9b5ab425112be1620eb49',1,'audio_tools']]]
+ ['rxtxmode_2875',['RxTxMode',['../group__basic.html#ga8cbd91a8bac9b5ab425112be1620eb49',1,'audio_tools']]]
];
diff --git a/search/enums_7.js b/search/enums_7.js
index cb2ba60085..d06de880d7 100644
--- a/search/enums_7.js
+++ b/search/enums_7.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['timeunit_2871',['TimeUnit',['../group__basic.html#gadd9fe45e09605eee3e4a39c8a5c4476d',1,'audio_tools']]]
+ ['timeunit_2876',['TimeUnit',['../group__basic.html#gadd9fe45e09605eee3e4a39c8a5c4476d',1,'audio_tools']]]
];
diff --git a/search/files_0.js b/search/files_0.js
index 168571955c..9e4bc4fd63 100644
--- a/search/files_0.js
+++ b/search/files_0.js
@@ -1,9 +1,9 @@
var searchData=
[
- ['audioa2dp_2eh_2005',['AudioA2DP.h',['../_audio_a2_d_p_8h.html',1,'']]],
- ['audioesp32ulp_2eh_2006',['AudioESP32ULP.h',['../_audio_e_s_p32_u_l_p_8h.html',1,'']]],
- ['audioformat_2eh_2007',['AudioFormat.h',['../_audio_format_8h.html',1,'']]],
- ['audioruntime_2ecpp_2008',['AudioRuntime.cpp',['../_audio_runtime_8cpp.html',1,'']]],
- ['audiospdif_2eh_2009',['AudioSPDIF.h',['../_audio_s_p_d_i_f_8h.html',1,'']]],
- ['audiotools_2eh_2010',['AudioTools.h',['../_audio_tools_8h.html',1,'']]]
+ ['audioa2dp_2eh_2007',['AudioA2DP.h',['../_audio_a2_d_p_8h.html',1,'']]],
+ ['audioesp32ulp_2eh_2008',['AudioESP32ULP.h',['../_audio_e_s_p32_u_l_p_8h.html',1,'']]],
+ ['audioformat_2eh_2009',['AudioFormat.h',['../_audio_format_8h.html',1,'']]],
+ ['audioruntime_2ecpp_2010',['AudioRuntime.cpp',['../_audio_runtime_8cpp.html',1,'']]],
+ ['audiospdif_2eh_2011',['AudioSPDIF.h',['../_audio_s_p_d_i_f_8h.html',1,'']]],
+ ['audiotools_2eh_2012',['AudioTools.h',['../_audio_tools_8h.html',1,'']]]
];
diff --git a/search/files_1.js b/search/files_1.js
index 06afd914eb..492afc1b82 100644
--- a/search/files_1.js
+++ b/search/files_1.js
@@ -1,11 +1,11 @@
var searchData=
[
- ['codecaptx_2eh_2011',['CodecAPTX.h',['../_codec_a_p_t_x_8h.html',1,'']]],
- ['codeccodec2_2eh_2012',['CodecCodec2.h',['../_codec_codec2_8h.html',1,'']]],
- ['codecflac_2eh_2013',['CodecFLAC.h',['../_codec_f_l_a_c_8h.html',1,'']]],
- ['codecgsm_2eh_2014',['CodecGSM.h',['../_codec_g_s_m_8h.html',1,'']]],
- ['codecilbc_2eh_2015',['CodecILBC.h',['../_codec_i_l_b_c_8h.html',1,'']]],
- ['codeclc3_2eh_2016',['CodecLC3.h',['../_codec_l_c3_8h.html',1,'']]],
- ['codecsbc_2eh_2017',['CodecSBC.h',['../_codec_s_b_c_8h.html',1,'']]],
- ['containerbinary_2eh_2018',['ContainerBinary.h',['../_container_binary_8h.html',1,'']]]
+ ['codecaptx_2eh_2013',['CodecAPTX.h',['../_codec_a_p_t_x_8h.html',1,'']]],
+ ['codeccodec2_2eh_2014',['CodecCodec2.h',['../_codec_codec2_8h.html',1,'']]],
+ ['codecflac_2eh_2015',['CodecFLAC.h',['../_codec_f_l_a_c_8h.html',1,'']]],
+ ['codecgsm_2eh_2016',['CodecGSM.h',['../_codec_g_s_m_8h.html',1,'']]],
+ ['codecilbc_2eh_2017',['CodecILBC.h',['../_codec_i_l_b_c_8h.html',1,'']]],
+ ['codeclc3_2eh_2018',['CodecLC3.h',['../_codec_l_c3_8h.html',1,'']]],
+ ['codecsbc_2eh_2019',['CodecSBC.h',['../_codec_s_b_c_8h.html',1,'']]],
+ ['containerbinary_2eh_2020',['ContainerBinary.h',['../_container_binary_8h.html',1,'']]]
];
diff --git a/search/files_2.js b/search/files_2.js
index 26ad0d0f8a..2d9eb26d8a 100644
--- a/search/files_2.js
+++ b/search/files_2.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['fftwindows_2eh_2019',['FFTWindows.h',['../_f_f_t_windows_8h.html',1,'']]]
+ ['fftwindows_2eh_2021',['FFTWindows.h',['../_f_f_t_windows_8h.html',1,'']]]
];
diff --git a/search/files_3.js b/search/files_3.js
index ec8277fe1d..2fa07fc224 100644
--- a/search/files_3.js
+++ b/search/files_3.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['noarduino_2eh_2020',['NoArduino.h',['../_no_arduino_8h.html',1,'']]]
+ ['noarduino_2eh_2022',['NoArduino.h',['../_no_arduino_8h.html',1,'']]]
];
diff --git a/search/functions_0.js b/search/functions_0.js
index 99194cdeae..f132d7f060 100644
--- a/search/functions_0.js
+++ b/search/functions_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['_5f_5fattribute_5f_5f_2021',['__attribute__',['../namespaceaudio__tools.html#ab7743055f95384ee18ec4ef8dcd381d3',1,'audio_tools']]]
+ ['_5f_5fattribute_5f_5f_2023',['__attribute__',['../namespaceaudio__tools.html#ab7743055f95384ee18ec4ef8dcd381d3',1,'audio_tools']]]
];
diff --git a/search/functions_1.js b/search/functions_1.js
index 8a796e89e6..ef5e5e5cba 100644
--- a/search/functions_1.js
+++ b/search/functions_1.js
@@ -1,69 +1,71 @@
var searchData=
[
- ['a2dp_5fstream_5fsink_5fsound_5fdata_2022',['a2dp_stream_sink_sound_data',['../classaudio__tools_1_1_a2_d_p_stream.html#a5fd40866db400c20a40d373779151f7a',1,'audio_tools::A2DPStream']]],
- ['aacdecoderhelix_2023',['AACDecoderHelix',['../classaudio__tools_1_1_a_a_c_decoder_helix.html#ae8a31659659bbde196ff53740db5c34a',1,'audio_tools::AACDecoderHelix::AACDecoderHelix(Print &out_stream)'],['../classaudio__tools_1_1_a_a_c_decoder_helix.html#ae93ecbd0ccdbdc6d745574e0b1da0e0c',1,'audio_tools::AACDecoderHelix::AACDecoderHelix(Print &out_stream, AudioInfoSupport &bi)']]],
- ['actionheadphonedetection_2024',['actionHeadphoneDetection',['../classaudio__tools_1_1_audio_kit_stream.html#a649ac2c61ceb08c2b2290898512a413a',1,'audio_tools::AudioKitStream']]],
- ['actionstart_2025',['actionStart',['../classaudio__tools_1_1_audio_kit_stream.html#a9124340ae513f2575531cba6e490a4db',1,'audio_tools::AudioKitStream']]],
- ['actionstartstop_2026',['actionStartStop',['../classaudio__tools_1_1_audio_kit_stream.html#a11e789f0bbb3771a9af4f1bfd3c3a33f',1,'audio_tools::AudioKitStream']]],
- ['actionstop_2027',['actionStop',['../classaudio__tools_1_1_audio_kit_stream.html#ac6263321578e2d73132c83b55b2ed14d',1,'audio_tools::AudioKitStream']]],
- ['actionvolumedown_2028',['actionVolumeDown',['../classaudio__tools_1_1_audio_kit_stream.html#a0bcf39924799e8c9b98420f82754c54f',1,'audio_tools::AudioKitStream']]],
- ['actionvolumeup_2029',['actionVolumeUp',['../classaudio__tools_1_1_audio_kit_stream.html#a89f3eeb9cbb93f78e8934bda2b390408',1,'audio_tools::AudioKitStream']]],
- ['active_2030',['active',['../classaudio__tools_1_1_audio_effect.html#a3708b79a6e03c964327c2988b2a70668',1,'audio_tools::AudioEffect']]],
- ['add_2031',['add',['../classaudio__tools_1_1_audio_actions.html#a251a13b88d6b778ec1f5babf5cf0a894',1,'audio_tools::AudioActions::add()'],['../classaudio__tools_1_1_input_merge.html#ae191d1c122ecaaf42df5f9e707ca5645',1,'audio_tools::InputMerge::add()'],['../classaudio__tools_1_1_input_mixer.html#a1356c580c466754a5f6afeb4389b9672',1,'audio_tools::InputMixer::add()'],['../classaudio__tools_1_1_multi_output.html#a66824420addd2a9aaa989c5ac5462072',1,'audio_tools::MultiOutput::add(AudioStream &stream)'],['../classaudio__tools_1_1_multi_output.html#a19b249b67fdac8e965087eab883b26ab',1,'audio_tools::MultiOutput::add(AudioOutput &out)'],['../classaudio__tools_1_1_audio_actions.html#aa79cf8ec4645005839c98dbe25e0864d',1,'audio_tools::AudioActions::add()'],['../classaudio__tools_1_1_str.html#a6b0504614868c1f5900a52eb852ab454',1,'audio_tools::Str::add(const char c)'],['../classaudio__tools_1_1_str.html#a84499f0dfa1c8794f5c8b47cfb1019f6',1,'audio_tools::Str::add(const char *append)'],['../classaudio__tools_1_1_str.html#ada7f3f476500471b1d768531442f7d21',1,'audio_tools::Str::add(double value, int precision=2, int withd=0)'],['../classaudio__tools_1_1_str.html#af145c57539dd93a7875d325160f3ccf3',1,'audio_tools::Str::add(int value)']]],
- ['addaction_2032',['addAction',['../classaudio__tools_1_1_audio_kit_stream.html#a08e8001d4d1048b8fd9e13a5e968d453',1,'audio_tools::AudioKitStream::addAction(int pin, void(*action)(bool, int, void *), void *ref=nullptr)'],['../classaudio__tools_1_1_audio_kit_stream.html#a24fac46b019688e1b0993569912128a1',1,'audio_tools::AudioKitStream::addAction(int pin, void(*action)(bool, int, void *), AudioActions::ActiveLogic activeLogic, void *ref=nullptr)']]],
- ['addcolumnbar_2033',['addColumnBar',['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a4a9868c8067918772f7f48b33c36114a',1,'audio_tools::LEDOutputUnoR4::addColumnBar()'],['../classaudio__tools_1_1_l_e_d_output.html#a4a9868c8067918772f7f48b33c36114a',1,'audio_tools::LEDOutput::addColumnBar()']]],
- ['addeffect_2034',['addEffect',['../classaudio__tools_1_1_audio_effect_common.html#a8c1b8bfcd46d399503e45d49c32ce087',1,'audio_tools::AudioEffectCommon::addEffect(AudioEffect &effect)'],['../classaudio__tools_1_1_audio_effect_common.html#a76977e2ce53e1e0cb66e2dc76eb34500',1,'audio_tools::AudioEffectCommon::addEffect(AudioEffect *effect)'],['../classaudio__tools_1_1_audio_effects.html#a8c1b8bfcd46d399503e45d49c32ce087',1,'audio_tools::AudioEffects::addEffect(AudioEffect &effect)'],['../classaudio__tools_1_1_audio_effects.html#a76977e2ce53e1e0cb66e2dc76eb34500',1,'audio_tools::AudioEffects::addEffect(AudioEffect *effect)'],['../classaudio__tools_1_1_audio_effect_stream_t.html#a8c1b8bfcd46d399503e45d49c32ce087',1,'audio_tools::AudioEffectStreamT::addEffect(AudioEffect &effect)'],['../classaudio__tools_1_1_audio_effect_stream_t.html#a76977e2ce53e1e0cb66e2dc76eb34500',1,'audio_tools::AudioEffectStreamT::addEffect(AudioEffect *effect)']]],
- ['addemptycolumn_2035',['addEmptyColumn',['../classaudio__tools_1_1_l_e_d_output.html#a69df0fad693e4f220447aa53ca24994e',1,'audio_tools::LEDOutput::addEmptyColumn()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a69df0fad693e4f220447aa53ca24994e',1,'audio_tools::LEDOutputUnoR4::addEmptyColumn()']]],
- ['addoutput_2036',['addOutput',['../classaudio__tools_1_1_channel_split_output.html#ac9b8f797c4afcb81d3b021db21f2adaf',1,'audio_tools::ChannelSplitOutput']]],
- ['addpeer_2037',['addPeer',['../classaudio__tools_1_1_e_s_p_now_stream.html#aa4e3e1a3203215d33273f6e68a00c281',1,'audio_tools::ESPNowStream::addPeer(esp_now_peer_info_t &peer)'],['../classaudio__tools_1_1_e_s_p_now_stream.html#a698e82ab7c77d5d37805864f7db3f07b',1,'audio_tools::ESPNowStream::addPeer(const char *address)']]],
- ['addpeers_2038',['addPeers',['../classaudio__tools_1_1_e_s_p_now_stream.html#a8288d5243eafb638d5501e5deb714ae1',1,'audio_tools::ESPNowStream']]],
- ['addrequestheader_2039',['addRequestHeader',['../classaudio__tools_1_1_http_request.html#ad3dc068c14d312a8315248f59675ace3',1,'audio_tools::HttpRequest::addRequestHeader()'],['../classaudio__tools_1_1_u_r_l_stream.html#ad3dc068c14d312a8315248f59675ace3',1,'audio_tools::URLStream::addRequestHeader()']]],
- ['address_2040',['address',['../classaudio__tools_1_1_n_buffer.html#a225f852d959563be49658300547343b5',1,'audio_tools::NBuffer::address()'],['../classaudio__tools_1_1_ring_buffer_file.html#a001493d22a88d48242cc331551def442',1,'audio_tools::RingBufferFile::address()'],['../classaudio__tools_1_1_ring_buffer.html#a8790df7b9c12234348cad32e5652de5a',1,'audio_tools::RingBuffer::address()'],['../classaudio__tools_1_1_base_buffer.html#a1630a475441016638ee45edc5c3074f5',1,'audio_tools::BaseBuffer::address()'],['../classaudio__tools_1_1_variable_speed_ring_buffer.html#a8790df7b9c12234348cad32e5652de5a',1,'audio_tools::VariableSpeedRingBuffer::address()'],['../classaudio__tools_1_1_single_buffer.html#a001493d22a88d48242cc331551def442',1,'audio_tools::SingleBuffer::address()'],['../classaudio__tools_1_1_variable_speed_ring_buffer_simple.html#a8790df7b9c12234348cad32e5652de5a',1,'audio_tools::VariableSpeedRingBufferSimple::address()'],['../classaudio__tools_1_1_variable_speed_ring_buffer180.html#a8790df7b9c12234348cad32e5652de5a',1,'audio_tools::VariableSpeedRingBuffer180::address()']]],
- ['addurl_2041',['addUrl',['../classaudio__tools_1_1_u_r_l_loader.html#a9c61bc6325af0c09c4be5f0ed835327c',1,'audio_tools::URLLoader']]],
- ['allocate_2042',['allocate',['../classdsp__memory__manager.html#a61444acca87cb94cc35f366fa09bcc46',1,'dsp_memory_manager']]],
- ['allocatebuffermemory_2043',['allocateBufferMemory',['../classaudio__tools_1_1_filter_effect_base.html#ab7eb1ffa88791165e943ff78fc23d1a9',1,'audio_tools::FilterEffectBase']]],
- ['allocatefloatbuffer_2044',['allocateFloatBuffer',['../classaudio__tools_1_1_faust_stream.html#adf61fad72c5b046b573970f6bc7f9431',1,'audio_tools::FaustStream']]],
- ['allocatememory_2045',['allocateMemory',['../classaudio__tools_1_1_modulation_base_class.html#ac8e075786942ccc8bad93500de69a2b8',1,'audio_tools::ModulationBaseClass']]],
- ['analogaudiostream_2046',['AnalogAudioStream',['../classaudio__tools_1_1_analog_audio_stream.html#a88bb3966d8d45a746454c48d2c3ff655',1,'audio_tools::AnalogAudioStream']]],
- ['analogconfigesp32_2047',['AnalogConfigESP32',['../classaudio__tools_1_1_analog_config_e_s_p32.html#a113585d54d159147ca5990b10b53ba97',1,'audio_tools::AnalogConfigESP32::AnalogConfigESP32(const AnalogConfigESP32 &cfg)=default'],['../classaudio__tools_1_1_analog_config_e_s_p32.html#aff99b51eee9d73b4f90e18ccc3091a13',1,'audio_tools::AnalogConfigESP32::AnalogConfigESP32(RxTxMode rxtxMode=TX_MODE)']]],
- ['analogconfigesp32v1_2048',['AnalogConfigESP32V1',['../classaudio__tools_1_1_analog_config_e_s_p32_v1.html#af45b2259737bc97bfb6a9ee8739d09ea',1,'audio_tools::AnalogConfigESP32V1::AnalogConfigESP32V1(RxTxMode rxtxMode=TX_MODE)'],['../classaudio__tools_1_1_analog_config_e_s_p32_v1.html#afabfeccd924838e872cc4ede1733c5e4',1,'audio_tools::AnalogConfigESP32V1::AnalogConfigESP32V1(const AnalogConfigESP32V1 &cfg)=default']]],
- ['analogconfigstd_2049',['AnalogConfigStd',['../classaudio__tools_1_1_analog_config_std.html#a3f8c35d87f8bbda58b32c8860a9e08ea',1,'audio_tools::AnalogConfigStd::AnalogConfigStd(const AnalogConfigStd &cfg)=default'],['../classaudio__tools_1_1_analog_config_std.html#aaa74bd9b3f418d0c1df6d9b5b005941a',1,'audio_tools::AnalogConfigStd::AnalogConfigStd(RxTxMode rxtxMode)']]],
- ['analogdriveresp32_2050',['AnalogDriverESP32',['../classaudio__tools_1_1_analog_driver_e_s_p32.html#a560c63a83b5e734d8c8ef5e778857ff4',1,'audio_tools::AnalogDriverESP32']]],
- ['analogdriveresp32v1_2051',['AnalogDriverESP32V1',['../classaudio__tools_1_1_analog_driver_e_s_p32_v1.html#a8e7d71e762c1337c2a860f02be8d8dac',1,'audio_tools::AnalogDriverESP32V1']]],
- ['analogdrivermbed_2052',['AnalogDriverMBED',['../classaudio__tools_1_1_analog_driver_m_b_e_d.html#aee7d4e900ce9123ab445485f8b62adf8',1,'audio_tools::AnalogDriverMBED']]],
- ['applyfilter_2053',['applyFilter',['../classaudio__tools_1_1_filter_effect_base.html#a60c520f32c579caeda6231fbdf98d7c1',1,'audio_tools::FilterEffectBase']]],
- ['array_2054',['array',['../classaudio__tools_1_1_audio_e_s_p32_f_f_t.html#a66ae48c63153a8973ad0b5b2d95f86a1',1,'audio_tools::AudioESP32FFT::array()'],['../classaudio__tools_1_1_audio_cmsis_f_f_t.html#a66ae48c63153a8973ad0b5b2d95f86a1',1,'audio_tools::AudioCmsisFFT::array()']]],
- ['as_5ffloat_2055',['as_float',['../classaudio__tools_1_1float16.html#abc5fae42069592b7ba751f7b9d70d287',1,'audio_tools::float16']]],
- ['as_5fuint_2056',['as_uint',['../classaudio__tools_1_1float16.html#aabec7129c8f05fadb8bd84a816c2181a',1,'audio_tools::float16']]],
- ['audioactions_2057',['audioActions',['../classaudio__tools_1_1_audio_kit_stream.html#a4712eb0707514d26c1f17fc09575c6ff',1,'audio_tools::AudioKitStream']]],
- ['audiodatabegin_2058',['audioDataBegin',['../classaudio__tools_1_1_audio_sync_reader.html#a0f74f8b4dd7bf8f452fb399961766846',1,'audio_tools::AudioSyncReader']]],
- ['audiodataend_2059',['audioDataEnd',['../classaudio__tools_1_1_audio_sync_reader.html#a04d064abc0bcd69e029b3c04d7f598b9',1,'audio_tools::AudioSyncReader']]],
- ['audioeffects_2060',['AudioEffects',['../classaudio__tools_1_1_audio_effects.html#a568069655f62fd8b3de0356e49538934',1,'audio_tools::AudioEffects::AudioEffects(GeneratorT &generator)'],['../classaudio__tools_1_1_audio_effects.html#acdb7c37a7d376b32348861f4a2cd8ee0',1,'audio_tools::AudioEffects::AudioEffects(Stream &input, int channels=2, float volume=1.0)'],['../classaudio__tools_1_1_audio_effects.html#a53348acbf2653799757b838fcfff1f9a',1,'audio_tools::AudioEffects::AudioEffects(AudioEffects ©)'],['../classaudio__tools_1_1_audio_effects.html#ad2f617dbd463a6174cdaf6e12b13a214',1,'audio_tools::AudioEffects::AudioEffects()=default']]],
- ['audioencoderserver_2061',['AudioEncoderServer',['../classaudio__tools_1_1_audio_encoder_server.html#af0943d471b7147ea7a8c109be5e9e7dd',1,'audio_tools::AudioEncoderServer::AudioEncoderServer(AudioEncoder *encoder, int port=80)'],['../classaudio__tools_1_1_audio_encoder_server.html#a37e39fda24859db2f03f0dd9b1e3ee58',1,'audio_tools::AudioEncoderServer::AudioEncoderServer(AudioEncoder *encoder, const char *network, const char *password, int port=80)']]],
- ['audiofftbase_2062',['AudioFFTBase',['../classaudio__tools_1_1_audio_f_f_t_base.html#a737190d3d351f65b5184f7c8047a2fb7',1,'audio_tools::AudioFFTBase']]],
- ['audioformat_2063',['audioFormat',['../classaudio__tools_1_1_a_v_i_decoder.html#a5e1c60cc0458e1766542e6c5594de926',1,'audio_tools::AVIDecoder']]],
- ['audioinfo_2064',['AudioInfo',['../structaudio__tools_1_1_audio_info.html#a4cb03d08c1e6abee2be44eb0b8c05066',1,'audio_tools::AudioInfo::AudioInfo(const AudioInfo &)=default'],['../structaudio__tools_1_1_audio_info.html#aad3abfde14e116305e1144124a04b547',1,'audio_tools::AudioInfo::AudioInfo(int sampleRate, int channelCount, int bitsPerSample)'],['../structaudio__tools_1_1_audio_info.html#aed5ea168bca8ad2991118811c4c83c6d',1,'audio_tools::AudioInfo::AudioInfo()=default']]],
- ['audioinfo_2065',['audioInfo',['../classaudio__tools_1_1_vorbis_decoder.html#aed4bf0d5ce93f27242be485943d0b37d',1,'audio_tools::VorbisDecoder::audioInfo()'],['../classaudio__tools_1_1_m_p3_decoder_mini.html#a78cb84ad6d022a3d5f1b4267c4150b82',1,'audio_tools::MP3DecoderMini::audioInfo()'],['../classaudio__tools_1_1_f_l_a_c_decoder.html#a78cb84ad6d022a3d5f1b4267c4150b82',1,'audio_tools::FLACDecoder::audioInfo()'],['../classaudio__tools_1_1_streaming_decoder.html#ae0d5f156b0564368220fa8d328db3880',1,'audio_tools::StreamingDecoder::audioInfo()'],['../classaudio__tools_1_1_w_a_v_header.html#af8e73b9ee5e107a8f2636b6efc0f3572',1,'audio_tools::WAVHeader::audioInfo()']]],
- ['audioinfoex_2066',['audioInfoEx',['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#aee542fc531c6d47ab1b36ffa8e8fc721',1,'audio_tools::MP3DecoderMAD']]],
- ['audioinfoext_2067',['audioInfoExt',['../classaudio__tools_1_1_timer_callback_audio_stream.html#a22d369442a991ceb97781be3636bf203',1,'audio_tools::TimerCallbackAudioStream']]],
- ['audioplayer_2068',['AudioPlayer',['../classaudio__tools_1_1_audio_player.html#a9e7fea065b86e784a0019cf99a3cc585',1,'audio_tools::AudioPlayer::AudioPlayer()'],['../classaudio__tools_1_1_audio_player.html#af06d02e485431063eb93d1f73e7abd7b',1,'audio_tools::AudioPlayer::AudioPlayer(AudioSource &source, AudioOutput &output, AudioDecoder &decoder)'],['../classaudio__tools_1_1_audio_player.html#af866d70dfc7325dfb74d9e81fcebe638',1,'audio_tools::AudioPlayer::AudioPlayer(AudioSource &source, Print &output, AudioDecoder &decoder, AudioInfoSupport *notify=nullptr)'],['../classaudio__tools_1_1_audio_player.html#a17a8ba5d0dba0571c267ef6e53847d7e',1,'audio_tools::AudioPlayer::AudioPlayer(AudioSource &source, AudioStream &output, AudioDecoder &decoder)']]],
- ['audioserver_2069',['AudioServer',['../classaudio__tools_1_1_audio_server.html#ab7c39877dabd3014eb24ac98627ab7a0',1,'audio_tools::AudioServer::AudioServer(int port=80)'],['../classaudio__tools_1_1_audio_server.html#ac84177017ebb77f2dd98707ee47f0b4e',1,'audio_tools::AudioServer::AudioServer(const char *network, const char *password, int port=80)']]],
- ['audioserverex_2070',['AudioServerEx',['../classaudio__tools_1_1_audio_server_ex.html#aec62606e3be52a06d46cd6178e300c28',1,'audio_tools::AudioServerEx']]],
- ['audiosourceidxsd_2071',['AudioSourceIdxSD',['../classaudio__tools_1_1_audio_source_idx_s_d.html#a39194a0faaa356de2529179d83854545',1,'audio_tools::AudioSourceIdxSD']]],
- ['audiosourceidxsdfat_2072',['AudioSourceIdxSDFAT',['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#aa93d3c8fec79725f28c9adf68aeb5c78',1,'audio_tools::AudioSourceIdxSDFAT']]],
- ['audiosourceidxsdmmc_2073',['AudioSourceIdxSDMMC',['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html#ad7406c44c13168206a2f072a5c27d123',1,'audio_tools::AudioSourceIdxSDMMC']]],
- ['audiosourcelittlefs_2074',['AudioSourceLittleFS',['../classaudio__tools_1_1_audio_source_little_f_s.html#a72f68241f8bfd35bbdb5f3f0fe94d25a',1,'audio_tools::AudioSourceLittleFS']]],
- ['audiosourcesd_2075',['AudioSourceSD',['../classaudio__tools_1_1_audio_source_s_d.html#aab37cfb8e35d616335c7c56aa21ec3e6',1,'audio_tools::AudioSourceSD']]],
- ['audiosourcesdfat_2076',['AudioSourceSDFAT',['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a7305e63e4c26b444ec50b9b05c169dd4',1,'audio_tools::AudioSourceSDFAT::AudioSourceSDFAT(const char *startFilePath="/", const char *ext=".mp3", int chipSelect=PIN_CS, int speedMHz=10)'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a9fa54034dcef9ee71d7f35c919f40ec9',1,'audio_tools::AudioSourceSDFAT::AudioSourceSDFAT(const char *startFilePath, const char *ext, SdSpiConfig &config)'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a6bda4ea31c9e0982368e6063a23cabb4',1,'audio_tools::AudioSourceSDFAT::AudioSourceSDFAT(const char *startFilePath="/", const char *ext=".mp3", int chipSelect=PIN_CS, int speedMHz=10, int spi_mode=DEDICATED_SPI, bool setupIndex=true)'],['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#a0c08ec9fb4fe7670b89a3e747c349c3e',1,'audio_tools::AudioSourceIdxSDFAT::AudioSourceSDFAT()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a0c08ec9fb4fe7670b89a3e747c349c3e',1,'audio_tools::AudioSourceSDFAT::AudioSourceSDFAT()']]],
- ['audiosourcesdmmc_2077',['AudioSourceSDMMC',['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html#a9ec33b3846c90d4cfd9098535ae2ae31',1,'audio_tools::AudioSourceSDMMC']]],
- ['audiosourcespiffs_2078',['AudioSourceSPIFFS',['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html#a064ecbfe9c67c85db67266f0e6da026a',1,'audio_tools::AudioSourceSPIFFS']]],
- ['audiosourcestd_2079',['AudioSourceSTD',['../classaudio__tools_1_1_audio_source_s_t_d.html#a242edb5ddefdd20ce03542e05a254530',1,'audio_tools::AudioSourceSTD']]],
- ['audiowavserver_2080',['AudioWAVServer',['../classaudio__tools_1_1_audio_w_a_v_server.html#ac74ed9f26576493d517f58d26137b28f',1,'audio_tools::AudioWAVServer::AudioWAVServer(int port=80)'],['../classaudio__tools_1_1_audio_w_a_v_server.html#a5b341c64814f84c39a5d3e0068d697fc',1,'audio_tools::AudioWAVServer::AudioWAVServer(const char *network, const char *password, int port=80)']]],
- ['audiowavserverex_2081',['AudioWAVServerEx',['../classaudio__tools_1_1_audio_w_a_v_server_ex.html#a1544b00124e77a01a864435f05b029c4',1,'audio_tools::AudioWAVServerEx']]],
- ['available_2082',['available',['../classaudio__tools_1_1_n_buffer.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::NBuffer::available()'],['../classaudio__tools_1_1_timed_stream.html#a692e2b18b3c2452e38e3f558ad87e9a5',1,'audio_tools::TimedStream::available()'],['../classaudio__tools_1_1_generated_sound_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::GeneratedSoundStream::available()'],['../classaudio__tools_1_1_buffered_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::BufferedStream::available()'],['../classaudio__tools_1_1_converter_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::ConverterStream::available()'],['../classaudio__tools_1_1_input_merge.html#a692e2b18b3c2452e38e3f558ad87e9a5',1,'audio_tools::InputMerge::available()'],['../classaudio__tools_1_1_base_buffer.html#aebd60457902debb30b07971a16f24ebd',1,'audio_tools::BaseBuffer::available()'],['../classaudio__tools_1_1_single_buffer.html#a692e2b18b3c2452e38e3f558ad87e9a5',1,'audio_tools::SingleBuffer::available()'],['../classaudio__tools_1_1_ring_buffer.html#a512cfced3ab951dde7a9a78f1274fe63',1,'audio_tools::RingBuffer::available()'],['../classaudio__tools_1_1_ring_buffer_file.html#a692e2b18b3c2452e38e3f558ad87e9a5',1,'audio_tools::RingBufferFile::available()'],['../classaudio__tools_1_1_stream_copy_t.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::StreamCopyT::available()'],['../classaudio__tools_1_1_volume_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::VolumeStream::available()'],['../classaudio__tools_1_1_u_d_p_stream.html#a692e2b18b3c2452e38e3f558ad87e9a5',1,'audio_tools::UDPStream::available()'],['../classaudio__tools_1_1_audio_kit_stream.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::AudioKitStream::available()'],['../classaudio__tools_1_1_i2_s_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::I2SStream::available()'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::I2SDriverSTM32::available()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::I2SDriverESP8266::available()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::I2SDriverESP32V1::available()'],['../classaudio__tools_1_1_buffered_task_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::BufferedTaskStream::available()'],['../classaudio__tools_1_1_i_c_y_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::ICYStream::available()'],['../classaudio__tools_1_1_u_r_l_loader.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::URLLoader::available()'],['../classaudio__tools_1_1_variable_speed_ring_buffer.html#a512cfced3ab951dde7a9a78f1274fe63',1,'audio_tools::VariableSpeedRingBuffer::available()'],['../classaudio__tools_1_1_variable_speed_ring_buffer180.html#a512cfced3ab951dde7a9a78f1274fe63',1,'audio_tools::VariableSpeedRingBuffer180::available()'],['../classaudio__tools_1_1_variable_speed_ring_buffer_simple.html#a512cfced3ab951dde7a9a78f1274fe63',1,'audio_tools::VariableSpeedRingBufferSimple::available()'],['../classaudio__tools_1_1_tf_lite_audio_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::TfLiteAudioStream::available()']]],
- ['availablebytes_2083',['availableBytes',['../classaudio__tools_1_1_input_mixer.html#a901b9bd204a4845e3e7e61ad47ef81a2',1,'audio_tools::InputMixer']]],
- ['availableforwrite_2084',['availableForWrite',['../classaudio__tools_1_1_volume_stream.html#a6ff0d6d1b0f3f9b652c9d5298ed0863c',1,'audio_tools::VolumeStream::availableForWrite()'],['../classaudio__tools_1_1_n_buffer.html#a86aa7db83a28e2662e01c57a36681cb0',1,'audio_tools::NBuffer::availableForWrite()'],['../classaudio__tools_1_1_ring_buffer_file.html#a87b51853b7bf1bc90d9efa9f3b8d4fea',1,'audio_tools::RingBufferFile::availableForWrite()'],['../classaudio__tools_1_1_ring_buffer.html#a473a08fbb41a997860a55213bc367d44',1,'audio_tools::RingBuffer::availableForWrite()'],['../classaudio__tools_1_1_single_buffer.html#a87b51853b7bf1bc90d9efa9f3b8d4fea',1,'audio_tools::SingleBuffer::availableForWrite()'],['../classaudio__tools_1_1_base_buffer.html#a9953a7c3a981eb3a83adb4f9ecfb9ac5',1,'audio_tools::BaseBuffer::availableForWrite()'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#a86aa7db83a28e2662e01c57a36681cb0',1,'audio_tools::I2SDriverSTM32::availableForWrite()'],['../classaudio__tools_1_1_progress_stream.html#a6ff0d6d1b0f3f9b652c9d5298ed0863c',1,'audio_tools::ProgressStream::availableForWrite()'],['../classaudio__tools_1_1_measuring_stream.html#a6ff0d6d1b0f3f9b652c9d5298ed0863c',1,'audio_tools::MeasuringStream::availableForWrite()'],['../classaudio__tools_1_1_output_mixer.html#ad19e788ef2c620faad7b476ad50d7fd8',1,'audio_tools::OutputMixer::availableForWrite(int idx)'],['../classaudio__tools_1_1_output_mixer.html#a87b51853b7bf1bc90d9efa9f3b8d4fea',1,'audio_tools::OutputMixer::availableForWrite() override'],['../classaudio__tools_1_1_r_t_s_p_output.html#a86aa7db83a28e2662e01c57a36681cb0',1,'audio_tools::RTSPOutput::availableForWrite()'],['../classaudio__tools_1_1_u_d_p_stream.html#a86aa7db83a28e2662e01c57a36681cb0',1,'audio_tools::UDPStream::availableForWrite()'],['../classaudio__tools_1_1_mozzi_stream.html#a473a08fbb41a997860a55213bc367d44',1,'audio_tools::MozziStream::availableForWrite()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#a87b51853b7bf1bc90d9efa9f3b8d4fea',1,'audio_tools::AudioFFTBase::availableForWrite()'],['../classaudio__tools_1_1_i2_s_stream.html#a6ff0d6d1b0f3f9b652c9d5298ed0863c',1,'audio_tools::I2SStream::availableForWrite()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#a86aa7db83a28e2662e01c57a36681cb0',1,'audio_tools::I2SDriverESP8266::availableForWrite()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#a86aa7db83a28e2662e01c57a36681cb0',1,'audio_tools::I2SDriverESP32V1::availableForWrite()'],['../classaudio__tools_1_1_abstract_u_r_l_stream.html#a87b51853b7bf1bc90d9efa9f3b8d4fea',1,'audio_tools::AbstractURLStream::availableForWrite()'],['../classaudio__tools_1_1_variable_speed_ring_buffer.html#a473a08fbb41a997860a55213bc367d44',1,'audio_tools::VariableSpeedRingBuffer::availableForWrite()'],['../classaudio__tools_1_1_variable_speed_ring_buffer180.html#a473a08fbb41a997860a55213bc367d44',1,'audio_tools::VariableSpeedRingBuffer180::availableForWrite()'],['../classaudio__tools_1_1_variable_speed_ring_buffer_simple.html#a473a08fbb41a997860a55213bc367d44',1,'audio_tools::VariableSpeedRingBufferSimple::availableForWrite()']]],
- ['availabletowrite_2085',['availableToWrite',['../classaudio__tools_1_1_tf_lite_audio_stream.html#af3f33ecee7917f696d36797ab0ff8617',1,'audio_tools::TfLiteAudioStream']]],
- ['aviaudioinfo_2086',['aviAudioInfo',['../classaudio__tools_1_1_a_v_i_decoder.html#ae9b14384a2500a6d469ab34a4e642af6',1,'audio_tools::AVIDecoder']]],
- ['avivideoinfo_2087',['aviVideoInfo',['../classaudio__tools_1_1_a_v_i_decoder.html#aaef28edae57ceea8bfc418bd51835aaf',1,'audio_tools::AVIDecoder']]]
+ ['a2dp_5fstream_5fsink_5fsound_5fdata_2024',['a2dp_stream_sink_sound_data',['../classaudio__tools_1_1_a2_d_p_stream.html#a5fd40866db400c20a40d373779151f7a',1,'audio_tools::A2DPStream']]],
+ ['aacdecoderhelix_2025',['AACDecoderHelix',['../classaudio__tools_1_1_a_a_c_decoder_helix.html#ae8a31659659bbde196ff53740db5c34a',1,'audio_tools::AACDecoderHelix::AACDecoderHelix(Print &out_stream)'],['../classaudio__tools_1_1_a_a_c_decoder_helix.html#ae93ecbd0ccdbdc6d745574e0b1da0e0c',1,'audio_tools::AACDecoderHelix::AACDecoderHelix(Print &out_stream, AudioInfoSupport &bi)']]],
+ ['actionheadphonedetection_2026',['actionHeadphoneDetection',['../classaudio__tools_1_1_audio_kit_stream.html#a649ac2c61ceb08c2b2290898512a413a',1,'audio_tools::AudioKitStream']]],
+ ['actionstart_2027',['actionStart',['../classaudio__tools_1_1_audio_kit_stream.html#a9124340ae513f2575531cba6e490a4db',1,'audio_tools::AudioKitStream']]],
+ ['actionstartstop_2028',['actionStartStop',['../classaudio__tools_1_1_audio_kit_stream.html#a11e789f0bbb3771a9af4f1bfd3c3a33f',1,'audio_tools::AudioKitStream']]],
+ ['actionstop_2029',['actionStop',['../classaudio__tools_1_1_audio_kit_stream.html#ac6263321578e2d73132c83b55b2ed14d',1,'audio_tools::AudioKitStream']]],
+ ['actionvolumedown_2030',['actionVolumeDown',['../classaudio__tools_1_1_audio_kit_stream.html#a0bcf39924799e8c9b98420f82754c54f',1,'audio_tools::AudioKitStream']]],
+ ['actionvolumeup_2031',['actionVolumeUp',['../classaudio__tools_1_1_audio_kit_stream.html#a89f3eeb9cbb93f78e8934bda2b390408',1,'audio_tools::AudioKitStream']]],
+ ['active_2032',['active',['../classaudio__tools_1_1_audio_effect.html#a3708b79a6e03c964327c2988b2a70668',1,'audio_tools::AudioEffect']]],
+ ['add_2033',['add',['../classaudio__tools_1_1_audio_actions.html#a251a13b88d6b778ec1f5babf5cf0a894',1,'audio_tools::AudioActions::add()'],['../classaudio__tools_1_1_input_merge.html#ae191d1c122ecaaf42df5f9e707ca5645',1,'audio_tools::InputMerge::add()'],['../classaudio__tools_1_1_input_mixer.html#a1356c580c466754a5f6afeb4389b9672',1,'audio_tools::InputMixer::add()'],['../classaudio__tools_1_1_multi_output.html#a66824420addd2a9aaa989c5ac5462072',1,'audio_tools::MultiOutput::add(AudioStream &stream)'],['../classaudio__tools_1_1_multi_output.html#a19b249b67fdac8e965087eab883b26ab',1,'audio_tools::MultiOutput::add(AudioOutput &out)'],['../classaudio__tools_1_1_audio_actions.html#aa79cf8ec4645005839c98dbe25e0864d',1,'audio_tools::AudioActions::add()'],['../classaudio__tools_1_1_str.html#a6b0504614868c1f5900a52eb852ab454',1,'audio_tools::Str::add(const char c)'],['../classaudio__tools_1_1_str.html#a84499f0dfa1c8794f5c8b47cfb1019f6',1,'audio_tools::Str::add(const char *append)'],['../classaudio__tools_1_1_str.html#ada7f3f476500471b1d768531442f7d21',1,'audio_tools::Str::add(double value, int precision=2, int withd=0)'],['../classaudio__tools_1_1_str.html#af145c57539dd93a7875d325160f3ccf3',1,'audio_tools::Str::add(int value)']]],
+ ['addaction_2034',['addAction',['../classaudio__tools_1_1_audio_kit_stream.html#a08e8001d4d1048b8fd9e13a5e968d453',1,'audio_tools::AudioKitStream::addAction(int pin, void(*action)(bool, int, void *), void *ref=nullptr)'],['../classaudio__tools_1_1_audio_kit_stream.html#a24fac46b019688e1b0993569912128a1',1,'audio_tools::AudioKitStream::addAction(int pin, void(*action)(bool, int, void *), AudioActions::ActiveLogic activeLogic, void *ref=nullptr)']]],
+ ['addcolumnbar_2035',['addColumnBar',['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a4a9868c8067918772f7f48b33c36114a',1,'audio_tools::LEDOutputUnoR4::addColumnBar()'],['../classaudio__tools_1_1_l_e_d_output.html#a4a9868c8067918772f7f48b33c36114a',1,'audio_tools::LEDOutput::addColumnBar()']]],
+ ['addeffect_2036',['addEffect',['../classaudio__tools_1_1_audio_effect_common.html#a8c1b8bfcd46d399503e45d49c32ce087',1,'audio_tools::AudioEffectCommon::addEffect(AudioEffect &effect)'],['../classaudio__tools_1_1_audio_effect_common.html#a76977e2ce53e1e0cb66e2dc76eb34500',1,'audio_tools::AudioEffectCommon::addEffect(AudioEffect *effect)'],['../classaudio__tools_1_1_audio_effects.html#a8c1b8bfcd46d399503e45d49c32ce087',1,'audio_tools::AudioEffects::addEffect(AudioEffect &effect)'],['../classaudio__tools_1_1_audio_effects.html#a76977e2ce53e1e0cb66e2dc76eb34500',1,'audio_tools::AudioEffects::addEffect(AudioEffect *effect)'],['../classaudio__tools_1_1_audio_effect_stream_t.html#a8c1b8bfcd46d399503e45d49c32ce087',1,'audio_tools::AudioEffectStreamT::addEffect(AudioEffect &effect)'],['../classaudio__tools_1_1_audio_effect_stream_t.html#a76977e2ce53e1e0cb66e2dc76eb34500',1,'audio_tools::AudioEffectStreamT::addEffect(AudioEffect *effect)']]],
+ ['addemptycolumn_2037',['addEmptyColumn',['../classaudio__tools_1_1_l_e_d_output.html#a69df0fad693e4f220447aa53ca24994e',1,'audio_tools::LEDOutput::addEmptyColumn()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a69df0fad693e4f220447aa53ca24994e',1,'audio_tools::LEDOutputUnoR4::addEmptyColumn()']]],
+ ['addoutput_2038',['addOutput',['../classaudio__tools_1_1_channel_split_output.html#ac9b8f797c4afcb81d3b021db21f2adaf',1,'audio_tools::ChannelSplitOutput']]],
+ ['addpeer_2039',['addPeer',['../classaudio__tools_1_1_e_s_p_now_stream.html#aa4e3e1a3203215d33273f6e68a00c281',1,'audio_tools::ESPNowStream::addPeer(esp_now_peer_info_t &peer)'],['../classaudio__tools_1_1_e_s_p_now_stream.html#a698e82ab7c77d5d37805864f7db3f07b',1,'audio_tools::ESPNowStream::addPeer(const char *address)']]],
+ ['addpeers_2040',['addPeers',['../classaudio__tools_1_1_e_s_p_now_stream.html#a8288d5243eafb638d5501e5deb714ae1',1,'audio_tools::ESPNowStream']]],
+ ['addrequestheader_2041',['addRequestHeader',['../classaudio__tools_1_1_http_request.html#ad3dc068c14d312a8315248f59675ace3',1,'audio_tools::HttpRequest::addRequestHeader()'],['../classaudio__tools_1_1_u_r_l_stream.html#ad3dc068c14d312a8315248f59675ace3',1,'audio_tools::URLStream::addRequestHeader()']]],
+ ['address_2042',['address',['../classaudio__tools_1_1_n_buffer.html#a225f852d959563be49658300547343b5',1,'audio_tools::NBuffer::address()'],['../classaudio__tools_1_1_ring_buffer_file.html#a001493d22a88d48242cc331551def442',1,'audio_tools::RingBufferFile::address()'],['../classaudio__tools_1_1_ring_buffer.html#a8790df7b9c12234348cad32e5652de5a',1,'audio_tools::RingBuffer::address()'],['../classaudio__tools_1_1_base_buffer.html#a1630a475441016638ee45edc5c3074f5',1,'audio_tools::BaseBuffer::address()'],['../classaudio__tools_1_1_variable_speed_ring_buffer.html#a8790df7b9c12234348cad32e5652de5a',1,'audio_tools::VariableSpeedRingBuffer::address()'],['../classaudio__tools_1_1_single_buffer.html#a001493d22a88d48242cc331551def442',1,'audio_tools::SingleBuffer::address()'],['../classaudio__tools_1_1_variable_speed_ring_buffer_simple.html#a8790df7b9c12234348cad32e5652de5a',1,'audio_tools::VariableSpeedRingBufferSimple::address()'],['../classaudio__tools_1_1_variable_speed_ring_buffer180.html#a8790df7b9c12234348cad32e5652de5a',1,'audio_tools::VariableSpeedRingBuffer180::address()']]],
+ ['addurl_2043',['addUrl',['../classaudio__tools_1_1_u_r_l_loader.html#a9c61bc6325af0c09c4be5f0ed835327c',1,'audio_tools::URLLoader']]],
+ ['allocate_2044',['allocate',['../classdsp__memory__manager.html#a61444acca87cb94cc35f366fa09bcc46',1,'dsp_memory_manager']]],
+ ['allocatebuffermemory_2045',['allocateBufferMemory',['../classaudio__tools_1_1_filter_effect_base.html#ab7eb1ffa88791165e943ff78fc23d1a9',1,'audio_tools::FilterEffectBase']]],
+ ['allocatefloatbuffer_2046',['allocateFloatBuffer',['../classaudio__tools_1_1_faust_stream.html#adf61fad72c5b046b573970f6bc7f9431',1,'audio_tools::FaustStream']]],
+ ['allocatememory_2047',['allocateMemory',['../classaudio__tools_1_1_modulation_base_class.html#ac8e075786942ccc8bad93500de69a2b8',1,'audio_tools::ModulationBaseClass']]],
+ ['analogaudiostream_2048',['AnalogAudioStream',['../classaudio__tools_1_1_analog_audio_stream.html#a88bb3966d8d45a746454c48d2c3ff655',1,'audio_tools::AnalogAudioStream']]],
+ ['analogconfigesp32_2049',['AnalogConfigESP32',['../classaudio__tools_1_1_analog_config_e_s_p32.html#a113585d54d159147ca5990b10b53ba97',1,'audio_tools::AnalogConfigESP32::AnalogConfigESP32(const AnalogConfigESP32 &cfg)=default'],['../classaudio__tools_1_1_analog_config_e_s_p32.html#aff99b51eee9d73b4f90e18ccc3091a13',1,'audio_tools::AnalogConfigESP32::AnalogConfigESP32(RxTxMode rxtxMode=TX_MODE)']]],
+ ['analogconfigesp32v1_2050',['AnalogConfigESP32V1',['../classaudio__tools_1_1_analog_config_e_s_p32_v1.html#af45b2259737bc97bfb6a9ee8739d09ea',1,'audio_tools::AnalogConfigESP32V1::AnalogConfigESP32V1(RxTxMode rxtxMode=TX_MODE)'],['../classaudio__tools_1_1_analog_config_e_s_p32_v1.html#afabfeccd924838e872cc4ede1733c5e4',1,'audio_tools::AnalogConfigESP32V1::AnalogConfigESP32V1(const AnalogConfigESP32V1 &cfg)=default']]],
+ ['analogconfigstd_2051',['AnalogConfigStd',['../classaudio__tools_1_1_analog_config_std.html#a3f8c35d87f8bbda58b32c8860a9e08ea',1,'audio_tools::AnalogConfigStd::AnalogConfigStd(const AnalogConfigStd &cfg)=default'],['../classaudio__tools_1_1_analog_config_std.html#aaa74bd9b3f418d0c1df6d9b5b005941a',1,'audio_tools::AnalogConfigStd::AnalogConfigStd(RxTxMode rxtxMode)']]],
+ ['analogdriveresp32_2052',['AnalogDriverESP32',['../classaudio__tools_1_1_analog_driver_e_s_p32.html#a560c63a83b5e734d8c8ef5e778857ff4',1,'audio_tools::AnalogDriverESP32']]],
+ ['analogdriveresp32v1_2053',['AnalogDriverESP32V1',['../classaudio__tools_1_1_analog_driver_e_s_p32_v1.html#a8e7d71e762c1337c2a860f02be8d8dac',1,'audio_tools::AnalogDriverESP32V1']]],
+ ['analogdrivermbed_2054',['AnalogDriverMBED',['../classaudio__tools_1_1_analog_driver_m_b_e_d.html#aee7d4e900ce9123ab445485f8b62adf8',1,'audio_tools::AnalogDriverMBED']]],
+ ['applyfilter_2055',['applyFilter',['../classaudio__tools_1_1_filter_effect_base.html#a60c520f32c579caeda6231fbdf98d7c1',1,'audio_tools::FilterEffectBase']]],
+ ['array_2056',['array',['../classaudio__tools_1_1_audio_e_s_p32_f_f_t.html#a66ae48c63153a8973ad0b5b2d95f86a1',1,'audio_tools::AudioESP32FFT::array()'],['../classaudio__tools_1_1_audio_cmsis_f_f_t.html#a66ae48c63153a8973ad0b5b2d95f86a1',1,'audio_tools::AudioCmsisFFT::array()']]],
+ ['as_5ffloat_2057',['as_float',['../classaudio__tools_1_1float16.html#abc5fae42069592b7ba751f7b9d70d287',1,'audio_tools::float16']]],
+ ['as_5fuint_2058',['as_uint',['../classaudio__tools_1_1float16.html#aabec7129c8f05fadb8bd84a816c2181a',1,'audio_tools::float16']]],
+ ['audioactions_2059',['audioActions',['../classaudio__tools_1_1_audio_kit_stream.html#a4712eb0707514d26c1f17fc09575c6ff',1,'audio_tools::AudioKitStream']]],
+ ['audiodatabegin_2060',['audioDataBegin',['../classaudio__tools_1_1_audio_sync_reader.html#a0f74f8b4dd7bf8f452fb399961766846',1,'audio_tools::AudioSyncReader']]],
+ ['audiodataend_2061',['audioDataEnd',['../classaudio__tools_1_1_audio_sync_reader.html#a04d064abc0bcd69e029b3c04d7f598b9',1,'audio_tools::AudioSyncReader']]],
+ ['audioeffects_2062',['AudioEffects',['../classaudio__tools_1_1_audio_effects.html#a568069655f62fd8b3de0356e49538934',1,'audio_tools::AudioEffects::AudioEffects(GeneratorT &generator)'],['../classaudio__tools_1_1_audio_effects.html#acdb7c37a7d376b32348861f4a2cd8ee0',1,'audio_tools::AudioEffects::AudioEffects(Stream &input, int channels=2, float volume=1.0)'],['../classaudio__tools_1_1_audio_effects.html#a53348acbf2653799757b838fcfff1f9a',1,'audio_tools::AudioEffects::AudioEffects(AudioEffects ©)'],['../classaudio__tools_1_1_audio_effects.html#ad2f617dbd463a6174cdaf6e12b13a214',1,'audio_tools::AudioEffects::AudioEffects()=default']]],
+ ['audioencoderserver_2063',['AudioEncoderServer',['../classaudio__tools_1_1_audio_encoder_server.html#af0943d471b7147ea7a8c109be5e9e7dd',1,'audio_tools::AudioEncoderServer::AudioEncoderServer(AudioEncoder *encoder, int port=80)'],['../classaudio__tools_1_1_audio_encoder_server.html#a37e39fda24859db2f03f0dd9b1e3ee58',1,'audio_tools::AudioEncoderServer::AudioEncoderServer(AudioEncoder *encoder, const char *network, const char *password, int port=80)']]],
+ ['audiofftbase_2064',['AudioFFTBase',['../classaudio__tools_1_1_audio_f_f_t_base.html#a737190d3d351f65b5184f7c8047a2fb7',1,'audio_tools::AudioFFTBase']]],
+ ['audioformat_2065',['audioFormat',['../classaudio__tools_1_1_a_v_i_decoder.html#a5e1c60cc0458e1766542e6c5594de926',1,'audio_tools::AVIDecoder']]],
+ ['audioinfo_2066',['audioInfo',['../classaudio__tools_1_1_w_a_v_header.html#af8e73b9ee5e107a8f2636b6efc0f3572',1,'audio_tools::WAVHeader::audioInfo()'],['../classaudio__tools_1_1_vorbis_decoder.html#aed4bf0d5ce93f27242be485943d0b37d',1,'audio_tools::VorbisDecoder::audioInfo()'],['../classaudio__tools_1_1_m_p3_decoder_mini.html#a78cb84ad6d022a3d5f1b4267c4150b82',1,'audio_tools::MP3DecoderMini::audioInfo()'],['../classaudio__tools_1_1_f_l_a_c_decoder.html#a78cb84ad6d022a3d5f1b4267c4150b82',1,'audio_tools::FLACDecoder::audioInfo()']]],
+ ['audioinfo_2067',['AudioInfo',['../structaudio__tools_1_1_audio_info.html#a4cb03d08c1e6abee2be44eb0b8c05066',1,'audio_tools::AudioInfo']]],
+ ['audioinfo_2068',['audioInfo',['../classaudio__tools_1_1_streaming_decoder.html#ae0d5f156b0564368220fa8d328db3880',1,'audio_tools::StreamingDecoder']]],
+ ['audioinfo_2069',['AudioInfo',['../structaudio__tools_1_1_audio_info.html#aed5ea168bca8ad2991118811c4c83c6d',1,'audio_tools::AudioInfo::AudioInfo()=default'],['../structaudio__tools_1_1_audio_info.html#aad3abfde14e116305e1144124a04b547',1,'audio_tools::AudioInfo::AudioInfo(int sampleRate, int channelCount, int bitsPerSample)']]],
+ ['audioinfoex_2070',['audioInfoEx',['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#aee542fc531c6d47ab1b36ffa8e8fc721',1,'audio_tools::MP3DecoderMAD']]],
+ ['audioinfoext_2071',['audioInfoExt',['../classaudio__tools_1_1_timer_callback_audio_stream.html#a22d369442a991ceb97781be3636bf203',1,'audio_tools::TimerCallbackAudioStream']]],
+ ['audioplayer_2072',['AudioPlayer',['../classaudio__tools_1_1_audio_player.html#a9e7fea065b86e784a0019cf99a3cc585',1,'audio_tools::AudioPlayer::AudioPlayer()'],['../classaudio__tools_1_1_audio_player.html#af06d02e485431063eb93d1f73e7abd7b',1,'audio_tools::AudioPlayer::AudioPlayer(AudioSource &source, AudioOutput &output, AudioDecoder &decoder)'],['../classaudio__tools_1_1_audio_player.html#af866d70dfc7325dfb74d9e81fcebe638',1,'audio_tools::AudioPlayer::AudioPlayer(AudioSource &source, Print &output, AudioDecoder &decoder, AudioInfoSupport *notify=nullptr)'],['../classaudio__tools_1_1_audio_player.html#a17a8ba5d0dba0571c267ef6e53847d7e',1,'audio_tools::AudioPlayer::AudioPlayer(AudioSource &source, AudioStream &output, AudioDecoder &decoder)']]],
+ ['audioserver_2073',['AudioServer',['../classaudio__tools_1_1_audio_server.html#ac84177017ebb77f2dd98707ee47f0b4e',1,'audio_tools::AudioServer::AudioServer(const char *network, const char *password, int port=80)'],['../classaudio__tools_1_1_audio_server.html#ab7c39877dabd3014eb24ac98627ab7a0',1,'audio_tools::AudioServer::AudioServer(int port=80)']]],
+ ['audioserverex_2074',['AudioServerEx',['../classaudio__tools_1_1_audio_server_ex.html#aec62606e3be52a06d46cd6178e300c28',1,'audio_tools::AudioServerEx']]],
+ ['audiosourceidxsd_2075',['AudioSourceIdxSD',['../classaudio__tools_1_1_audio_source_idx_s_d.html#a39194a0faaa356de2529179d83854545',1,'audio_tools::AudioSourceIdxSD']]],
+ ['audiosourceidxsdfat_2076',['AudioSourceIdxSDFAT',['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#aa93d3c8fec79725f28c9adf68aeb5c78',1,'audio_tools::AudioSourceIdxSDFAT']]],
+ ['audiosourceidxsdmmc_2077',['AudioSourceIdxSDMMC',['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html#ad7406c44c13168206a2f072a5c27d123',1,'audio_tools::AudioSourceIdxSDMMC']]],
+ ['audiosourcelittlefs_2078',['AudioSourceLittleFS',['../classaudio__tools_1_1_audio_source_little_f_s.html#a72f68241f8bfd35bbdb5f3f0fe94d25a',1,'audio_tools::AudioSourceLittleFS']]],
+ ['audiosourcesd_2079',['AudioSourceSD',['../classaudio__tools_1_1_audio_source_s_d.html#aab37cfb8e35d616335c7c56aa21ec3e6',1,'audio_tools::AudioSourceSD']]],
+ ['audiosourcesdfat_2080',['AudioSourceSDFAT',['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a9fa54034dcef9ee71d7f35c919f40ec9',1,'audio_tools::AudioSourceSDFAT::AudioSourceSDFAT(const char *startFilePath, const char *ext, SdSpiConfig &config)'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a7305e63e4c26b444ec50b9b05c169dd4',1,'audio_tools::AudioSourceSDFAT::AudioSourceSDFAT(const char *startFilePath="/", const char *ext=".mp3", int chipSelect=PIN_CS, int speedMHz=10)'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a6bda4ea31c9e0982368e6063a23cabb4',1,'audio_tools::AudioSourceSDFAT::AudioSourceSDFAT(const char *startFilePath="/", const char *ext=".mp3", int chipSelect=PIN_CS, int speedMHz=10, int spi_mode=DEDICATED_SPI, bool setupIndex=true)'],['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#a0c08ec9fb4fe7670b89a3e747c349c3e',1,'audio_tools::AudioSourceIdxSDFAT::AudioSourceSDFAT()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a0c08ec9fb4fe7670b89a3e747c349c3e',1,'audio_tools::AudioSourceSDFAT::AudioSourceSDFAT()']]],
+ ['audiosourcesdmmc_2081',['AudioSourceSDMMC',['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html#a9ec33b3846c90d4cfd9098535ae2ae31',1,'audio_tools::AudioSourceSDMMC']]],
+ ['audiosourcespiffs_2082',['AudioSourceSPIFFS',['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html#a064ecbfe9c67c85db67266f0e6da026a',1,'audio_tools::AudioSourceSPIFFS']]],
+ ['audiosourcestd_2083',['AudioSourceSTD',['../classaudio__tools_1_1_audio_source_s_t_d.html#a242edb5ddefdd20ce03542e05a254530',1,'audio_tools::AudioSourceSTD']]],
+ ['audiowavserver_2084',['AudioWAVServer',['../classaudio__tools_1_1_audio_w_a_v_server.html#ac74ed9f26576493d517f58d26137b28f',1,'audio_tools::AudioWAVServer::AudioWAVServer(int port=80)'],['../classaudio__tools_1_1_audio_w_a_v_server.html#a5b341c64814f84c39a5d3e0068d697fc',1,'audio_tools::AudioWAVServer::AudioWAVServer(const char *network, const char *password, int port=80)']]],
+ ['audiowavserverex_2085',['AudioWAVServerEx',['../classaudio__tools_1_1_audio_w_a_v_server_ex.html#a1544b00124e77a01a864435f05b029c4',1,'audio_tools::AudioWAVServerEx']]],
+ ['available_2086',['available',['../classaudio__tools_1_1_u_d_p_stream.html#a692e2b18b3c2452e38e3f558ad87e9a5',1,'audio_tools::UDPStream::available()'],['../classaudio__tools_1_1_timed_stream.html#a692e2b18b3c2452e38e3f558ad87e9a5',1,'audio_tools::TimedStream::available()'],['../classaudio__tools_1_1_generated_sound_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::GeneratedSoundStream::available()'],['../classaudio__tools_1_1_buffered_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::BufferedStream::available()'],['../classaudio__tools_1_1_converter_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::ConverterStream::available()'],['../classaudio__tools_1_1_input_merge.html#a692e2b18b3c2452e38e3f558ad87e9a5',1,'audio_tools::InputMerge::available()'],['../classaudio__tools_1_1_base_buffer.html#aebd60457902debb30b07971a16f24ebd',1,'audio_tools::BaseBuffer::available()'],['../classaudio__tools_1_1_single_buffer.html#a692e2b18b3c2452e38e3f558ad87e9a5',1,'audio_tools::SingleBuffer::available()'],['../classaudio__tools_1_1_ring_buffer.html#a512cfced3ab951dde7a9a78f1274fe63',1,'audio_tools::RingBuffer::available()'],['../classaudio__tools_1_1_ring_buffer_file.html#a692e2b18b3c2452e38e3f558ad87e9a5',1,'audio_tools::RingBufferFile::available()'],['../classaudio__tools_1_1_n_buffer.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::NBuffer::available()'],['../classaudio__tools_1_1_stream_copy_t.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::StreamCopyT::available()'],['../classaudio__tools_1_1_volume_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::VolumeStream::available()'],['../classaudio__tools_1_1_audio_kit_stream.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::AudioKitStream::available()'],['../classaudio__tools_1_1_i2_s_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::I2SStream::available()'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::I2SDriverSTM32::available()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::I2SDriverESP8266::available()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::I2SDriverESP32V1::available()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::I2SDriverESP32::available()'],['../classaudio__tools_1_1_buffered_task_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::BufferedTaskStream::available()'],['../classaudio__tools_1_1_i_c_y_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::ICYStream::available()'],['../classaudio__tools_1_1_u_r_l_loader.html#a4549a76725f2e4c013e4d57018366109',1,'audio_tools::URLLoader::available()'],['../classaudio__tools_1_1_variable_speed_ring_buffer.html#a512cfced3ab951dde7a9a78f1274fe63',1,'audio_tools::VariableSpeedRingBuffer::available()'],['../classaudio__tools_1_1_variable_speed_ring_buffer180.html#a512cfced3ab951dde7a9a78f1274fe63',1,'audio_tools::VariableSpeedRingBuffer180::available()'],['../classaudio__tools_1_1_variable_speed_ring_buffer_simple.html#a512cfced3ab951dde7a9a78f1274fe63',1,'audio_tools::VariableSpeedRingBufferSimple::available()'],['../classaudio__tools_1_1_tf_lite_audio_stream.html#afbb59a2f946191d7cf2a5c0a00b29ec2',1,'audio_tools::TfLiteAudioStream::available()']]],
+ ['availablebytes_2087',['availableBytes',['../classaudio__tools_1_1_input_mixer.html#a901b9bd204a4845e3e7e61ad47ef81a2',1,'audio_tools::InputMixer']]],
+ ['availableforwrite_2088',['availableForWrite',['../classaudio__tools_1_1_volume_stream.html#a6ff0d6d1b0f3f9b652c9d5298ed0863c',1,'audio_tools::VolumeStream::availableForWrite()'],['../classaudio__tools_1_1_n_buffer.html#a86aa7db83a28e2662e01c57a36681cb0',1,'audio_tools::NBuffer::availableForWrite()'],['../classaudio__tools_1_1_ring_buffer_file.html#a87b51853b7bf1bc90d9efa9f3b8d4fea',1,'audio_tools::RingBufferFile::availableForWrite()'],['../classaudio__tools_1_1_ring_buffer.html#a473a08fbb41a997860a55213bc367d44',1,'audio_tools::RingBuffer::availableForWrite()'],['../classaudio__tools_1_1_single_buffer.html#a87b51853b7bf1bc90d9efa9f3b8d4fea',1,'audio_tools::SingleBuffer::availableForWrite()'],['../classaudio__tools_1_1_base_buffer.html#a9953a7c3a981eb3a83adb4f9ecfb9ac5',1,'audio_tools::BaseBuffer::availableForWrite()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#a86aa7db83a28e2662e01c57a36681cb0',1,'audio_tools::I2SDriverESP8266::availableForWrite()'],['../classaudio__tools_1_1_progress_stream.html#a6ff0d6d1b0f3f9b652c9d5298ed0863c',1,'audio_tools::ProgressStream::availableForWrite()'],['../classaudio__tools_1_1_measuring_stream.html#a6ff0d6d1b0f3f9b652c9d5298ed0863c',1,'audio_tools::MeasuringStream::availableForWrite()'],['../classaudio__tools_1_1_output_mixer.html#ad19e788ef2c620faad7b476ad50d7fd8',1,'audio_tools::OutputMixer::availableForWrite(int idx)'],['../classaudio__tools_1_1_output_mixer.html#a87b51853b7bf1bc90d9efa9f3b8d4fea',1,'audio_tools::OutputMixer::availableForWrite() override'],['../classaudio__tools_1_1_r_t_s_p_output.html#a86aa7db83a28e2662e01c57a36681cb0',1,'audio_tools::RTSPOutput::availableForWrite()'],['../classaudio__tools_1_1_u_d_p_stream.html#a86aa7db83a28e2662e01c57a36681cb0',1,'audio_tools::UDPStream::availableForWrite()'],['../classaudio__tools_1_1_mozzi_stream.html#a473a08fbb41a997860a55213bc367d44',1,'audio_tools::MozziStream::availableForWrite()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#a87b51853b7bf1bc90d9efa9f3b8d4fea',1,'audio_tools::AudioFFTBase::availableForWrite()'],['../classaudio__tools_1_1_i2_s_stream.html#a6ff0d6d1b0f3f9b652c9d5298ed0863c',1,'audio_tools::I2SStream::availableForWrite()'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#a86aa7db83a28e2662e01c57a36681cb0',1,'audio_tools::I2SDriverSTM32::availableForWrite()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#a86aa7db83a28e2662e01c57a36681cb0',1,'audio_tools::I2SDriverESP32V1::availableForWrite()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32.html#a86aa7db83a28e2662e01c57a36681cb0',1,'audio_tools::I2SDriverESP32::availableForWrite()'],['../classaudio__tools_1_1_abstract_u_r_l_stream.html#a87b51853b7bf1bc90d9efa9f3b8d4fea',1,'audio_tools::AbstractURLStream::availableForWrite()'],['../classaudio__tools_1_1_variable_speed_ring_buffer.html#a473a08fbb41a997860a55213bc367d44',1,'audio_tools::VariableSpeedRingBuffer::availableForWrite()'],['../classaudio__tools_1_1_variable_speed_ring_buffer180.html#a473a08fbb41a997860a55213bc367d44',1,'audio_tools::VariableSpeedRingBuffer180::availableForWrite()'],['../classaudio__tools_1_1_variable_speed_ring_buffer_simple.html#a473a08fbb41a997860a55213bc367d44',1,'audio_tools::VariableSpeedRingBufferSimple::availableForWrite()']]],
+ ['availabletowrite_2089',['availableToWrite',['../classaudio__tools_1_1_tf_lite_audio_stream.html#af3f33ecee7917f696d36797ab0ff8617',1,'audio_tools::TfLiteAudioStream']]],
+ ['aviaudioinfo_2090',['aviAudioInfo',['../classaudio__tools_1_1_a_v_i_decoder.html#ae9b14384a2500a6d469ab34a4e642af6',1,'audio_tools::AVIDecoder']]],
+ ['avivideoinfo_2091',['aviVideoInfo',['../classaudio__tools_1_1_a_v_i_decoder.html#aaef28edae57ceea8bfc418bd51835aaf',1,'audio_tools::AVIDecoder']]]
];
diff --git a/search/functions_10.js b/search/functions_10.js
index c2d43c4033..40142aca39 100644
--- a/search/functions_10.js
+++ b/search/functions_10.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['queuestream_2431',['QueueStream',['../classaudio__tools_1_1_queue_stream.html#ace6de8cfb5e9e65a2334bfebab5ad02e',1,'audio_tools::QueueStream::QueueStream(int bufferSize, int bufferCount, bool autoRemoveOldestDataIfFull=false)'],['../classaudio__tools_1_1_queue_stream.html#a2c4af342bac39f9371388d08aa2f45c7',1,'audio_tools::QueueStream::QueueStream(BaseBuffer< T > &buffer)']]]
+ ['queuestream_2435',['QueueStream',['../classaudio__tools_1_1_queue_stream.html#ace6de8cfb5e9e65a2334bfebab5ad02e',1,'audio_tools::QueueStream::QueueStream(int bufferSize, int bufferCount, bool autoRemoveOldestDataIfFull=false)'],['../classaudio__tools_1_1_queue_stream.html#a2c4af342bac39f9371388d08aa2f45c7',1,'audio_tools::QueueStream::QueueStream(BaseBuffer< T > &buffer)']]]
];
diff --git a/search/functions_11.js b/search/functions_11.js
index 0eeff37c53..3f6ced7a03 100644
--- a/search/functions_11.js
+++ b/search/functions_11.js
@@ -1,48 +1,48 @@
var searchData=
[
- ['read_2432',['read',['../classaudio__tools_1_1_variable_speed_ring_buffer180.html#a97acc37c2fc08fa60479ac5b9c36e40a',1,'audio_tools::VariableSpeedRingBuffer180::read()'],['../classaudio__tools_1_1_variable_speed_ring_buffer.html#a97acc37c2fc08fa60479ac5b9c36e40a',1,'audio_tools::VariableSpeedRingBuffer::read()'],['../classaudio__tools_1_1_http_header.html#afb7d809e9617f68a1b468aba371c4ef1',1,'audio_tools::HttpHeader::read()'],['../classaudio__tools_1_1_buffered_task_stream.html#a31e8f8111a9c57b7a2be72337ab07e0e',1,'audio_tools::BufferedTaskStream::read()'],['../classaudio__tools_1_1_audio_output_with_callback.html#a3be5203f6b3374755564ef01d3aabd8c',1,'audio_tools::AudioOutputWithCallback::read()'],['../classaudio__tools_1_1_buffered_stream.html#a31e8f8111a9c57b7a2be72337ab07e0e',1,'audio_tools::BufferedStream::read()'],['../classaudio__tools_1_1_base_buffer.html#a7b3c05b1c2e4d61cad5f02afba4691cc',1,'audio_tools::BaseBuffer::read()'],['../classaudio__tools_1_1_single_buffer.html#af0249cac32fffc33491daa627905febf',1,'audio_tools::SingleBuffer::read()'],['../classaudio__tools_1_1_ring_buffer.html#a1b28d39faccd30992c1b64ddc6e21fe9',1,'audio_tools::RingBuffer::read()'],['../classaudio__tools_1_1_ring_buffer_file.html#af0249cac32fffc33491daa627905febf',1,'audio_tools::RingBufferFile::read()'],['../classaudio__tools_1_1_n_buffer.html#a97acc37c2fc08fa60479ac5b9c36e40a',1,'audio_tools::NBuffer::read()'],['../classaudio__tools_1_1_variable_speed_ring_buffer_simple.html#a97acc37c2fc08fa60479ac5b9c36e40a',1,'audio_tools::VariableSpeedRingBufferSimple::read()']]],
- ['read_5fcallback_2433',['read_callback',['../classaudio__tools_1_1_f_l_a_c_decoder.html#a68911cf564f74f1ced8081a3ad465438',1,'audio_tools::FLACDecoder']]],
- ['readarray_2434',['readArray',['../classaudio__tools_1_1_ring_buffer_file.html#a0747fdde42125f2dbddd4d84ad124678',1,'audio_tools::RingBufferFile::readArray()'],['../classaudio__tools_1_1_base_buffer.html#a163c69bc2b88421988d60f4efddb1f3f',1,'audio_tools::BaseBuffer::readArray()']]],
- ['readbytes_2435',['readBytes',['../classaudio__tools_1_1_audio_kit_stream.html#af38d1a10057f59d3374bcf400c1be036',1,'audio_tools::AudioKitStream::readBytes()'],['../classaudio__tools_1_1_volume_stream.html#a43061a6ac2343137b176333cb989ba48',1,'audio_tools::VolumeStream::readBytes()'],['../classaudio__tools_1_1_input_merge.html#a4c5c6275ddee80eb02839356b6185c0b',1,'audio_tools::InputMerge::readBytes()'],['../classaudio__tools_1_1_input_mixer.html#a4c5c6275ddee80eb02839356b6185c0b',1,'audio_tools::InputMixer::readBytes()'],['../classaudio__tools_1_1_progress_stream.html#a4c5c6275ddee80eb02839356b6185c0b',1,'audio_tools::ProgressStream::readBytes()'],['../classaudio__tools_1_1_measuring_stream.html#a4c5c6275ddee80eb02839356b6185c0b',1,'audio_tools::MeasuringStream::readBytes()'],['../classaudio__tools_1_1_buffered_stream.html#af38d1a10057f59d3374bcf400c1be036',1,'audio_tools::BufferedStream::readBytes()'],['../classaudio__tools_1_1_generated_sound_stream.html#a5a28841c35da456c0ccccbe9623c00a1',1,'audio_tools::GeneratedSoundStream::readBytes()'],['../classaudio__tools_1_1_timed_stream.html#a5a28841c35da456c0ccccbe9623c00a1',1,'audio_tools::TimedStream::readBytes()'],['../classaudio__tools_1_1_tf_lite_audio_stream.html#a6406b16cb31ad79201459cb48b1ad6f0',1,'audio_tools::TfLiteAudioStream::readBytes()'],['../classaudio__tools_1_1_r_t_s_p_source_stream.html#adf3b910d156bb3d333a6b96221bf1ff5',1,'audio_tools::RTSPSourceStream::readBytes()'],['../classaudio__tools_1_1_r_t_s_p_source_from_audio_stream.html#adf3b910d156bb3d333a6b96221bf1ff5',1,'audio_tools::RTSPSourceFromAudioStream::readBytes()'],['../classaudio__tools_1_1_e_s_p_now_stream.html#a4c5c6275ddee80eb02839356b6185c0b',1,'audio_tools::ESPNowStream::readBytes()'],['../classaudio__tools_1_1_faust_stream.html#a4c5c6275ddee80eb02839356b6185c0b',1,'audio_tools::FaustStream::readBytes()'],['../classaudio__tools_1_1_a2_d_p_stream.html#a4c5c6275ddee80eb02839356b6185c0b',1,'audio_tools::A2DPStream::readBytes()'],['../classaudio__tools_1_1_i2_s_stream.html#a2c47515c0bc629a2799a9cc22ea5e17e',1,'audio_tools::I2SStream::readBytes()'],['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#aecdbea3a6aff480653df559eb8097559',1,'audio_tools::I2SDriverNanoBLE::readBytes()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#aecdbea3a6aff480653df559eb8097559',1,'audio_tools::I2SDriverESP8266::readBytes()'],['../classaudio__tools_1_1_buffered_task_stream.html#a2c47515c0bc629a2799a9cc22ea5e17e',1,'audio_tools::BufferedTaskStream::readBytes()'],['../classaudio__tools_1_1_i_c_y_stream.html#a1df72c98d2291b9de95f8658542a483b',1,'audio_tools::ICYStream::readBytes()'],['../classaudio__tools_1_1_u_r_l_loader.html#a8920918d9e0a1390082b2e660c954c8b',1,'audio_tools::URLLoader::readBytes()'],['../classaudio__tools_1_1_equilizer3_bands.html#a4c5c6275ddee80eb02839356b6185c0b',1,'audio_tools::Equilizer3Bands::readBytes()'],['../classaudio__tools_1_1_sound_generator.html#a0ad7d4c01bd1e7045b7ee0027e5051c1',1,'audio_tools::SoundGenerator::readBytes()'],['../classaudio__tools_1_1_audio_effect_stream_t.html#a5a28841c35da456c0ccccbe9623c00a1',1,'audio_tools::AudioEffectStreamT::readBytes()'],['../classaudio__tools_1_1_analog_driver_arduino.html#a361d357290e3fab139cd3de2bebabe1b',1,'audio_tools::AnalogDriverArduino::readBytes()']]],
- ['readbytesvector_2436',['readBytesVector',['../classaudio__tools_1_1_input_mixer.html#a4af7fd645d38c04d58019ab175c1f6e2',1,'audio_tools::InputMixer']]],
- ['readframes_2437',['readFrames',['../classaudio__tools_1_1_base_buffer.html#a9a1bfa2c5cba939eed47428794683f22',1,'audio_tools::BaseBuffer']]],
- ['readnoise_2438',['readNoise',['../classaudio__tools_1_1_modulation_base_class.html#a24467c32bf72ccc3b07345a03df7c1b2',1,'audio_tools::ModulationBaseClass']]],
- ['readprotocol_2439',['readProtocol',['../classaudio__tools_1_1_audio_sync_reader.html#a33d8a11b63e981b24fe6f4bb2f5898b3',1,'audio_tools::AudioSyncReader']]],
- ['readsample_2440',['readSample',['../namespaceaudio__tools.html#a4ce58b1cf7c8f2758bd2f7ac29d8bd5d',1,'audio_tools::readSample()'],['../classaudio__tools_1_1_s_t_k_generator.html#adc79c89fc1d63b418c9f074b63f3d651',1,'audio_tools::STKGenerator::readSample()'],['../classaudio__tools_1_1_mozzi_generator.html#a041dde89254164d0ad83b1cf54bfaa6d',1,'audio_tools::MozziGenerator::readSample()'],['../classaudio__tools_1_1_sound_generator_modulation.html#a45b168302ee30ce87241d8987e5f9adf',1,'audio_tools::SoundGeneratorModulation::readSample()'],['../classaudio__tools_1_1_synthesizer.html#a3196b8713184e130cc528f812af295b9',1,'audio_tools::Synthesizer::readSample()'],['../classaudio__tools_1_1_default_synthesizer_channel.html#a4a3e93a68ae7b16f4c0e3c658d6f33b3',1,'audio_tools::DefaultSynthesizerChannel::readSample()'],['../classaudio__tools_1_1_abstract_synthesizer_channel.html#ae67870232b4db5acddcd0e80e0022621',1,'audio_tools::AbstractSynthesizerChannel::readSample()'],['../classaudio__tools_1_1_test_generator.html#a913c911a6aff6d8c9b3deb24469ea336',1,'audio_tools::TestGenerator::readSample()'],['../classaudio__tools_1_1_generator_mixer.html#adc79c89fc1d63b418c9f074b63f3d651',1,'audio_tools::GeneratorMixer::readSample()'],['../classaudio__tools_1_1_sine_from_table.html#adc79c89fc1d63b418c9f074b63f3d651',1,'audio_tools::SineFromTable::readSample()'],['../classaudio__tools_1_1_generator_from_array.html#a913c911a6aff6d8c9b3deb24469ea336',1,'audio_tools::GeneratorFromArray::readSample()'],['../classaudio__tools_1_1_generator_from_stream.html#adc79c89fc1d63b418c9f074b63f3d651',1,'audio_tools::GeneratorFromStream::readSample()'],['../classaudio__tools_1_1_silence_generator.html#adc79c89fc1d63b418c9f074b63f3d651',1,'audio_tools::SilenceGenerator::readSample()'],['../classaudio__tools_1_1_pink_noise_generator.html#adc79c89fc1d63b418c9f074b63f3d651',1,'audio_tools::PinkNoiseGenerator::readSample()'],['../classaudio__tools_1_1_white_noise_generator.html#adc79c89fc1d63b418c9f074b63f3d651',1,'audio_tools::WhiteNoiseGenerator::readSample()'],['../classaudio__tools_1_1_fast_sine_generator.html#a45b168302ee30ce87241d8987e5f9adf',1,'audio_tools::FastSineGenerator::readSample()'],['../classaudio__tools_1_1_square_wave_generator.html#a408eeda85d9e14954a97f2c80e130320',1,'audio_tools::SquareWaveGenerator::readSample()'],['../classaudio__tools_1_1_sine_wave_generator.html#a45b168302ee30ce87241d8987e5f9adf',1,'audio_tools::SineWaveGenerator::readSample()'],['../classaudio__tools_1_1_sound_generator.html#a1ff01a896ef633c0bdf60dbf1448c2db',1,'audio_tools::SoundGenerator::readSample()'],['../classaudio__tools_1_1_generator_fixed_value.html#a913c911a6aff6d8c9b3deb24469ea336',1,'audio_tools::GeneratorFixedValue::readSample()'],['../classaudio__tools_1_1_audio_effects.html#a02a8b1a055e1177e195db62f9529118f',1,'audio_tools::AudioEffects::readSample()']]],
- ['readsamples_2441',['readSamples',['../namespaceaudio__tools.html#a1d8000e66a6b1df22bc01638f587b32c',1,'audio_tools']]],
- ['readsilence_2442',['readSilence',['../classaudio__tools_1_1_audio_stream.html#a36e26f40121eda38b0042dcba026ab82',1,'audio_tools::AudioStream']]],
- ['readstream_2443',['readStream',['../classaudio__tools_1_1_wav_i_m_a_decoder.html#ab754136602e0bb22ec2be26dedd9ff50',1,'audio_tools::WavIMADecoder']]],
- ['readtable_2444',['readTable',['../classaudio__tools_1_1_modulation_base_class.html#ad5b24edb4b1f93535adf1cc9b3352654',1,'audio_tools::ModulationBaseClass']]],
- ['readtotransmit_2445',['readToTransmit',['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#a9ff6fcdbaad2f9bdb767e3a0ec479d7f',1,'audio_tools::I2SDriverSTM32']]],
- ['readvalue_2446',['readValue',['../classaudio__tools_1_1_audio_actions.html#a980bfbbeb487b1552263e29dd68fb49e',1,'audio_tools::AudioActions']]],
- ['realarray_2447',['realArray',['../classaudio__tools_1_1_audio_real_f_f_t.html#ac1f8b449991fb6c6c6ea4bc9016700db',1,'audio_tools::AudioRealFFT']]],
- ['receive_5fudp_2448',['receive_udp',['../classaudio__tools_1_1_v_b_a_n_stream.html#a4080ec5f567ff8158b1db6ff4e501122',1,'audio_tools::VBANStream']]],
- ['releasebuffers_2449',['releaseBuffers',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#af41720dc43a9eee386d65158fd167e6f',1,'audio_tools::I2SDriverNanoBLE']]],
- ['remoteip_2450',['remoteIP',['../classaudio__tools_1_1_u_d_p_stream.html#a0b594a1cd1d82b86c2dc7d66478e5508',1,'audio_tools::UDPStream']]],
- ['remoteport_2451',['remotePort',['../classaudio__tools_1_1_u_d_p_stream.html#a38a087ee6e9882860c963bd5218deec0',1,'audio_tools::UDPStream']]],
- ['remove_2452',['remove',['../classaudio__tools_1_1_str.html#ae28bed73407bfc585ca56a12503d2e34',1,'audio_tools::Str']]],
- ['removeall_2453',['removeAll',['../classaudio__tools_1_1_str.html#accb2e0871d6f6ad52053f62c58b1cc21',1,'audio_tools::Str']]],
- ['replace_2454',['replace',['../classaudio__tools_1_1_str.html#aa9ab03d53ab842a432dd332d5fe5cbfd',1,'audio_tools::Str']]],
- ['replaceall_2455',['replaceAll',['../classaudio__tools_1_1_str.html#a7bd16e5f5f215c7ff2a48ea8e4024396',1,'audio_tools::Str']]],
- ['requestdata_2456',['requestData',['../classaudio__tools_1_1_audio_sync_reader.html#a75e75472f35bebc9344bee7cfc24807f',1,'audio_tools::AudioSyncReader']]],
- ['resamplestream_2457',['ResampleStream',['../classaudio__tools_1_1_resample_stream.html#a4086fb1a96a79787cd34d990af19f0a3',1,'audio_tools::ResampleStream::ResampleStream(Print &out)'],['../classaudio__tools_1_1_resample_stream.html#af68d567deb61ebb2452d61b9e1beed8e',1,'audio_tools::ResampleStream::ResampleStream(AudioStream &io)'],['../classaudio__tools_1_1_resample_stream.html#a507e0f61ae0d0993db16e47563358bf2',1,'audio_tools::ResampleStream::ResampleStream(AudioOutput &out)'],['../classaudio__tools_1_1_resample_stream.html#aea051bc9a6fb01ba6d7706d12305045d',1,'audio_tools::ResampleStream::ResampleStream(Stream &io)']]],
- ['reset_2458',['reset',['../classaudio__tools_1_1_variable_speed_ring_buffer_simple.html#ad20897c5c8bd47f5d4005989bead0e55',1,'audio_tools::VariableSpeedRingBufferSimple::reset()'],['../classaudio__tools_1_1_n_buffer.html#ad20897c5c8bd47f5d4005989bead0e55',1,'audio_tools::NBuffer::reset()'],['../classaudio__tools_1_1_ring_buffer_file.html#aebfcdbbd0fe4efbff10b180be50ca6bc',1,'audio_tools::RingBufferFile::reset()'],['../classaudio__tools_1_1_ring_buffer.html#a7b0e029102ad38f4b814c6523aedb53d',1,'audio_tools::RingBuffer::reset()'],['../classaudio__tools_1_1_base_buffer.html#a20dcbdfbd0ec77afc802522bb7e379c1',1,'audio_tools::BaseBuffer::reset()'],['../classaudio__tools_1_1_variable_speed_ring_buffer180.html#ad20897c5c8bd47f5d4005989bead0e55',1,'audio_tools::VariableSpeedRingBuffer180::reset()'],['../classaudio__tools_1_1_variable_speed_ring_buffer.html#ad20897c5c8bd47f5d4005989bead0e55',1,'audio_tools::VariableSpeedRingBuffer::reset()'],['../classaudio__tools_1_1_single_buffer.html#aebfcdbbd0fe4efbff10b180be50ca6bc',1,'audio_tools::SingleBuffer::reset()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#ad20897c5c8bd47f5d4005989bead0e55',1,'audio_tools::AudioFFTBase::reset()']]],
- ['resetdecoder_2459',['resetDecoder',['../classaudio__tools_1_1_decoder_helix.html#afef1e91be11d5791ae90f522b46db3d7',1,'audio_tools::DecoderHelix']]],
- ['resetvolumecontrol_2460',['resetVolumeControl',['../classaudio__tools_1_1_volume_stream.html#ad1514ef02c931e4d01f1ab1cbbf6ab39',1,'audio_tools::VolumeStream']]],
- ['resize_2461',['resize',['../classaudio__tools_1_1_stream_copy_t.html#a6038284a43db2e3e343c6f517171e8fe',1,'audio_tools::StreamCopyT::resize()'],['../classaudio__tools_1_1_encoded_audio_stream.html#ada388d17b93c54a1a0f6edddbe0953ab',1,'audio_tools::EncodedAudioStream::resize(int size)'],['../classaudio__tools_1_1_encoded_audio_stream.html#a0fc3d585aa53859602ac79c9c421f2a9',1,'audio_tools::EncodedAudioStream::resize()'],['../classaudio__tools_1_1_output_mixer.html#ada388d17b93c54a1a0f6edddbe0953ab',1,'audio_tools::OutputMixer::resize()']]],
- ['resizebuffer_2462',['resizeBuffer',['../classaudio__tools_1_1_m_t_s_decoder.html#a0b6a03a856f088f8f71e2801ca449ca6',1,'audio_tools::MTSDecoder']]],
- ['respondtocommand_2463',['respondToCommand',['../classaudio__tools_1_1_tf_lite_micro_speach_writer.html#af01b0eda331abfeb05bab5aa27171ded',1,'audio_tools::TfLiteMicroSpeachWriter']]],
- ['restoreoutput_2464',['restoreOutput',['../classaudio__tools_1_1_transformation_reader.html#a5eb925b04b41ee08d4eda13dfdb0f967',1,'audio_tools::TransformationReader']]],
- ['result_2465',['result',['../classaudio__tools_1_1_audio_f_f_t_base.html#ab5b6c3f019b5eeb4dd866fc0e755750e',1,'audio_tools::AudioFFTBase']]],
- ['resultarray_2466',['resultArray',['../classaudio__tools_1_1_audio_f_f_t_base.html#aeb84cae16a79c3ee9a64aa0f7484e3fa',1,'audio_tools::AudioFFTBase']]],
- ['resultcategoryidx_2467',['resultCategoryIdx',['../classaudio__tools_1_1_tf_lite_micro_speech_recognize_commands.html#adc04882c707048b4d4c1622e2716a0a5',1,'audio_tools::TfLiteMicroSpeechRecognizeCommands']]],
- ['resultsize_2468',['resultSize',['../classaudio__tools_1_1_channel_enhancer.html#a54e17a1e0bfffc2a4586be6a1d93d808',1,'audio_tools::ChannelEnhancer']]],
- ['resulttime_2469',['resultTime',['../classaudio__tools_1_1_audio_f_f_t_base.html#a268629b3dc726c2fe5dbc1192fdede5f',1,'audio_tools::AudioFFTBase']]],
- ['resulttimebegin_2470',['resultTimeBegin',['../classaudio__tools_1_1_audio_f_f_t_base.html#a0773f84b14a3adbec0eb8ba47b2b4cb7',1,'audio_tools::AudioFFTBase']]],
- ['rewind_2471',['rewind',['../classaudio__tools_1_1_dynamic_memory_stream.html#ab8734e666421c9fe3b6380a818c6c727',1,'audio_tools::DynamicMemoryStream']]],
- ['rms_2472',['rms',['../classaudio__tools_1_1_filter_effect_base.html#ad5431041e3be93b789a5fbea3ceeaec6',1,'audio_tools::FilterEffectBase']]],
- ['rtrim_2473',['rtrim',['../classaudio__tools_1_1_str.html#a76da0d105a721fafd7ce1cd2def377dc',1,'audio_tools::Str']]],
- ['rtspoutput_2474',['RTSPOutput',['../classaudio__tools_1_1_r_t_s_p_output.html#ad34e6b6ee97452982293faf18cbd91cd',1,'audio_tools::RTSPOutput::RTSPOutput(RTSPFormatAudioTools &format, AudioEncoder &encoder, int buffer_size=1024 *2)'],['../classaudio__tools_1_1_r_t_s_p_output.html#a1b06b09496d4cd96433b8148acfbd229',1,'audio_tools::RTSPOutput::RTSPOutput(int buffer_size=1024)']]],
- ['rtspsourcefromaudiostream_2475',['RTSPSourceFromAudioStream',['../classaudio__tools_1_1_r_t_s_p_source_from_audio_stream.html#a75ae7e2f6e64915c2845a0bbe284caef',1,'audio_tools::RTSPSourceFromAudioStream']]],
- ['rtspsourcestream_2476',['RTSPSourceStream',['../classaudio__tools_1_1_r_t_s_p_source_stream.html#a8af7ebd8c24fb7350027566a2939516e',1,'audio_tools::RTSPSourceStream::RTSPSourceStream(Stream &stream, AudioInfo info)'],['../classaudio__tools_1_1_r_t_s_p_source_stream.html#ac810cf235be6c51599ce156eaffe037a',1,'audio_tools::RTSPSourceStream::RTSPSourceStream(Stream &stream, RTSPFormat &format)']]]
+ ['read_2436',['read',['../classaudio__tools_1_1_variable_speed_ring_buffer180.html#a97acc37c2fc08fa60479ac5b9c36e40a',1,'audio_tools::VariableSpeedRingBuffer180::read()'],['../classaudio__tools_1_1_variable_speed_ring_buffer.html#a97acc37c2fc08fa60479ac5b9c36e40a',1,'audio_tools::VariableSpeedRingBuffer::read()'],['../classaudio__tools_1_1_http_header.html#afb7d809e9617f68a1b468aba371c4ef1',1,'audio_tools::HttpHeader::read()'],['../classaudio__tools_1_1_buffered_task_stream.html#a31e8f8111a9c57b7a2be72337ab07e0e',1,'audio_tools::BufferedTaskStream::read()'],['../classaudio__tools_1_1_audio_output_with_callback.html#a3be5203f6b3374755564ef01d3aabd8c',1,'audio_tools::AudioOutputWithCallback::read()'],['../classaudio__tools_1_1_buffered_stream.html#a31e8f8111a9c57b7a2be72337ab07e0e',1,'audio_tools::BufferedStream::read()'],['../classaudio__tools_1_1_base_buffer.html#a7b3c05b1c2e4d61cad5f02afba4691cc',1,'audio_tools::BaseBuffer::read()'],['../classaudio__tools_1_1_single_buffer.html#af0249cac32fffc33491daa627905febf',1,'audio_tools::SingleBuffer::read()'],['../classaudio__tools_1_1_ring_buffer.html#a1b28d39faccd30992c1b64ddc6e21fe9',1,'audio_tools::RingBuffer::read()'],['../classaudio__tools_1_1_ring_buffer_file.html#af0249cac32fffc33491daa627905febf',1,'audio_tools::RingBufferFile::read()'],['../classaudio__tools_1_1_n_buffer.html#a97acc37c2fc08fa60479ac5b9c36e40a',1,'audio_tools::NBuffer::read()'],['../classaudio__tools_1_1_variable_speed_ring_buffer_simple.html#a97acc37c2fc08fa60479ac5b9c36e40a',1,'audio_tools::VariableSpeedRingBufferSimple::read()']]],
+ ['read_5fcallback_2437',['read_callback',['../classaudio__tools_1_1_f_l_a_c_decoder.html#a68911cf564f74f1ced8081a3ad465438',1,'audio_tools::FLACDecoder']]],
+ ['readarray_2438',['readArray',['../classaudio__tools_1_1_ring_buffer_file.html#a0747fdde42125f2dbddd4d84ad124678',1,'audio_tools::RingBufferFile::readArray()'],['../classaudio__tools_1_1_base_buffer.html#a163c69bc2b88421988d60f4efddb1f3f',1,'audio_tools::BaseBuffer::readArray()']]],
+ ['readbytes_2439',['readBytes',['../classaudio__tools_1_1_audio_kit_stream.html#af38d1a10057f59d3374bcf400c1be036',1,'audio_tools::AudioKitStream::readBytes()'],['../classaudio__tools_1_1_volume_stream.html#a43061a6ac2343137b176333cb989ba48',1,'audio_tools::VolumeStream::readBytes()'],['../classaudio__tools_1_1_input_merge.html#a4c5c6275ddee80eb02839356b6185c0b',1,'audio_tools::InputMerge::readBytes()'],['../classaudio__tools_1_1_input_mixer.html#a4c5c6275ddee80eb02839356b6185c0b',1,'audio_tools::InputMixer::readBytes()'],['../classaudio__tools_1_1_progress_stream.html#a4c5c6275ddee80eb02839356b6185c0b',1,'audio_tools::ProgressStream::readBytes()'],['../classaudio__tools_1_1_measuring_stream.html#a4c5c6275ddee80eb02839356b6185c0b',1,'audio_tools::MeasuringStream::readBytes()'],['../classaudio__tools_1_1_buffered_stream.html#af38d1a10057f59d3374bcf400c1be036',1,'audio_tools::BufferedStream::readBytes()'],['../classaudio__tools_1_1_generated_sound_stream.html#a5a28841c35da456c0ccccbe9623c00a1',1,'audio_tools::GeneratedSoundStream::readBytes()'],['../classaudio__tools_1_1_timed_stream.html#a5a28841c35da456c0ccccbe9623c00a1',1,'audio_tools::TimedStream::readBytes()'],['../classaudio__tools_1_1_tf_lite_audio_stream.html#a6406b16cb31ad79201459cb48b1ad6f0',1,'audio_tools::TfLiteAudioStream::readBytes()'],['../classaudio__tools_1_1_r_t_s_p_source_stream.html#adf3b910d156bb3d333a6b96221bf1ff5',1,'audio_tools::RTSPSourceStream::readBytes()'],['../classaudio__tools_1_1_r_t_s_p_source_from_audio_stream.html#adf3b910d156bb3d333a6b96221bf1ff5',1,'audio_tools::RTSPSourceFromAudioStream::readBytes()'],['../classaudio__tools_1_1_e_s_p_now_stream.html#a4c5c6275ddee80eb02839356b6185c0b',1,'audio_tools::ESPNowStream::readBytes()'],['../classaudio__tools_1_1_faust_stream.html#a4c5c6275ddee80eb02839356b6185c0b',1,'audio_tools::FaustStream::readBytes()'],['../classaudio__tools_1_1_a2_d_p_stream.html#a4c5c6275ddee80eb02839356b6185c0b',1,'audio_tools::A2DPStream::readBytes()'],['../classaudio__tools_1_1_i2_s_stream.html#a2c47515c0bc629a2799a9cc22ea5e17e',1,'audio_tools::I2SStream::readBytes()'],['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#aecdbea3a6aff480653df559eb8097559',1,'audio_tools::I2SDriverNanoBLE::readBytes()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#aecdbea3a6aff480653df559eb8097559',1,'audio_tools::I2SDriverESP8266::readBytes()'],['../classaudio__tools_1_1_buffered_task_stream.html#a2c47515c0bc629a2799a9cc22ea5e17e',1,'audio_tools::BufferedTaskStream::readBytes()'],['../classaudio__tools_1_1_i_c_y_stream.html#a1df72c98d2291b9de95f8658542a483b',1,'audio_tools::ICYStream::readBytes()'],['../classaudio__tools_1_1_u_r_l_loader.html#a8920918d9e0a1390082b2e660c954c8b',1,'audio_tools::URLLoader::readBytes()'],['../classaudio__tools_1_1_equilizer3_bands.html#a4c5c6275ddee80eb02839356b6185c0b',1,'audio_tools::Equilizer3Bands::readBytes()'],['../classaudio__tools_1_1_sound_generator.html#a0ad7d4c01bd1e7045b7ee0027e5051c1',1,'audio_tools::SoundGenerator::readBytes()'],['../classaudio__tools_1_1_audio_effect_stream_t.html#a5a28841c35da456c0ccccbe9623c00a1',1,'audio_tools::AudioEffectStreamT::readBytes()'],['../classaudio__tools_1_1_analog_driver_arduino.html#a361d357290e3fab139cd3de2bebabe1b',1,'audio_tools::AnalogDriverArduino::readBytes()']]],
+ ['readbytesvector_2440',['readBytesVector',['../classaudio__tools_1_1_input_mixer.html#a4af7fd645d38c04d58019ab175c1f6e2',1,'audio_tools::InputMixer']]],
+ ['readframes_2441',['readFrames',['../classaudio__tools_1_1_base_buffer.html#a9a1bfa2c5cba939eed47428794683f22',1,'audio_tools::BaseBuffer']]],
+ ['readnoise_2442',['readNoise',['../classaudio__tools_1_1_modulation_base_class.html#a24467c32bf72ccc3b07345a03df7c1b2',1,'audio_tools::ModulationBaseClass']]],
+ ['readprotocol_2443',['readProtocol',['../classaudio__tools_1_1_audio_sync_reader.html#a33d8a11b63e981b24fe6f4bb2f5898b3',1,'audio_tools::AudioSyncReader']]],
+ ['readsample_2444',['readSample',['../namespaceaudio__tools.html#a4ce58b1cf7c8f2758bd2f7ac29d8bd5d',1,'audio_tools::readSample()'],['../classaudio__tools_1_1_s_t_k_generator.html#adc79c89fc1d63b418c9f074b63f3d651',1,'audio_tools::STKGenerator::readSample()'],['../classaudio__tools_1_1_mozzi_generator.html#a041dde89254164d0ad83b1cf54bfaa6d',1,'audio_tools::MozziGenerator::readSample()'],['../classaudio__tools_1_1_sound_generator_modulation.html#a45b168302ee30ce87241d8987e5f9adf',1,'audio_tools::SoundGeneratorModulation::readSample()'],['../classaudio__tools_1_1_synthesizer.html#a3196b8713184e130cc528f812af295b9',1,'audio_tools::Synthesizer::readSample()'],['../classaudio__tools_1_1_default_synthesizer_channel.html#a4a3e93a68ae7b16f4c0e3c658d6f33b3',1,'audio_tools::DefaultSynthesizerChannel::readSample()'],['../classaudio__tools_1_1_abstract_synthesizer_channel.html#ae67870232b4db5acddcd0e80e0022621',1,'audio_tools::AbstractSynthesizerChannel::readSample()'],['../classaudio__tools_1_1_test_generator.html#a913c911a6aff6d8c9b3deb24469ea336',1,'audio_tools::TestGenerator::readSample()'],['../classaudio__tools_1_1_generator_mixer.html#adc79c89fc1d63b418c9f074b63f3d651',1,'audio_tools::GeneratorMixer::readSample()'],['../classaudio__tools_1_1_sine_from_table.html#adc79c89fc1d63b418c9f074b63f3d651',1,'audio_tools::SineFromTable::readSample()'],['../classaudio__tools_1_1_generator_from_array.html#a913c911a6aff6d8c9b3deb24469ea336',1,'audio_tools::GeneratorFromArray::readSample()'],['../classaudio__tools_1_1_generator_from_stream.html#adc79c89fc1d63b418c9f074b63f3d651',1,'audio_tools::GeneratorFromStream::readSample()'],['../classaudio__tools_1_1_silence_generator.html#adc79c89fc1d63b418c9f074b63f3d651',1,'audio_tools::SilenceGenerator::readSample()'],['../classaudio__tools_1_1_pink_noise_generator.html#adc79c89fc1d63b418c9f074b63f3d651',1,'audio_tools::PinkNoiseGenerator::readSample()'],['../classaudio__tools_1_1_white_noise_generator.html#adc79c89fc1d63b418c9f074b63f3d651',1,'audio_tools::WhiteNoiseGenerator::readSample()'],['../classaudio__tools_1_1_fast_sine_generator.html#a45b168302ee30ce87241d8987e5f9adf',1,'audio_tools::FastSineGenerator::readSample()'],['../classaudio__tools_1_1_square_wave_generator.html#a408eeda85d9e14954a97f2c80e130320',1,'audio_tools::SquareWaveGenerator::readSample()'],['../classaudio__tools_1_1_sine_wave_generator.html#a45b168302ee30ce87241d8987e5f9adf',1,'audio_tools::SineWaveGenerator::readSample()'],['../classaudio__tools_1_1_sound_generator.html#a1ff01a896ef633c0bdf60dbf1448c2db',1,'audio_tools::SoundGenerator::readSample()'],['../classaudio__tools_1_1_generator_fixed_value.html#a913c911a6aff6d8c9b3deb24469ea336',1,'audio_tools::GeneratorFixedValue::readSample()'],['../classaudio__tools_1_1_audio_effects.html#a02a8b1a055e1177e195db62f9529118f',1,'audio_tools::AudioEffects::readSample()']]],
+ ['readsamples_2445',['readSamples',['../namespaceaudio__tools.html#a1d8000e66a6b1df22bc01638f587b32c',1,'audio_tools']]],
+ ['readsilence_2446',['readSilence',['../classaudio__tools_1_1_audio_stream.html#a36e26f40121eda38b0042dcba026ab82',1,'audio_tools::AudioStream']]],
+ ['readstream_2447',['readStream',['../classaudio__tools_1_1_wav_i_m_a_decoder.html#ab754136602e0bb22ec2be26dedd9ff50',1,'audio_tools::WavIMADecoder']]],
+ ['readtable_2448',['readTable',['../classaudio__tools_1_1_modulation_base_class.html#ad5b24edb4b1f93535adf1cc9b3352654',1,'audio_tools::ModulationBaseClass']]],
+ ['readtotransmit_2449',['readToTransmit',['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#a9ff6fcdbaad2f9bdb767e3a0ec479d7f',1,'audio_tools::I2SDriverSTM32']]],
+ ['readvalue_2450',['readValue',['../classaudio__tools_1_1_audio_actions.html#a980bfbbeb487b1552263e29dd68fb49e',1,'audio_tools::AudioActions']]],
+ ['realarray_2451',['realArray',['../classaudio__tools_1_1_audio_real_f_f_t.html#ac1f8b449991fb6c6c6ea4bc9016700db',1,'audio_tools::AudioRealFFT']]],
+ ['receive_5fudp_2452',['receive_udp',['../classaudio__tools_1_1_v_b_a_n_stream.html#a4080ec5f567ff8158b1db6ff4e501122',1,'audio_tools::VBANStream']]],
+ ['releasebuffers_2453',['releaseBuffers',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#af41720dc43a9eee386d65158fd167e6f',1,'audio_tools::I2SDriverNanoBLE']]],
+ ['remoteip_2454',['remoteIP',['../classaudio__tools_1_1_u_d_p_stream.html#a0b594a1cd1d82b86c2dc7d66478e5508',1,'audio_tools::UDPStream']]],
+ ['remoteport_2455',['remotePort',['../classaudio__tools_1_1_u_d_p_stream.html#a38a087ee6e9882860c963bd5218deec0',1,'audio_tools::UDPStream']]],
+ ['remove_2456',['remove',['../classaudio__tools_1_1_str.html#ae28bed73407bfc585ca56a12503d2e34',1,'audio_tools::Str']]],
+ ['removeall_2457',['removeAll',['../classaudio__tools_1_1_str.html#accb2e0871d6f6ad52053f62c58b1cc21',1,'audio_tools::Str']]],
+ ['replace_2458',['replace',['../classaudio__tools_1_1_str.html#aa9ab03d53ab842a432dd332d5fe5cbfd',1,'audio_tools::Str']]],
+ ['replaceall_2459',['replaceAll',['../classaudio__tools_1_1_str.html#a7bd16e5f5f215c7ff2a48ea8e4024396',1,'audio_tools::Str']]],
+ ['requestdata_2460',['requestData',['../classaudio__tools_1_1_audio_sync_reader.html#a75e75472f35bebc9344bee7cfc24807f',1,'audio_tools::AudioSyncReader']]],
+ ['resamplestream_2461',['ResampleStream',['../classaudio__tools_1_1_resample_stream.html#a4086fb1a96a79787cd34d990af19f0a3',1,'audio_tools::ResampleStream::ResampleStream(Print &out)'],['../classaudio__tools_1_1_resample_stream.html#af68d567deb61ebb2452d61b9e1beed8e',1,'audio_tools::ResampleStream::ResampleStream(AudioStream &io)'],['../classaudio__tools_1_1_resample_stream.html#a507e0f61ae0d0993db16e47563358bf2',1,'audio_tools::ResampleStream::ResampleStream(AudioOutput &out)'],['../classaudio__tools_1_1_resample_stream.html#aea051bc9a6fb01ba6d7706d12305045d',1,'audio_tools::ResampleStream::ResampleStream(Stream &io)']]],
+ ['reset_2462',['reset',['../classaudio__tools_1_1_variable_speed_ring_buffer_simple.html#ad20897c5c8bd47f5d4005989bead0e55',1,'audio_tools::VariableSpeedRingBufferSimple::reset()'],['../classaudio__tools_1_1_n_buffer.html#ad20897c5c8bd47f5d4005989bead0e55',1,'audio_tools::NBuffer::reset()'],['../classaudio__tools_1_1_ring_buffer_file.html#aebfcdbbd0fe4efbff10b180be50ca6bc',1,'audio_tools::RingBufferFile::reset()'],['../classaudio__tools_1_1_ring_buffer.html#a7b0e029102ad38f4b814c6523aedb53d',1,'audio_tools::RingBuffer::reset()'],['../classaudio__tools_1_1_base_buffer.html#a20dcbdfbd0ec77afc802522bb7e379c1',1,'audio_tools::BaseBuffer::reset()'],['../classaudio__tools_1_1_variable_speed_ring_buffer180.html#ad20897c5c8bd47f5d4005989bead0e55',1,'audio_tools::VariableSpeedRingBuffer180::reset()'],['../classaudio__tools_1_1_variable_speed_ring_buffer.html#ad20897c5c8bd47f5d4005989bead0e55',1,'audio_tools::VariableSpeedRingBuffer::reset()'],['../classaudio__tools_1_1_single_buffer.html#aebfcdbbd0fe4efbff10b180be50ca6bc',1,'audio_tools::SingleBuffer::reset()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#ad20897c5c8bd47f5d4005989bead0e55',1,'audio_tools::AudioFFTBase::reset()']]],
+ ['resetdecoder_2463',['resetDecoder',['../classaudio__tools_1_1_decoder_helix.html#afef1e91be11d5791ae90f522b46db3d7',1,'audio_tools::DecoderHelix']]],
+ ['resetvolumecontrol_2464',['resetVolumeControl',['../classaudio__tools_1_1_volume_stream.html#ad1514ef02c931e4d01f1ab1cbbf6ab39',1,'audio_tools::VolumeStream']]],
+ ['resize_2465',['resize',['../classaudio__tools_1_1_stream_copy_t.html#a6038284a43db2e3e343c6f517171e8fe',1,'audio_tools::StreamCopyT::resize()'],['../classaudio__tools_1_1_encoded_audio_stream.html#ada388d17b93c54a1a0f6edddbe0953ab',1,'audio_tools::EncodedAudioStream::resize(int size)'],['../classaudio__tools_1_1_encoded_audio_stream.html#a0fc3d585aa53859602ac79c9c421f2a9',1,'audio_tools::EncodedAudioStream::resize()'],['../classaudio__tools_1_1_output_mixer.html#ada388d17b93c54a1a0f6edddbe0953ab',1,'audio_tools::OutputMixer::resize()']]],
+ ['resizebuffer_2466',['resizeBuffer',['../classaudio__tools_1_1_m_t_s_decoder.html#a0b6a03a856f088f8f71e2801ca449ca6',1,'audio_tools::MTSDecoder']]],
+ ['respondtocommand_2467',['respondToCommand',['../classaudio__tools_1_1_tf_lite_micro_speach_writer.html#af01b0eda331abfeb05bab5aa27171ded',1,'audio_tools::TfLiteMicroSpeachWriter']]],
+ ['restoreoutput_2468',['restoreOutput',['../classaudio__tools_1_1_transformation_reader.html#a5eb925b04b41ee08d4eda13dfdb0f967',1,'audio_tools::TransformationReader']]],
+ ['result_2469',['result',['../classaudio__tools_1_1_audio_f_f_t_base.html#ab5b6c3f019b5eeb4dd866fc0e755750e',1,'audio_tools::AudioFFTBase']]],
+ ['resultarray_2470',['resultArray',['../classaudio__tools_1_1_audio_f_f_t_base.html#aeb84cae16a79c3ee9a64aa0f7484e3fa',1,'audio_tools::AudioFFTBase']]],
+ ['resultcategoryidx_2471',['resultCategoryIdx',['../classaudio__tools_1_1_tf_lite_micro_speech_recognize_commands.html#adc04882c707048b4d4c1622e2716a0a5',1,'audio_tools::TfLiteMicroSpeechRecognizeCommands']]],
+ ['resultsize_2472',['resultSize',['../classaudio__tools_1_1_channel_enhancer.html#a54e17a1e0bfffc2a4586be6a1d93d808',1,'audio_tools::ChannelEnhancer']]],
+ ['resulttime_2473',['resultTime',['../classaudio__tools_1_1_audio_f_f_t_base.html#a268629b3dc726c2fe5dbc1192fdede5f',1,'audio_tools::AudioFFTBase']]],
+ ['resulttimebegin_2474',['resultTimeBegin',['../classaudio__tools_1_1_audio_f_f_t_base.html#a0773f84b14a3adbec0eb8ba47b2b4cb7',1,'audio_tools::AudioFFTBase']]],
+ ['rewind_2475',['rewind',['../classaudio__tools_1_1_dynamic_memory_stream.html#ab8734e666421c9fe3b6380a818c6c727',1,'audio_tools::DynamicMemoryStream']]],
+ ['rms_2476',['rms',['../classaudio__tools_1_1_filter_effect_base.html#ad5431041e3be93b789a5fbea3ceeaec6',1,'audio_tools::FilterEffectBase']]],
+ ['rtrim_2477',['rtrim',['../classaudio__tools_1_1_str.html#a76da0d105a721fafd7ce1cd2def377dc',1,'audio_tools::Str']]],
+ ['rtspoutput_2478',['RTSPOutput',['../classaudio__tools_1_1_r_t_s_p_output.html#ad34e6b6ee97452982293faf18cbd91cd',1,'audio_tools::RTSPOutput::RTSPOutput(RTSPFormatAudioTools &format, AudioEncoder &encoder, int buffer_size=1024 *2)'],['../classaudio__tools_1_1_r_t_s_p_output.html#a1b06b09496d4cd96433b8148acfbd229',1,'audio_tools::RTSPOutput::RTSPOutput(int buffer_size=1024)']]],
+ ['rtspsourcefromaudiostream_2479',['RTSPSourceFromAudioStream',['../classaudio__tools_1_1_r_t_s_p_source_from_audio_stream.html#a75ae7e2f6e64915c2845a0bbe284caef',1,'audio_tools::RTSPSourceFromAudioStream']]],
+ ['rtspsourcestream_2480',['RTSPSourceStream',['../classaudio__tools_1_1_r_t_s_p_source_stream.html#a8af7ebd8c24fb7350027566a2939516e',1,'audio_tools::RTSPSourceStream::RTSPSourceStream(Stream &stream, AudioInfo info)'],['../classaudio__tools_1_1_r_t_s_p_source_stream.html#ac810cf235be6c51599ce156eaffe037a',1,'audio_tools::RTSPSourceStream::RTSPSourceStream(Stream &stream, RTSPFormat &format)']]]
];
diff --git a/search/functions_12.js b/search/functions_12.js
index 32ee60197e..c9ba3205f5 100644
--- a/search/functions_12.js
+++ b/search/functions_12.js
@@ -1,214 +1,214 @@
var searchData=
[
- ['sample_5frate_5fcallback_2477',['sample_rate_callback',['../classaudio__tools_1_1_a2_d_p_stream.html#a73af513be01f5d51e180082bc55d0d5f',1,'audio_tools::A2DPStream']]],
- ['samples_2478',['samples',['../classaudio__tools_1_1_window_function.html#a296d0d8ff81677d81815bd49551fdaad',1,'audio_tools::WindowFunction']]],
- ['scale_2479',['scale',['../classaudio__tools_1_1_number_reader.html#a9e29648c128bacf632eab24eae54416f',1,'audio_tools::NumberReader']]],
- ['scale16_2480',['scale16',['../classaudio__tools_1_1int24__3bytes__t.html#ab5de9df15c4ca32db1246fd57eb79e40',1,'audio_tools::int24_3bytes_t::scale16()'],['../classaudio__tools_1_1int24__4bytes__t.html#ab5de9df15c4ca32db1246fd57eb79e40',1,'audio_tools::int24_4bytes_t::scale16()']]],
- ['scale32_2481',['scale32',['../classaudio__tools_1_1int24__3bytes__t.html#a7f0c0806ea9d9ccd6fff33eb2af10768',1,'audio_tools::int24_3bytes_t::scale32()'],['../classaudio__tools_1_1int24__4bytes__t.html#a7f0c0806ea9d9ccd6fff33eb2af10768',1,'audio_tools::int24_4bytes_t::scale32()']]],
- ['scalefloat_2482',['scaleFloat',['../classaudio__tools_1_1int24__3bytes__t.html#ad3f975477e832379629a455ed04bae0c',1,'audio_tools::int24_3bytes_t::scaleFloat()'],['../classaudio__tools_1_1int24__4bytes__t.html#ad3f975477e832379629a455ed04bae0c',1,'audio_tools::int24_4bytes_t::scaleFloat()']]],
- ['selectstream_2483',['selectStream',['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html#af7a56e4b512b2b0ddc268d45294c76e3',1,'audio_tools::AudioSourceSPIFFS::selectStream()'],['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html#af80a30b20976ace1992d1f8ed98f98db',1,'audio_tools::AudioSourceSDMMC::selectStream()'],['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html#af80a30b20976ace1992d1f8ed98f98db',1,'audio_tools::AudioSourceSPIFFS::selectStream()'],['../classaudio__tools_1_1_audio_source_s_t_d.html#af7a56e4b512b2b0ddc268d45294c76e3',1,'audio_tools::AudioSourceSTD::selectStream(int index) override'],['../classaudio__tools_1_1_audio_source_s_t_d.html#af80a30b20976ace1992d1f8ed98f98db',1,'audio_tools::AudioSourceSTD::selectStream(const char *path) override'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#af7a56e4b512b2b0ddc268d45294c76e3',1,'audio_tools::AudioSourceSDFAT::selectStream(int index) override'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#af80a30b20976ace1992d1f8ed98f98db',1,'audio_tools::AudioSourceSDFAT::selectStream(const char *path) override'],['../classaudio__tools_1_1_audio_source.html#a773f36226afa82260f1adf5830a150e2',1,'audio_tools::AudioSource::selectStream(int index)'],['../classaudio__tools_1_1_audio_source.html#aa52be13c5c1bc7fa60c8e0ae185e1b35',1,'audio_tools::AudioSource::selectStream(const char *path)=0'],['../classaudio__tools_1_1_audio_source_callback.html#af7a56e4b512b2b0ddc268d45294c76e3',1,'audio_tools::AudioSourceCallback::selectStream(int index) override'],['../classaudio__tools_1_1_audio_source_callback.html#af80a30b20976ace1992d1f8ed98f98db',1,'audio_tools::AudioSourceCallback::selectStream(const char *path) override'],['../classaudio__tools_1_1_audio_source_u_r_l.html#a663b4fd7999e3a675d39321e612c08af',1,'audio_tools::AudioSourceURL::selectStream(int idx) override'],['../classaudio__tools_1_1_audio_source_u_r_l.html#aa72bd2cf2bfac1b1733a6f24f9d0d6d8',1,'audio_tools::AudioSourceURL::selectStream(const char *path) override'],['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html#af7a56e4b512b2b0ddc268d45294c76e3',1,'audio_tools::AudioSourceSDMMC::selectStream()'],['../classaudio__tools_1_1_audio_source_idx_s_d.html#af7a56e4b512b2b0ddc268d45294c76e3',1,'audio_tools::AudioSourceIdxSD::selectStream(int index) override'],['../classaudio__tools_1_1_audio_source_idx_s_d.html#af80a30b20976ace1992d1f8ed98f98db',1,'audio_tools::AudioSourceIdxSD::selectStream(const char *path) override'],['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#af7a56e4b512b2b0ddc268d45294c76e3',1,'audio_tools::AudioSourceIdxSDFAT::selectStream(int index) override'],['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#af80a30b20976ace1992d1f8ed98f98db',1,'audio_tools::AudioSourceIdxSDFAT::selectStream(const char *path) override'],['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html#af7a56e4b512b2b0ddc268d45294c76e3',1,'audio_tools::AudioSourceIdxSDMMC::selectStream(int index) override'],['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html#af80a30b20976ace1992d1f8ed98f98db',1,'audio_tools::AudioSourceIdxSDMMC::selectStream(const char *path) override'],['../classaudio__tools_1_1_audio_source_little_f_s.html#af7a56e4b512b2b0ddc268d45294c76e3',1,'audio_tools::AudioSourceLittleFS::selectStream(int index) override'],['../classaudio__tools_1_1_audio_source_little_f_s.html#af80a30b20976ace1992d1f8ed98f98db',1,'audio_tools::AudioSourceLittleFS::selectStream(const char *path) override'],['../classaudio__tools_1_1_audio_source_s_d.html#af7a56e4b512b2b0ddc268d45294c76e3',1,'audio_tools::AudioSourceSD::selectStream(int index) override'],['../classaudio__tools_1_1_audio_source_s_d.html#af80a30b20976ace1992d1f8ed98f98db',1,'audio_tools::AudioSourceSD::selectStream(const char *path) override'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#af7a56e4b512b2b0ddc268d45294c76e3',1,'audio_tools::AudioSourceSDFAT::selectStream(int index) override'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#af80a30b20976ace1992d1f8ed98f98db',1,'audio_tools::AudioSourceSDFAT::selectStream(const char *path) override']]],
- ['set_2484',['set',['../classaudio__tools_1_1int24__4bytes__t.html#a82ee9face90cedee7f795055fcff3fa8',1,'audio_tools::int24_4bytes_t::set()'],['../classaudio__tools_1_1_str.html#a9bbc18f63643cb591ff963a68d2bd4f4',1,'audio_tools::Str::set(const char *alt)'],['../classaudio__tools_1_1_str.html#ab8c38a9ce68d193d3ed4916368a2f997',1,'audio_tools::Str::set(const Str &alt)'],['../classaudio__tools_1_1_str.html#a4e2c83e70ef7e8a3a11aae085991a462',1,'audio_tools::Str::set(char chars[], int maxlen, int len=0, bool isConst=false)'],['../structaudio__tools_1_1_audio_info.html#a4c2ab4bf80534844ec220076fcd45952',1,'audio_tools::AudioInfo::set()']]],
- ['setactive_2485',['setActive',['../classaudio__tools_1_1_audio_effect.html#a392adf5d7d03b5339b77ec58bca5f9a9',1,'audio_tools::AudioEffect::setActive()'],['../classaudio__tools_1_1_stream_copy_t.html#ac4d4dd65be4e0a27eff3aac48dadd381',1,'audio_tools::StreamCopyT::setActive()'],['../classaudio__tools_1_1_audio_player.html#afeef27a8f9ef49b0aad990fe49b1ca50',1,'audio_tools::AudioPlayer::setActive()'],['../classaudio__tools_1_1_audio_kit_stream.html#a67ba7d52f586dfd64c8b295d57b1f9c4',1,'audio_tools::AudioKitStream::setActive()'],['../classaudio__tools_1_1_on_off_output.html#a2b8951fe5a4418a17d40c824fbff6ae3',1,'audio_tools::OnOffOutput::setActive()']]],
- ['setafterburner_2486',['setAfterburner',['../classaudio__tools_1_1_a_a_c_encoder_f_d_k.html#a64ce099fbc88f6d2586160be0f6666e7',1,'audio_tools::AACEncoderFDK']]],
- ['setagent_2487',['setAgent',['../classaudio__tools_1_1_http_request.html#a632fc452b56aa9002804b8da20bbd798',1,'audio_tools::HttpRequest']]],
- ['setallocationmethod_2488',['setAllocationMethod',['../classaudio__tools_1_1_s_b_c_encoder.html#afdb823fb33d75636f6b057854596bfee',1,'audio_tools::SBCEncoder']]],
- ['setamplitude_2489',['setAmplitude',['../classaudio__tools_1_1_sine_from_table.html#acd4492eedc1644fc7e48deb4a271a065',1,'audio_tools::SineFromTable']]],
- ['setangledelta_2490',['setAngleDelta',['../classaudio__tools_1_1_simple_flanger.html#adf7a3c3548aae95e0a3b74fe1ded8ff5',1,'audio_tools::SimpleFlanger']]],
- ['setaudiodatacallback_2491',['setAudioDataCallback',['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#ab2e700f0f83bc889bdd74bfac91afb8b',1,'audio_tools::MP3DecoderMAD::setAudioDataCallback()'],['../classaudio__tools_1_1_meta_data_i_c_y.html#ac967c6558d5583e03b77e20f1c20794d',1,'audio_tools::MetaDataICY::setAudioDataCallback()']]],
- ['setaudioinfo_2492',['setAudioInfo',['../classaudio__tools_1_1_audio_kit_stream.html#ad1fdd56031f1195cb221ab855fb6a102',1,'audio_tools::AudioKitStream::setAudioInfo()'],['../classaudio__tools_1_1_m_p3_encoder_l_a_m_e.html#a7fada19480b99fa787492cbc32b5b893',1,'audio_tools::MP3EncoderLAME::setAudioInfo()'],['../classaudio__tools_1_1_encoder_float.html#accee684614189e73bdc9f1b2f7abf919',1,'audio_tools::EncoderFloat::setAudioInfo()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#ad1fdd56031f1195cb221ab855fb6a102',1,'audio_tools::AudioFFTBase::setAudioInfo()'],['../classaudio__tools_1_1_i2_s_stream.html#a87feead15897a49c7dccb043ac9fcddc',1,'audio_tools::I2SStream::setAudioInfo()'],['../classaudio__tools_1_1_ogg_container_encoder.html#aacd5a76de8d22c3909128c3539e5a6f7',1,'audio_tools::OggContainerEncoder::setAudioInfo()'],['../classaudio__tools_1_1_binary_container_encoder.html#ad1fdd56031f1195cb221ab855fb6a102',1,'audio_tools::BinaryContainerEncoder::setAudioInfo()'],['../classaudio__tools_1_1_w_a_v_encoder.html#a651d1dd445f965019c81634389f6061e',1,'audio_tools::WAVEncoder::setAudioInfo(WAVAudioInfo ai)'],['../classaudio__tools_1_1_w_a_v_encoder.html#accee684614189e73bdc9f1b2f7abf919',1,'audio_tools::WAVEncoder::setAudioInfo(AudioInfo from) override'],['../classaudio__tools_1_1_w_a_v_header.html#a6ae5106230521c3270c1b5ccd7eb146f',1,'audio_tools::WAVHeader::setAudioInfo()'],['../classaudio__tools_1_1_s_b_c_encoder.html#a87feead15897a49c7dccb043ac9fcddc',1,'audio_tools::SBCEncoder::setAudioInfo()'],['../classaudio__tools_1_1_opus_audio_encoder.html#a5c749802992efec8bc20ba4a522b027f',1,'audio_tools::OpusAudioEncoder::setAudioInfo()'],['../classaudio__tools_1_1_opus_audio_decoder.html#a5c749802992efec8bc20ba4a522b027f',1,'audio_tools::OpusAudioDecoder::setAudioInfo()'],['../classaudio__tools_1_1_port_audio_stream.html#ac7aeb791011c8430ad1b3907d0b5c62f',1,'audio_tools::PortAudioStream::setAudioInfo()'],['../classaudio__tools_1_1_r_t_s_p_source_from_audio_stream.html#a87feead15897a49c7dccb043ac9fcddc',1,'audio_tools::RTSPSourceFromAudioStream::setAudioInfo()'],['../classaudio__tools_1_1_r_t_s_p_source_stream.html#a87feead15897a49c7dccb043ac9fcddc',1,'audio_tools::RTSPSourceStream::setAudioInfo()'],['../classaudio__tools_1_1_v_s1053_stream.html#a00f37c11cb3e33b4e2b00008bcf1b175',1,'audio_tools::VS1053Stream::setAudioInfo()'],['../classaudio__tools_1_1_w_m8960_stream.html#aabf6f236b75536eb0dca4eb25c7b156d',1,'audio_tools::WM8960Stream::setAudioInfo()'],['../classaudio__tools_1_1_p_w_m_audio_output.html#a87feead15897a49c7dccb043ac9fcddc',1,'audio_tools::PWMAudioOutput::setAudioInfo()'],['../classaudio__tools_1_1_timed_stream.html#ad1fdd56031f1195cb221ab855fb6a102',1,'audio_tools::TimedStream::setAudioInfo()'],['../classaudio__tools_1_1_csv_output.html#aacd5a76de8d22c3909128c3539e5a6f7',1,'audio_tools::CsvOutput::setAudioInfo()'],['../classaudio__tools_1_1_audio_player.html#aacd5a76de8d22c3909128c3539e5a6f7',1,'audio_tools::AudioPlayer::setAudioInfo()'],['../classaudio__tools_1_1_s_p_d_i_f_output.html#a5e283a9495aaf265739336829d45e215',1,'audio_tools::SPDIFOutput::setAudioInfo()'],['../classaudio__tools_1_1_timer_callback_audio_stream.html#a87feead15897a49c7dccb043ac9fcddc',1,'audio_tools::TimerCallbackAudioStream::setAudioInfo()'],['../structaudio__tools_1_1_audio_info.html#a5e283a9495aaf265739336829d45e215',1,'audio_tools::AudioInfo::setAudioInfo()'],['../classaudio__tools_1_1_volume_stream.html#ae7ea43235bd3821c81da4f95c519bba5',1,'audio_tools::VolumeStream::setAudioInfo()'],['../classaudio__tools_1_1_copy_encoder.html#ace04239ef879aeae1e1b4b49cc537666',1,'audio_tools::CopyEncoder::setAudioInfo()'],['../classaudio__tools_1_1_m_p3_encoder_l_a_m_e.html#a81d4320037ca3aed1c9713c8516f1340',1,'audio_tools::MP3EncoderLAME::setAudioInfo()'],['../classaudio__tools_1_1_analog_audio_stream.html#a87feead15897a49c7dccb043ac9fcddc',1,'audio_tools::AnalogAudioStream::setAudioInfo()'],['../classaudio__tools_1_1_audio_decoder.html#accee684614189e73bdc9f1b2f7abf919',1,'audio_tools::AudioDecoder::setAudioInfo()'],['../classaudio__tools_1_1_audio_encoder.html#a5c749802992efec8bc20ba4a522b027f',1,'audio_tools::AudioEncoder::setAudioInfo()'],['../classaudio__tools_1_1_codec_n_o_p.html#a87feead15897a49c7dccb043ac9fcddc',1,'audio_tools::CodecNOP::setAudioInfo()'],['../classaudio__tools_1_1_a_a_c_encoder_f_d_k.html#ae9dd0258a562852d9334cd71ab9ab9c1',1,'audio_tools::AACEncoderFDK::setAudioInfo()'],['../classaudio__tools_1_1_a_a_c_decoder_helix.html#ad1fdd56031f1195cb221ab855fb6a102',1,'audio_tools::AACDecoderHelix::setAudioInfo()'],['../classaudio__tools_1_1_a_d_p_c_m_encoder.html#ad1fdd56031f1195cb221ab855fb6a102',1,'audio_tools::ADPCMEncoder::setAudioInfo()'],['../classaudio__tools_1_1_a_d_p_c_m_encoder_x_q.html#ad1fdd56031f1195cb221ab855fb6a102',1,'audio_tools::ADPCMEncoderXQ::setAudioInfo()'],['../classaudio__tools_1_1_a_p_t_x_encoder.html#a87feead15897a49c7dccb043ac9fcddc',1,'audio_tools::APTXEncoder::setAudioInfo()'],['../classaudio__tools_1_1_encoder_base64.html#accee684614189e73bdc9f1b2f7abf919',1,'audio_tools::EncoderBase64::setAudioInfo()'],['../classaudio__tools_1_1_encoder_basic.html#accee684614189e73bdc9f1b2f7abf919',1,'audio_tools::EncoderBasic::setAudioInfo()'],['../classaudio__tools_1_1_codec2_encoder.html#ac16dce708c8231391f220f847b8d05df',1,'audio_tools::Codec2Encoder::setAudioInfo()'],['../classaudio__tools_1_1_f_l_a_c_encoder.html#accee684614189e73bdc9f1b2f7abf919',1,'audio_tools::FLACEncoder::setAudioInfo()'],['../classaudio__tools_1_1_g722_decoder.html#ac16dce708c8231391f220f847b8d05df',1,'audio_tools::G722Decoder::setAudioInfo()'],['../classaudio__tools_1_1_g722_encoder.html#ac16dce708c8231391f220f847b8d05df',1,'audio_tools::G722Encoder::setAudioInfo()'],['../classaudio__tools_1_1_g7xx_decoder.html#ae7ea43235bd3821c81da4f95c519bba5',1,'audio_tools::G7xxDecoder::setAudioInfo()'],['../classaudio__tools_1_1_g7xx_encoder.html#ac16dce708c8231391f220f847b8d05df',1,'audio_tools::G7xxEncoder::setAudioInfo()'],['../classaudio__tools_1_1_g_s_m_decoder.html#ac16dce708c8231391f220f847b8d05df',1,'audio_tools::GSMDecoder::setAudioInfo()'],['../classaudio__tools_1_1_g_s_m_encoder.html#ac16dce708c8231391f220f847b8d05df',1,'audio_tools::GSMEncoder::setAudioInfo()'],['../classaudio__tools_1_1_i_l_b_c_encoder.html#a5e283a9495aaf265739336829d45e215',1,'audio_tools::ILBCEncoder::setAudioInfo()'],['../classaudio__tools_1_1_encoder_l16.html#accee684614189e73bdc9f1b2f7abf919',1,'audio_tools::EncoderL16::setAudioInfo()'],['../classaudio__tools_1_1_decoder_l8.html#accee684614189e73bdc9f1b2f7abf919',1,'audio_tools::DecoderL8::setAudioInfo()'],['../classaudio__tools_1_1_encoder_l8.html#a5c749802992efec8bc20ba4a522b027f',1,'audio_tools::EncoderL8::setAudioInfo()'],['../classaudio__tools_1_1_l_c3_encoder.html#a87feead15897a49c7dccb043ac9fcddc',1,'audio_tools::LC3Encoder::setAudioInfo()']]],
- ['setaudioobjecttype_2493',['setAudioObjectType',['../classaudio__tools_1_1_a_a_c_encoder_f_d_k.html#a4551d43d99fc493544d13d654689cfa7',1,'audio_tools::AACEncoderFDK']]],
- ['setaudiosource_2494',['setAudioSource',['../classaudio__tools_1_1_audio_player.html#a09cb3e95771e4f15bae41ca4fc335917',1,'audio_tools::AudioPlayer']]],
- ['setautocreatelines_2495',['setAutoCreateLines',['../classaudio__tools_1_1_http_header.html#aaff16011b9bf3abcaef5270fbb78857a',1,'audio_tools::HttpHeader::setAutoCreateLines()'],['../classaudio__tools_1_1_u_r_l_stream.html#ad39861fd3793ecfe88b97999087f05a2',1,'audio_tools::URLStream::setAutoCreateLines()']]],
- ['setautofade_2496',['setAutoFade',['../classaudio__tools_1_1_audio_player.html#a9f62775f890026142f7a56b06aa7473b',1,'audio_tools::AudioPlayer']]],
- ['setautonext_2497',['setAutoNext',['../classaudio__tools_1_1_audio_player.html#afdd194c661ce148c25ba122293e342d7',1,'audio_tools::AudioPlayer']]],
- ['setautorewind_2498',['setAutoRewind',['../classaudio__tools_1_1_ring_buffer_file.html#a56c99765fda1e751bd89bade953a0d56',1,'audio_tools::RingBufferFile']]],
- ['setavailable_2499',['setAvailable',['../classaudio__tools_1_1_single_buffer.html#a1df5849973bb084c9d25289359ae6e57',1,'audio_tools::SingleBuffer']]],
- ['setavailablecallback_2500',['setAvailableCallback',['../classaudio__tools_1_1_stream_copy_t.html#aba7dbc8829c1916f43311fc9053fec44',1,'audio_tools::StreamCopyT']]],
- ['setbalance_2501',['setBalance',['../classaudio__tools_1_1_v_s1053_stream.html#a00ca7b44d59524f9747a913d906b3a96',1,'audio_tools::VS1053Stream']]],
- ['setbase_2502',['setBase',['../classaudio__tools_1_1_simple_chorus.html#a4e930f9bf63ebf40910dcca813d5de63',1,'audio_tools::SimpleChorus']]],
- ['setbitpool_2503',['setBitpool',['../classaudio__tools_1_1_s_b_c_encoder.html#acc8a8be313e8fb5d9c158225c3143dd6',1,'audio_tools::SBCEncoder']]],
- ['setbitrate_2504',['setBitrate',['../classaudio__tools_1_1_a_a_c_encoder_f_d_k.html#a9326490ebc307c9a274d5b4efa48d4f4',1,'audio_tools::AACEncoderFDK']]],
- ['setbitspersecond_2505',['setBitsPerSecond',['../classaudio__tools_1_1_codec2_encoder.html#a4bc89a5db2eaa810580df37dc8b9dc87',1,'audio_tools::Codec2Encoder::setBitsPerSecond()'],['../classaudio__tools_1_1_codec2_decoder.html#a4bc89a5db2eaa810580df37dc8b9dc87',1,'audio_tools::Codec2Decoder::setBitsPerSecond()']]],
- ['setblocks_2506',['setBlocks',['../classaudio__tools_1_1_s_b_c_encoder.html#a54432aa904b0e72a505d1f0596692c0f',1,'audio_tools::SBCEncoder']]],
- ['setblocksizepower_2507',['setBlockSizePower',['../classaudio__tools_1_1_a_d_p_c_m_decoder_x_q.html#ac6e299ceb04c7d103c328b431e5c61c4',1,'audio_tools::ADPCMDecoderXQ::setBlockSizePower()'],['../classaudio__tools_1_1_a_d_p_c_m_encoder_x_q.html#ac6e299ceb04c7d103c328b431e5c61c4',1,'audio_tools::ADPCMEncoderXQ::setBlockSizePower()']]],
- ['setbuffer_2508',['setBuffer',['../classaudio__tools_1_1_h_l_s_stream.html#ad3e1ca0ca7001b983aaf0d2a60d2efe8',1,'audio_tools::HLSStream']]],
- ['setbuffered_2509',['setBuffered',['../classaudio__tools_1_1_number_format_converter_stream_t.html#a73a4f130b28b7fb6cfbe4f4957f84a18',1,'audio_tools::NumberFormatConverterStreamT::setBuffered()'],['../classaudio__tools_1_1_format_converter_stream.html#a5a08430ad7efc8359dfd18b010cbc63d',1,'audio_tools::FormatConverterStream::setBuffered()'],['../classaudio__tools_1_1_resample_stream.html#a5a08430ad7efc8359dfd18b010cbc63d',1,'audio_tools::ResampleStream::setBuffered()']]],
- ['setbuffersize_2510',['setBufferSize',['../classaudio__tools_1_1_audio_player.html#a0c9e8fc6b910ac6bd185da2642cbad4a',1,'audio_tools::AudioPlayer']]],
- ['setcallback_2511',['setCallback',['../classaudio__tools_1_1_file_loop_t.html#a489fbbe8ee63b9f755a9f637e8997096',1,'audio_tools::FileLoopT::setCallback()'],['../classaudio__tools_1_1_meta_data_output.html#a96c4c8004be79a732ebae5803a6a4cbe',1,'audio_tools::MetaDataOutput::setCallback()'],['../classaudio__tools_1_1_meta_data_i_c_y.html#a000d7eb3d6261bd4aa53aaca00eee94b',1,'audio_tools::MetaDataICY::setCallback()']]],
- ['setcallbackonwrite_2512',['setCallbackOnWrite',['../classaudio__tools_1_1_stream_copy_t.html#a7575750492ee545b18faf84cdada3caa',1,'audio_tools::StreamCopyT']]],
- ['setcategories_2513',['setCategories',['../structaudio__tools_1_1_tf_lite_config.html#ae86f296dd26de623958171d9eb277ba8',1,'audio_tools::TfLiteConfig']]],
- ['setchannels_2514',['setChannels',['../classaudio__tools_1_1_decimate_t.html#ab5a7ba68d6c150f9643e74f3838270a5',1,'audio_tools::DecimateT::setChannels()'],['../classaudio__tools_1_1_decimate.html#ab5a7ba68d6c150f9643e74f3838270a5',1,'audio_tools::Decimate::setChannels()']]],
- ['setchars_2515',['setChars',['../classaudio__tools_1_1_str_ext.html#ac8b499f862b47f549d37ebd233287447',1,'audio_tools::StrExt']]],
- ['setchebyicoefficients_2516',['setChebyICoefficients',['../classaudio__tools_1_1_filter_effect_base.html#a88f9bbb7d004b7f920601cc211c93ef0',1,'audio_tools::FilterEffectBase']]],
- ['setcheckavailableforwrite_2517',['setCheckAvailableForWrite',['../classaudio__tools_1_1_stream_copy_t.html#af2beb219bcf28b64c8da8b2021d3513b',1,'audio_tools::StreamCopyT']]],
- ['setclearwithzero_2518',['setClearWithZero',['../classaudio__tools_1_1_single_buffer.html#a3cbbe5124b80c5fd48c168debbf50b52',1,'audio_tools::SingleBuffer']]],
- ['setclient_2519',['setClient',['../classaudio__tools_1_1_abstract_u_r_l_stream.html#aa02fa47437f45ebe8b6d8e30daa9cb73',1,'audio_tools::AbstractURLStream::setClient()'],['../classaudio__tools_1_1_i_c_y_stream.html#ad440a4de3d62b095c0ab57e13b511865',1,'audio_tools::ICYStream::setClient()'],['../classaudio__tools_1_1_i_c_y_stream_buffered.html#ad440a4de3d62b095c0ab57e13b511865',1,'audio_tools::ICYStreamBuffered::setClient()'],['../classaudio__tools_1_1_u_r_l_stream.html#ab8f3869beb19790ca9a8f556d662d749',1,'audio_tools::URLStream::setClient()'],['../classaudio__tools_1_1_u_r_l_stream_buffered.html#ad440a4de3d62b095c0ab57e13b511865',1,'audio_tools::URLStreamBuffered::setClient()']]],
- ['setcolumnbar_2520',['setColumnBar',['../classaudio__tools_1_1_l_e_d_output.html#a151ea8e0fda222a7614ced9265117255',1,'audio_tools::LEDOutput::setColumnBar(int x, int currY)'],['../classaudio__tools_1_1_l_e_d_output.html#ae8b1b3b22e0022d2fdf9621806aa9db6',1,'audio_tools::LEDOutput::setColumnBar(int currY)'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a151ea8e0fda222a7614ced9265117255',1,'audio_tools::LEDOutputUnoR4::setColumnBar()']]],
- ['setcompressionratio_2521',['setCompressionRatio',['../classaudio__tools_1_1_timed_stream.html#a35eacaff37b4c207f816e9b1a35e4f7b',1,'audio_tools::TimedStream']]],
- ['setconnectionclose_2522',['setConnectionClose',['../classaudio__tools_1_1_u_r_l_stream.html#ae7030d11c7af96d4b7983393817830a9',1,'audio_tools::URLStream']]],
- ['setconverter_2523',['setConverter',['../classaudio__tools_1_1_audio_server.html#a2c42e0c550ffe835f03b8a0c575322b2',1,'audio_tools::AudioServer']]],
- ['setdata_2524',['setData',['../structaudio__tools_1_1_m_p4_atom.html#a49eba78c3c22d25e2e64517cd5f50a7d',1,'audio_tools::MP4Atom']]],
- ['setdatacallback_2525',['setDataCallback',['../classaudio__tools_1_1_container_m_p4.html#a9a87d052f5f3575b7d5ef21dfad965aa',1,'audio_tools::ContainerMP4']]],
- ['setdataoffset_2526',['setDataOffset',['../classaudio__tools_1_1_w_a_v_encoder.html#a714eb943cec9f2478e46d32af2467f3e',1,'audio_tools::WAVEncoder']]],
- ['setdc_2527',['setDC',['../classaudio__tools_1_1_modulation_base_class.html#aa7c951a115da3ce65842f8a0492f46b8',1,'audio_tools::ModulationBaseClass']]],
- ['setdebouncedelay_2528',['setDebounceDelay',['../classaudio__tools_1_1_audio_actions.html#a59cea0afb661d3352062cf223b3666c5',1,'audio_tools::AudioActions']]],
- ['setdecoder_2529',['setDecoder',['../classaudio__tools_1_1_w_a_v_decoder.html#a1113a99aa668488e62a0f646af0f8b87',1,'audio_tools::WAVDecoder::setDecoder()'],['../classaudio__tools_1_1_meta_data_filter.html#a8381905c682cb6718ddd4319b5822b0c',1,'audio_tools::MetaDataFilter::setDecoder()'],['../classaudio__tools_1_1_audio_player.html#a3ea5f561a76c0db83b58303d4e4280d1',1,'audio_tools::AudioPlayer::setDecoder()']]],
- ['setdelaybuffer_2530',['setDelayBuffer',['../classaudio__tools_1_1_delay_effect_base.html#aaea0c98ac40750185850bee967b63a86',1,'audio_tools::DelayEffectBase']]],
- ['setdelaybuffreadindex_2531',['setDelayBuffReadIndex',['../classaudio__tools_1_1_delay_effect_base.html#a09afa1b1edf3b6ba06c78437f1ff310f',1,'audio_tools::DelayEffectBase']]],
- ['setdelaygain_2532',['setDelayGain',['../classaudio__tools_1_1_filtered_delay.html#ac353b3e478618cb7a9d85886fe5e572d',1,'audio_tools::FilteredDelay::setDelayGain()'],['../classaudio__tools_1_1_simple_delay.html#ac353b3e478618cb7a9d85886fe5e572d',1,'audio_tools::SimpleDelay::setDelayGain()']]],
- ['setdelayifoutputfull_2533',['setDelayIfOutputFull',['../classaudio__tools_1_1_audio_player.html#a31e8bfe952fe38f6bfd0c4edbf6ff3c9',1,'audio_tools::AudioPlayer']]],
- ['setdelayonnodata_2534',['setDelayOnNoData',['../classaudio__tools_1_1_stream_copy_t.html#a7f2d7de65b2c37346fde120d8a9657b0',1,'audio_tools::StreamCopyT']]],
- ['setdelaytime_2535',['setDelayTime',['../classaudio__tools_1_1_simple_delay.html#a1f65b11194c3cbcfe03405f160556024',1,'audio_tools::SimpleDelay']]],
- ['setdelaytransitiontime_2536',['setDelayTransitionTime',['../classaudio__tools_1_1_simple_delay.html#a15724205466549197b5e025962cbb1ad',1,'audio_tools::SimpleDelay']]],
- ['setdelimiter_2537',['setDelimiter',['../classaudio__tools_1_1_csv_output.html#ae5069f1af7d96b22cbe726af27012028',1,'audio_tools::CsvOutput']]],
- ['setdepth_2538',['setDepth',['../classaudio__tools_1_1_simple_flanger.html#aae79d80b265ba90683a611eff1ae6f1c',1,'audio_tools::SimpleFlanger']]],
- ['seteffectgain_2539',['setEffectGain',['../classaudio__tools_1_1_simple_flanger.html#a6f88d23dc61587552c0759a4eb6dd1dc',1,'audio_tools::SimpleFlanger']]],
- ['seteffectparams_2540',['setEffectParams',['../classaudio__tools_1_1_simple_flanger.html#a887c4d8003f3a4bec672ee96cc5de140',1,'audio_tools::SimpleFlanger']]],
- ['setenabled_2541',['setEnabled',['../classaudio__tools_1_1_audio_actions.html#af6bc20dad85bbf87b126c80c543967db',1,'audio_tools::AudioActions']]],
- ['setencoder_2542',['setEncoder',['../classaudio__tools_1_1_v_s1053_stream.html#a112088d1d203e928f46cc6dd4b7bcc99',1,'audio_tools::VS1053Stream']]],
- ['setendsecond_2543',['setEndSecond',['../classaudio__tools_1_1_timed_stream.html#a54b5118c422ec13c55e508468a51caa2',1,'audio_tools::TimedStream']]],
- ['setfactor_2544',['setFactor',['../classaudio__tools_1_1_decimate.html#a2dc524acc6d34135c4fcbd44aa62b8e6',1,'audio_tools::Decimate::setFactor()'],['../classaudio__tools_1_1_decimate_t.html#a2dc524acc6d34135c4fcbd44aa62b8e6',1,'audio_tools::DecimateT::setFactor()'],['../classaudio__tools_1_1_converter_scaler.html#afc140cf8223a4144dc9755af85bf2d8f',1,'audio_tools::ConverterScaler::setFactor()']]],
- ['setfeedbackgain_2545',['setFeedbackGain',['../classaudio__tools_1_1_filtered_delay.html#ad77bc0821f5c6d26d7c840fb63e687e6',1,'audio_tools::FilteredDelay::setFeedbackGain()'],['../classaudio__tools_1_1_simple_delay.html#ad77bc0821f5c6d26d7c840fb63e687e6',1,'audio_tools::SimpleDelay::setFeedbackGain()']]],
- ['setfile_2546',['setFile',['../classaudio__tools_1_1_file_loop_t.html#a32d5d25919e43b8c99e16c87629986b7',1,'audio_tools::FileLoopT::setFile()'],['../classaudio__tools_1_1_ring_buffer_file.html#a15fc8d742a570baf624715fccb6db44c',1,'audio_tools::RingBufferFile::setFile()']]],
- ['setfilefilter_2547',['setFileFilter',['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#ad1d0f199434fe2e3550d5b39dab3c6a6',1,'audio_tools::AudioSourceIdxSDFAT::setFileFilter()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#ad1d0f199434fe2e3550d5b39dab3c6a6',1,'audio_tools::AudioSourceSDFAT::setFileFilter()'],['../classaudio__tools_1_1_audio_source_s_t_d.html#ad1d0f199434fe2e3550d5b39dab3c6a6',1,'audio_tools::AudioSourceSTD::setFileFilter()'],['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html#ad1d0f199434fe2e3550d5b39dab3c6a6',1,'audio_tools::AudioSourceSPIFFS::setFileFilter()'],['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html#ad1d0f199434fe2e3550d5b39dab3c6a6',1,'audio_tools::AudioSourceSDMMC::setFileFilter()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#ad1d0f199434fe2e3550d5b39dab3c6a6',1,'audio_tools::AudioSourceSDFAT::setFileFilter()'],['../classaudio__tools_1_1_audio_source_s_d.html#ad1d0f199434fe2e3550d5b39dab3c6a6',1,'audio_tools::AudioSourceSD::setFileFilter()'],['../classaudio__tools_1_1_audio_source_little_f_s.html#ad1d0f199434fe2e3550d5b39dab3c6a6',1,'audio_tools::AudioSourceLittleFS::setFileFilter()'],['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html#ad1d0f199434fe2e3550d5b39dab3c6a6',1,'audio_tools::AudioSourceIdxSDMMC::setFileFilter()'],['../classaudio__tools_1_1_audio_source_idx_s_d.html#ad1d0f199434fe2e3550d5b39dab3c6a6',1,'audio_tools::AudioSourceIdxSD::setFileFilter()']]],
- ['setfilter_2548',['setFilter',['../classaudio__tools_1_1_filtered_stream.html#aa150bce25b70367e98b23fe01e44cae3',1,'audio_tools::FilteredStream::setFilter(int channel, Filter< TF > *filter)'],['../classaudio__tools_1_1_filtered_stream.html#a5fc6bd8fe5a3ac2ecf79f35018ef93ff',1,'audio_tools::FilteredStream::setFilter(int channel, Filter< TF > &filter)'],['../classaudio__tools_1_1_converter_n_channels.html#acd3ea5fe5d4f6e3837e15d1e8eceae20',1,'audio_tools::ConverterNChannels::setFilter()']]],
- ['setfiltermetadata_2549',['setFilterMetaData',['../classaudio__tools_1_1_m_p3_decoder_helix.html#ac8532db8250b1047a70318a6d80b91ec',1,'audio_tools::MP3DecoderHelix']]],
- ['setfrequency_2550',['setFrequency',['../classaudio__tools_1_1_sine_wave_generator.html#a0517b8e9504478c5d7f9c5b39d2853bf',1,'audio_tools::SineWaveGenerator']]],
- ['seticymetaint_2551',['setIcyMetaInt',['../classaudio__tools_1_1_meta_data_i_c_y.html#ae940d1341b26160e895b53ba8a3af95d',1,'audio_tools::MetaDataICY']]],
- ['setid_2552',['setId',['../classaudio__tools_1_1_audio_effect.html#a3d929477fef71d52c9c6df2ba2d50841',1,'audio_tools::AudioEffect']]],
- ['setindex_2553',['setIndex',['../classaudio__tools_1_1_audio_source.html#ac628e03bdd1bcc6b8ed89b8465b0aca0',1,'audio_tools::AudioSource::setIndex()'],['../classaudio__tools_1_1_audio_player.html#a7e6f0e6e369424058c72c94d11ff94cc',1,'audio_tools::AudioPlayer::setIndex()']]],
- ['setinfocallback_2554',['setInfoCallback',['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#a4eec588e512fb89ed7137ceb50e5c3f9',1,'audio_tools::MP3DecoderMAD']]],
- ['setinput_2555',['setInput',['../classaudio__tools_1_1_encoded_audio_stream.html#af8124372afa43e8a096c4c63a2a99182',1,'audio_tools::EncodedAudioStream::setInput()'],['../classaudio__tools_1_1_audio_effects.html#ab528c2d2e5318406f6b2ca46eebf8e4f',1,'audio_tools::AudioEffects::setInput()']]],
- ['setinputbuffersize_2556',['setInputBufferSize',['../classaudio__tools_1_1_a_a_c_decoder_f_a_a_d.html#ab786002cf92309cc25ec3f4e9cd56d4a',1,'audio_tools::AACDecoderFAAD']]],
- ['setinputpin1_2557',['setInputPin1',['../classaudio__tools_1_1_analog_config_e_s_p32.html#a6bd795f84917bf2fe17941ec405dbd5b',1,'audio_tools::AnalogConfigESP32']]],
- ['setinputstream_2558',['setInputStream',['../classaudio__tools_1_1_streaming_decoder.html#a951eeb2b651188b0727c989dc5d8e567',1,'audio_tools::StreamingDecoder::setInputStream()'],['../classaudio__tools_1_1_f_l_a_c_decoder.html#a3bcad8389ae08e07b345ab270c187078',1,'audio_tools::FLACDecoder::setInputStream()'],['../classaudio__tools_1_1_vorbis_decoder.html#a3aef9d5413505458a252d8701f7c4dcf',1,'audio_tools::VorbisDecoder::setInputStream()']]],
- ['setinterpolationtable_2559',['setInterpolationTable',['../classaudio__tools_1_1_delay_effect_base.html#a39382a2843d737b91fab1ab79dd2be71',1,'audio_tools::DelayEffectBase']]],
- ['setinterpreter_2560',['setInterpreter',['../classaudio__tools_1_1_tf_lite_audio_stream.html#aa743d121e36fd235f8f5b0c2f74cf706',1,'audio_tools::TfLiteAudioStream']]],
- ['setinterptable_2561',['setInterpTable',['../classaudio__tools_1_1_modulation_base_class.html#a907f1ff2e67090fb4233f7cd8384030b',1,'audio_tools::ModulationBaseClass']]],
- ['setisheadercallback_2562',['setIsHeaderCallback',['../classaudio__tools_1_1_container_m_p4.html#ac5da9b5e3d1406eefa81e4b602364f0a',1,'audio_tools::ContainerMP4']]],
- ['setissave_2563',['setIsSave',['../classaudio__tools_1_1_timer_alarm_repeating_driver_base.html#a8f9cb98f2a25a85ec3547cfe199a7c94',1,'audio_tools::TimerAlarmRepeatingDriverBase']]],
- ['setisulaw_2564',['setIsULaw',['../classaudio__tools_1_1_r_t_s_p_format_g711.html#a6f99b9cd87719cc8c28249aa04fb8074',1,'audio_tools::RTSPFormatG711']]],
- ['setkeys_2565',['setKeys',['../classaudio__tools_1_1_synthesizer.html#a68a78f9040b1e4a51c04c839a78d540d',1,'audio_tools::Synthesizer']]],
- ['setlabelvalue_2566',['setLabelValue',['../classaudio__tools_1_1_faust_stream.html#afe681c8ec67cf8ba9eef6444024dec03',1,'audio_tools::FaustStream']]],
- ['setlength_2567',['setLength',['../classaudio__tools_1_1_str.html#a9561273c1d7b1b056b3af2fdf693283f',1,'audio_tools::Str']]],
- ['setlengthundo_2568',['setLengthUndo',['../classaudio__tools_1_1_str.html#afc555624c5ba61a095b954d9785cd18e',1,'audio_tools::Str']]],
- ['setlimittoavailabledata_2569',['setLimitToAvailableData',['../classaudio__tools_1_1_input_mixer.html#a996e0659179eaad07923ed13e328a6a2',1,'audio_tools::InputMixer']]],
- ['setloglevel_2570',['setLogLevel',['../classaudio__tools_1_1_encoded_audio_output.html#a128c19eda4c8e6c68f0cd129cee47b4c',1,'audio_tools::EncodedAudioOutput::setLogLevel()'],['../classaudio__tools_1_1_h_l_s_parser.html#a128c19eda4c8e6c68f0cd129cee47b4c',1,'audio_tools::HLSParser::setLogLevel()'],['../classaudio__tools_1_1_h_l_s_stream.html#a128c19eda4c8e6c68f0cd129cee47b4c',1,'audio_tools::HLSStream::setLogLevel()'],['../classaudio__tools_1_1_u_r_l_stream.html#a128c19eda4c8e6c68f0cd129cee47b4c',1,'audio_tools::URLStream::setLogLevel()']]],
- ['setlookahead_2571',['setLookahead',['../classaudio__tools_1_1_a_d_p_c_m_decoder_x_q.html#aed6d991a840256eb66f16c1fbb172439',1,'audio_tools::ADPCMDecoderXQ::setLookahead()'],['../classaudio__tools_1_1_a_d_p_c_m_encoder_x_q.html#aed6d991a840256eb66f16c1fbb172439',1,'audio_tools::ADPCMEncoderXQ::setLookahead()']]],
- ['setloop_2572',['setLoop',['../classaudio__tools_1_1_memory_stream.html#a808d67693c38dccdc6b4692c65d6c36f',1,'audio_tools::MemoryStream::setLoop()'],['../classaudio__tools_1_1_dynamic_memory_stream.html#a808d67693c38dccdc6b4692c65d6c36f',1,'audio_tools::DynamicMemoryStream::setLoop()']]],
- ['setloopcount_2573',['setLoopCount',['../classaudio__tools_1_1_file_loop_t.html#a127bfce671f2e8a92304cc87473f3e7e',1,'audio_tools::FileLoopT']]],
- ['setmaxamplitudestep_2574',['setMaxAmplitudeStep',['../classaudio__tools_1_1_sine_from_table.html#ad52a35a3e13049686ea5fde677d269cb',1,'audio_tools::SineFromTable']]],
- ['setmaxframesize_2575',['setMaxFrameSize',['../classaudio__tools_1_1_m_p3_decoder_helix.html#a125936b03a64474ad370c63c4291a9c7',1,'audio_tools::MP3DecoderHelix::setMaxFrameSize()'],['../classaudio__tools_1_1_a_a_c_decoder_helix.html#a125936b03a64474ad370c63c4291a9c7',1,'audio_tools::AACDecoderHelix::setMaxFrameSize(size_t len)']]],
- ['setmaxpcmsize_2576',['setMaxPCMSize',['../classaudio__tools_1_1_a_a_c_decoder_helix.html#a00f9dda211e2236d718c7c68bf610ea7',1,'audio_tools::AACDecoderHelix::setMaxPCMSize()'],['../classaudio__tools_1_1_m_p3_decoder_helix.html#a00f9dda211e2236d718c7c68bf610ea7',1,'audio_tools::MP3DecoderHelix::setMaxPCMSize()']]],
- ['setmaxsize_2577',['setMaxSize',['../classaudio__tools_1_1_container_m_p4.html#ad86e401cecc65a533c20cdf92d7bdc54',1,'audio_tools::ContainerMP4']]],
- ['setmemoryallocationlogging_2578',['setMemoryAllocationLogging',['../classaudio__tools_1_1_m_t_s_decoder.html#aec803109f8430cb737532bd5070d9bb2',1,'audio_tools::MTSDecoder']]],
- ['setmetadatacallback_2579',['setMetadataCallback',['../classaudio__tools_1_1_i_c_y_stream.html#ad95873c68a776ff93a5a4e35c1fe4eb0',1,'audio_tools::ICYStream::setMetadataCallback()'],['../classaudio__tools_1_1_audio_player.html#ab32c4554cbd24248683bd0e5a0e1f360',1,'audio_tools::AudioPlayer::setMetadataCallback()']]],
- ['setmidiname_2580',['setMidiName',['../classaudio__tools_1_1_synthesizer.html#a9acca072896cc09fb7b7c7b7ce27b4f5',1,'audio_tools::Synthesizer']]],
- ['setmimecallback_2581',['setMimeCallback',['../classaudio__tools_1_1_stream_copy_t.html#aba348716f2d6eb5b35c12a7aed42cd4b',1,'audio_tools::StreamCopyT']]],
- ['setminwritebytes_2582',['setMinWriteBytes',['../class_audio_e_s_p32_u_l_p.html#aab8df60a25adfbed44d0ca569eb2f306',1,'AudioESP32ULP']]],
- ['setmonodac_2583',['setMonoDAC',['../class_audio_e_s_p32_u_l_p.html#a4afaec56506efe127cd11f309435edc6',1,'AudioESP32ULP']]],
- ['setmute_2584',['setMute',['../classaudio__tools_1_1_audio_kit_stream.html#aa2a08d0fd7c4e897419766a5a0ebc291',1,'audio_tools::AudioKitStream']]],
- ['setname_2585',['setName',['../classaudio__tools_1_1_r_t_s_p_format_audio_tools.html#ab3a256e7d9fad73fa57de7c1fedf51c5',1,'audio_tools::RTSPFormatAudioTools']]],
- ['setnewline_2586',['setNewLine',['../classaudio__tools_1_1_decoder_base64.html#afc857b7b58a7947adea49b4e9702865b',1,'audio_tools::DecoderBase64::setNewLine()'],['../classaudio__tools_1_1_encoder_base64.html#afa16faf4d738a7e4a387325e9f9e5048',1,'audio_tools::EncoderBase64::setNewLine()']]],
- ['setnoiseshaping_2587',['setNoiseShaping',['../classaudio__tools_1_1_a_d_p_c_m_encoder_x_q.html#a4b77b224cc2cc916223a44f08d95ee18',1,'audio_tools::ADPCMEncoderXQ::setNoiseShaping()'],['../classaudio__tools_1_1_a_d_p_c_m_decoder_x_q.html#a4b77b224cc2cc916223a44f08d95ee18',1,'audio_tools::ADPCMDecoderXQ::setNoiseShaping()']]],
- ['setnotify_2588',['setNotify',['../classaudio__tools_1_1_audio_player.html#a07ead11210cd6a9b0dd5d1655bb40088',1,'audio_tools::AudioPlayer']]],
- ['setnotifyaudiochange_2589',['setNotifyAudioChange',['../classaudio__tools_1_1_timer_callback_audio_stream.html#a48f731a1a7698c73ac736b17066dcf51',1,'audio_tools::TimerCallbackAudioStream::setNotifyAudioChange()'],['../classaudio__tools_1_1_null_stream.html#a716343f0476acda119a0c1c9598261ce',1,'audio_tools::NullStream::setNotifyAudioChange()'],['../classaudio__tools_1_1_ogg_container_decoder.html#a716343f0476acda119a0c1c9598261ce',1,'audio_tools::OggContainerDecoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_binary_container_decoder.html#a48f731a1a7698c73ac736b17066dcf51',1,'audio_tools::BinaryContainerDecoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_wav_i_m_a_decoder.html#a48f731a1a7698c73ac736b17066dcf51',1,'audio_tools::WavIMADecoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_w_a_v_decoder.html#a48f731a1a7698c73ac736b17066dcf51',1,'audio_tools::WAVDecoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_vorbis_decoder.html#a716343f0476acda119a0c1c9598261ce',1,'audio_tools::VorbisDecoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_s_b_c_decoder.html#a64e0825fad7a777d93e43602670010c7',1,'audio_tools::SBCDecoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_decoder_float.html#a716343f0476acda119a0c1c9598261ce',1,'audio_tools::DecoderFloat::setNotifyAudioChange()'],['../classaudio__tools_1_1_opus_audio_decoder.html#a716343f0476acda119a0c1c9598261ce',1,'audio_tools::OpusAudioDecoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_m_p3_decoder_mini.html#a48f731a1a7698c73ac736b17066dcf51',1,'audio_tools::MP3DecoderMini::setNotifyAudioChange()'],['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#a64e0825fad7a777d93e43602670010c7',1,'audio_tools::MP3DecoderMAD::setNotifyAudioChange()'],['../classaudio__tools_1_1_m_p3_decoder_helix.html#a48f731a1a7698c73ac736b17066dcf51',1,'audio_tools::MP3DecoderHelix::setNotifyAudioChange()'],['../classaudio__tools_1_1_l_c3_decoder.html#a64e0825fad7a777d93e43602670010c7',1,'audio_tools::LC3Decoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_i_l_b_c_decoder.html#a64e0825fad7a777d93e43602670010c7',1,'audio_tools::ILBCDecoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_decoder_l16.html#a716343f0476acda119a0c1c9598261ce',1,'audio_tools::DecoderL16::setNotifyAudioChange()'],['../classaudio__tools_1_1_audio_decoder.html#a4626becb07db8422467ad6e787b2b8d4',1,'audio_tools::AudioDecoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_codec_n_o_p.html#a64e0825fad7a777d93e43602670010c7',1,'audio_tools::CodecNOP::setNotifyAudioChange()'],['../classaudio__tools_1_1_streaming_decoder.html#a8c677cf9ee88f52f9f48ef79988eb908',1,'audio_tools::StreamingDecoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_encoded_audio_output.html#a716343f0476acda119a0c1c9598261ce',1,'audio_tools::EncodedAudioOutput::setNotifyAudioChange()'],['../classaudio__tools_1_1_a_a_c_decoder_f_d_k.html#a64e0825fad7a777d93e43602670010c7',1,'audio_tools::AACDecoderFDK::setNotifyAudioChange()'],['../classaudio__tools_1_1_decoder_basic.html#a716343f0476acda119a0c1c9598261ce',1,'audio_tools::DecoderBasic::setNotifyAudioChange()'],['../classaudio__tools_1_1_f_l_a_c_decoder.html#a48f731a1a7698c73ac736b17066dcf51',1,'audio_tools::FLACDecoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_g722_decoder.html#a64e0825fad7a777d93e43602670010c7',1,'audio_tools::G722Decoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_g7xx_decoder.html#a716343f0476acda119a0c1c9598261ce',1,'audio_tools::G7xxDecoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_g_s_m_decoder.html#a64e0825fad7a777d93e43602670010c7',1,'audio_tools::GSMDecoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_decoder_helix.html#a48f731a1a7698c73ac736b17066dcf51',1,'audio_tools::DecoderHelix::setNotifyAudioChange()'],['../classaudio__tools_1_1_copy_decoder.html#a48f731a1a7698c73ac736b17066dcf51',1,'audio_tools::CopyDecoder::setNotifyAudioChange()']]],
- ['setoffset_2590',['setOffset',['../classaudio__tools_1_1_converter_scaler.html#ab0ce7df93a3e1e7a95dd10411bca0c8d',1,'audio_tools::ConverterScaler']]],
- ['setoffsine_2591',['setOffSine',['../classaudio__tools_1_1_modulation_base_class.html#ad6287d809d41a2631eca2f6f613bfd44',1,'audio_tools::ModulationBaseClass']]],
- ['setoggoutput_2592',['setOggOutput',['../classaudio__tools_1_1_ogg_container_encoder.html#a7cca57574879e4a3423fdd9ed3093125',1,'audio_tools::OggContainerEncoder']]],
- ['setonconnectcallback_2593',['setOnConnectCallback',['../classaudio__tools_1_1_u_r_l_stream.html#ac4f59d434249e98049f1bf6917a4faec',1,'audio_tools::URLStream::setOnConnectCallback()'],['../classaudio__tools_1_1_http_request.html#ac4f59d434249e98049f1bf6917a4faec',1,'audio_tools::HttpRequest::setOnConnectCallback()']]],
- ['setoptions_2594',['setOptions',['../classaudio__tools_1_1_g722_decoder.html#acfff0a5c7d4142ab77da6f8ca276ecf4',1,'audio_tools::G722Decoder::setOptions()'],['../classaudio__tools_1_1_g722_encoder.html#acfff0a5c7d4142ab77da6f8ca276ecf4',1,'audio_tools::G722Encoder::setOptions()']]],
- ['setoutput_2595',['setOutput',['../classaudio__tools_1_1_m_p3_decoder_mini.html#a46f2c85361f5459bb6a58dc28dc3ee9a',1,'audio_tools::MP3DecoderMini::setOutput()'],['../classaudio__tools_1_1_g7xx_decoder.html#a065fe4c0d3543644ab523a5d9b5fb9c0',1,'audio_tools::G7xxDecoder::setOutput()'],['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#ae1220e7e3542f5a84c21fe2f7cef194c',1,'audio_tools::MP3DecoderMAD::setOutput()'],['../classaudio__tools_1_1_m_p3_encoder_l_a_m_e.html#a93b5bd320ae10a808fb0de3eb5e5b387',1,'audio_tools::MP3EncoderLAME::setOutput()'],['../classaudio__tools_1_1_m_p3_decoder_helix.html#a5987a9f7ba96694397f2af2d87843564',1,'audio_tools::MP3DecoderHelix::setOutput()'],['../classaudio__tools_1_1_l_c3_decoder.html#a33190106b1d5de89d6af68ad5924f7be',1,'audio_tools::LC3Decoder::setOutput()'],['../classaudio__tools_1_1_encoder_l8.html#a065fe4c0d3543644ab523a5d9b5fb9c0',1,'audio_tools::EncoderL8::setOutput()'],['../classaudio__tools_1_1_encoder_l16.html#a065fe4c0d3543644ab523a5d9b5fb9c0',1,'audio_tools::EncoderL16::setOutput()'],['../classaudio__tools_1_1_decoder_l16.html#a065fe4c0d3543644ab523a5d9b5fb9c0',1,'audio_tools::DecoderL16::setOutput()'],['../classaudio__tools_1_1_i_l_b_c_decoder.html#a33190106b1d5de89d6af68ad5924f7be',1,'audio_tools::ILBCDecoder::setOutput()'],['../classaudio__tools_1_1_decoder_helix.html#a5987a9f7ba96694397f2af2d87843564',1,'audio_tools::DecoderHelix::setOutput()'],['../classaudio__tools_1_1_g_s_m_decoder.html#a33190106b1d5de89d6af68ad5924f7be',1,'audio_tools::GSMDecoder::setOutput()'],['../classaudio__tools_1_1_binary_container_decoder.html#a46f2c85361f5459bb6a58dc28dc3ee9a',1,'audio_tools::BinaryContainerDecoder::setOutput()'],['../classaudio__tools_1_1_opus_audio_decoder.html#a065fe4c0d3543644ab523a5d9b5fb9c0',1,'audio_tools::OpusAudioDecoder::setOutput()'],['../classaudio__tools_1_1_opus_audio_encoder.html#a065fe4c0d3543644ab523a5d9b5fb9c0',1,'audio_tools::OpusAudioEncoder::setOutput()'],['../classaudio__tools_1_1_s_b_c_decoder.html#a33190106b1d5de89d6af68ad5924f7be',1,'audio_tools::SBCDecoder::setOutput()'],['../classaudio__tools_1_1_vorbis_decoder.html#a59b6d2fc413c9b7c0e93decdbaaf3357',1,'audio_tools::VorbisDecoder::setOutput()'],['../classaudio__tools_1_1_w_a_v_decoder.html#a93b5bd320ae10a808fb0de3eb5e5b387',1,'audio_tools::WAVDecoder::setOutput()'],['../classaudio__tools_1_1_w_a_v_encoder.html#a05ff4cf361d54457ed8586e8c14aa922',1,'audio_tools::WAVEncoder::setOutput()'],['../classaudio__tools_1_1_wav_i_m_a_decoder.html#a93b5bd320ae10a808fb0de3eb5e5b387',1,'audio_tools::WavIMADecoder::setOutput()'],['../classaudio__tools_1_1_a_v_i_decoder.html#accd4a0f8bb385180e8006fd543aef936',1,'audio_tools::AVIDecoder::setOutput()'],['../classaudio__tools_1_1_ogg_container_decoder.html#a1a28a6cba0e36eb54e72b3336f8b3ed1',1,'audio_tools::OggContainerDecoder::setOutput()'],['../classaudio__tools_1_1_ogg_container_output.html#affacde5c7c0aefbf35fe2948cbade203',1,'audio_tools::OggContainerOutput::setOutput()'],['../classaudio__tools_1_1_ogg_container_encoder.html#a1a28a6cba0e36eb54e72b3336f8b3ed1',1,'audio_tools::OggContainerEncoder::setOutput()'],['../classaudio__tools_1_1_on_off_output.html#ae1220e7e3542f5a84c21fe2f7cef194c',1,'audio_tools::OnOffOutput::setOutput()'],['../classaudio__tools_1_1_encoder_float.html#a065fe4c0d3543644ab523a5d9b5fb9c0',1,'audio_tools::EncoderFloat::setOutput()'],['../classaudio__tools_1_1_g722_decoder.html#a33190106b1d5de89d6af68ad5924f7be',1,'audio_tools::G722Decoder::setOutput()'],['../classaudio__tools_1_1_audio_decoder.html#a74fb348e7fbaed39364af8869fb05231',1,'audio_tools::AudioDecoder::setOutput(AudioStream &out_stream)'],['../classaudio__tools_1_1_audio_decoder.html#acf58dd0aedd8748b499ca948bd2cdf5d',1,'audio_tools::AudioDecoder::setOutput(AudioOutput &out_stream)'],['../classaudio__tools_1_1_audio_decoder.html#accd4a0f8bb385180e8006fd543aef936',1,'audio_tools::AudioDecoder::setOutput(Print &out_stream) override'],['../classaudio__tools_1_1_codec_n_o_p.html#a33190106b1d5de89d6af68ad5924f7be',1,'audio_tools::CodecNOP::setOutput()'],['../classaudio__tools_1_1_streaming_decoder.html#a8f0e458c434c843a5a9f4d5ff87acc71',1,'audio_tools::StreamingDecoder::setOutput(Print &outStream)=0'],['../classaudio__tools_1_1_streaming_decoder.html#a74fb348e7fbaed39364af8869fb05231',1,'audio_tools::StreamingDecoder::setOutput(AudioStream &out_stream)'],['../classaudio__tools_1_1_streaming_decoder.html#acf58dd0aedd8748b499ca948bd2cdf5d',1,'audio_tools::StreamingDecoder::setOutput(AudioOutput &out_stream)'],['../classaudio__tools_1_1_encoded_audio_output.html#af2416b6284de657da2d08005d10413e7',1,'audio_tools::EncodedAudioOutput::setOutput()'],['../classaudio__tools_1_1_a_a_c_decoder_f_d_k.html#a93b5bd320ae10a808fb0de3eb5e5b387',1,'audio_tools::AACDecoderFDK::setOutput()'],['../classaudio__tools_1_1_a_a_c_encoder_f_d_k.html#a93b5bd320ae10a808fb0de3eb5e5b387',1,'audio_tools::AACEncoderFDK::setOutput()'],['../classaudio__tools_1_1_a_a_c_decoder_helix.html#a33190106b1d5de89d6af68ad5924f7be',1,'audio_tools::AACDecoderHelix::setOutput()'],['../classaudio__tools_1_1_a_d_p_c_m_decoder_x_q.html#a33190106b1d5de89d6af68ad5924f7be',1,'audio_tools::ADPCMDecoderXQ::setOutput()'],['../classaudio__tools_1_1_a_p_t_x_decoder.html#a33190106b1d5de89d6af68ad5924f7be',1,'audio_tools::APTXDecoder::setOutput()'],['../classaudio__tools_1_1_decoder_base64.html#a05ff4cf361d54457ed8586e8c14aa922',1,'audio_tools::DecoderBase64::setOutput()'],['../classaudio__tools_1_1_encoder_base64.html#a16c143810cee84c4b39a316cc720a606',1,'audio_tools::EncoderBase64::setOutput()'],['../classaudio__tools_1_1_decoder_basic.html#a065fe4c0d3543644ab523a5d9b5fb9c0',1,'audio_tools::DecoderBasic::setOutput()'],['../classaudio__tools_1_1_encoder_basic.html#a05ff4cf361d54457ed8586e8c14aa922',1,'audio_tools::EncoderBasic::setOutput()'],['../classaudio__tools_1_1_codec2_decoder.html#a33190106b1d5de89d6af68ad5924f7be',1,'audio_tools::Codec2Decoder::setOutput()'],['../classaudio__tools_1_1_copy_decoder.html#a33190106b1d5de89d6af68ad5924f7be',1,'audio_tools::CopyDecoder::setOutput()'],['../classaudio__tools_1_1_f_l_a_c_decoder.html#a33190106b1d5de89d6af68ad5924f7be',1,'audio_tools::FLACDecoder::setOutput()'],['../classaudio__tools_1_1_f_l_a_c_encoder.html#a065fe4c0d3543644ab523a5d9b5fb9c0',1,'audio_tools::FLACEncoder::setOutput()'],['../classaudio__tools_1_1_decoder_float.html#a065fe4c0d3543644ab523a5d9b5fb9c0',1,'audio_tools::DecoderFloat::setOutput()'],['../classaudio__tools_1_1_a_d_p_c_m_decoder.html#accd4a0f8bb385180e8006fd543aef936',1,'audio_tools::ADPCMDecoder::setOutput()']]],
- ['setoutputbuffersize_2596',['setOutputBufferSize',['../classaudio__tools_1_1_a_a_c_encoder_f_d_k.html#a37cb082ebc94d0f901ff4addd04d9db3',1,'audio_tools::AACEncoderFDK']]],
- ['setpassword_2597',['setPassword',['../classaudio__tools_1_1_abstract_u_r_l_stream.html#a012ee07a9c3a44ef974560a4d89092e9',1,'audio_tools::AbstractURLStream::setPassword()'],['../classaudio__tools_1_1_h_l_s_stream.html#a1da9a1c2befdfb32e235d3989f6e16d2',1,'audio_tools::HLSStream::setPassword()'],['../classaudio__tools_1_1_i_c_y_stream.html#ae81c6839be5fb51cf5ffd9300a95534b',1,'audio_tools::ICYStream::setPassword()'],['../classaudio__tools_1_1_i_c_y_stream_buffered.html#ae81c6839be5fb51cf5ffd9300a95534b',1,'audio_tools::ICYStreamBuffered::setPassword()'],['../classaudio__tools_1_1_u_r_l_stream.html#ae81c6839be5fb51cf5ffd9300a95534b',1,'audio_tools::URLStream::setPassword()'],['../classaudio__tools_1_1_u_r_l_stream_buffered.html#ae81c6839be5fb51cf5ffd9300a95534b',1,'audio_tools::URLStreamBuffered::setPassword()']]],
- ['setpath_2598',['setPath',['../classaudio__tools_1_1_audio_player.html#a2f24eb6d5fb69a5230a1927fa90c6f00',1,'audio_tools::AudioPlayer::setPath()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a913d6f553d4d73f1ac49a36fbe57997a',1,'audio_tools::AudioSourceSDFAT::setPath()'],['../classaudio__tools_1_1_audio_source_s_t_d.html#a913d6f553d4d73f1ac49a36fbe57997a',1,'audio_tools::AudioSourceSTD::setPath()'],['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html#a913d6f553d4d73f1ac49a36fbe57997a',1,'audio_tools::AudioSourceSPIFFS::setPath()'],['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html#a913d6f553d4d73f1ac49a36fbe57997a',1,'audio_tools::AudioSourceSDMMC::setPath()'],['../classaudio__tools_1_1_audio_source_s_d.html#a913d6f553d4d73f1ac49a36fbe57997a',1,'audio_tools::AudioSourceSD::setPath()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a913d6f553d4d73f1ac49a36fbe57997a',1,'audio_tools::AudioSourceSDFAT::setPath()'],['../classaudio__tools_1_1_audio_source_idx_s_d.html#a913d6f553d4d73f1ac49a36fbe57997a',1,'audio_tools::AudioSourceIdxSD::setPath()'],['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#a913d6f553d4d73f1ac49a36fbe57997a',1,'audio_tools::AudioSourceIdxSDFAT::setPath()'],['../classaudio__tools_1_1_audio_source_little_f_s.html#a913d6f553d4d73f1ac49a36fbe57997a',1,'audio_tools::AudioSourceLittleFS::setPath()'],['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html#a913d6f553d4d73f1ac49a36fbe57997a',1,'audio_tools::AudioSourceIdxSDMMC::setPath()']]],
- ['setpowersave_2599',['setPowerSave',['../classaudio__tools_1_1_u_r_l_stream.html#a6fab9a37a748ff9345c0f229b1504ef8',1,'audio_tools::URLStream']]],
- ['setpwmtimer_2600',['setPWMTimer',['../classaudio__tools_1_1_p_w_m_driver_s_t_m32.html#a565686a76d896687f9d055c963f215b8',1,'audio_tools::PWMDriverSTM32']]],
- ['setramp_2601',['setRamp',['../classaudio__tools_1_1_modulation_base_class.html#a3900e838d5526b128756c6679fb4fa0a',1,'audio_tools::ModulationBaseClass']]],
- ['setrate_2602',['setRate',['../classaudio__tools_1_1_simple_flanger.html#a67d5fb7283e29b2582b107b8f3137a91',1,'audio_tools::SimpleFlanger']]],
- ['setreceivecallback_2603',['setReceiveCallback',['../classaudio__tools_1_1_e_s_p_now_stream.html#a8a2ce66666bf4387e15a7c619946b601',1,'audio_tools::ESPNowStream']]],
- ['setretry_2604',['setRetry',['../classaudio__tools_1_1_stream_copy_t.html#a62c40d01e8b9a6a315590d05b4af9dfd',1,'audio_tools::StreamCopyT']]],
- ['setrewindcallback_2605',['setRewindCallback',['../classaudio__tools_1_1_memory_stream.html#af53e1ac369ee77cf98be89710f364956',1,'audio_tools::MemoryStream']]],
- ['setsawtooth_2606',['setSawtooth',['../classaudio__tools_1_1_modulation_base_class.html#a86b30e29df1ee81a54e242924c1002ac',1,'audio_tools::ModulationBaseClass']]],
- ['setsendcallback_2607',['setSendCallback',['../classaudio__tools_1_1_e_s_p_now_stream.html#a19b2f79c6278f469fceebf0696a7d5c7',1,'audio_tools::ESPNowStream']]],
- ['setsigned_2608',['setSigned',['../classaudio__tools_1_1_decoder_l8.html#a0322b050a68a8c578d8a090a932e8bdc',1,'audio_tools::DecoderL8::setSigned()'],['../classaudio__tools_1_1_encoder_l8.html#a0322b050a68a8c578d8a090a932e8bdc',1,'audio_tools::EncoderL8::setSigned()']]],
- ['setsilenceoninactive_2609',['setSilenceOnInactive',['../classaudio__tools_1_1_audio_player.html#a24f4ec11382e0812ee4e2711228fe94a',1,'audio_tools::AudioPlayer']]],
- ['setsimplelpf_2610',['setSimpleLpf',['../classaudio__tools_1_1_filter_effect_base.html#a42b602daf9f4b61a888ddc7a0468b429',1,'audio_tools::FilterEffectBase']]],
- ['setsine_2611',['setSine',['../classaudio__tools_1_1_modulation_base_class.html#a81e68f731b9b9a66a4ae7d8ad7d5f55c',1,'audio_tools::ModulationBaseClass']]],
- ['setsize_2612',['setSize',['../classaudio__tools_1_1_progress_stream.html#a6a8807196a10843ecf743d358394cb29',1,'audio_tools::ProgressStream::setSize()'],['../classaudio__tools_1_1_file_loop_t.html#a6a8807196a10843ecf743d358394cb29',1,'audio_tools::FileLoopT::setSize()']]],
- ['setsourceaudioinfo_2613',['setSourceAudioInfo',['../classaudio__tools_1_1_format_converter_stream.html#a67ebca633a73d3b088928fb2e788437b',1,'audio_tools::FormatConverterStream']]],
- ['setspeakeractive_2614',['setSpeakerActive',['../classaudio__tools_1_1_audio_kit_stream.html#a1fdd798e6ae46c5c0bd4b3f42bf18220',1,'audio_tools::AudioKitStream']]],
- ['setspectralbandreplication_2615',['setSpectralBandReplication',['../classaudio__tools_1_1_a_a_c_encoder_f_d_k.html#ac3a4fe15c3161304411b3492b4f4afa5',1,'audio_tools::AACEncoderFDK']]],
- ['setsquare_2616',['setSquare',['../classaudio__tools_1_1_modulation_base_class.html#ab73b9813f3f01891821ca11f7aca2b4e',1,'audio_tools::ModulationBaseClass']]],
- ['setssid_2617',['setSSID',['../classaudio__tools_1_1_u_r_l_stream_buffered.html#aa746c1e18c63973923557421e7774c89',1,'audio_tools::URLStreamBuffered::setSSID()'],['../classaudio__tools_1_1_u_r_l_stream.html#aa746c1e18c63973923557421e7774c89',1,'audio_tools::URLStream::setSSID()'],['../classaudio__tools_1_1_i_c_y_stream_buffered.html#aa746c1e18c63973923557421e7774c89',1,'audio_tools::ICYStreamBuffered::setSSID()'],['../classaudio__tools_1_1_i_c_y_stream.html#aa746c1e18c63973923557421e7774c89',1,'audio_tools::ICYStream::setSSID()'],['../classaudio__tools_1_1_h_l_s_stream.html#a223488080be4cc2a4584bb0215c9f929',1,'audio_tools::HLSStream::setSSID()'],['../classaudio__tools_1_1_abstract_u_r_l_stream.html#a76cf8ad142c2ec8bfa363295d2ad9ce7',1,'audio_tools::AbstractURLStream::setSSID()']]],
- ['setstartpos_2618',['setStartPos',['../classaudio__tools_1_1_file_loop_t.html#a3df5a898078ba0474b599a978277291e',1,'audio_tools::FileLoopT']]],
- ['setstartsecond_2619',['setStartSecond',['../classaudio__tools_1_1_timed_stream.html#a859b2296256ed629d1a2097fa23c19da',1,'audio_tools::TimedStream']]],
- ['setstepsize_2620',['setStepSize',['../classaudio__tools_1_1_resample_stream.html#a7694bdde8707e5a9f92c36c905be2e56',1,'audio_tools::ResampleStream']]],
- ['setstream_2621',['setStream',['../classaudio__tools_1_1_encoded_audio_output.html#a45597b245106bdfe136907286731d651',1,'audio_tools::EncodedAudioOutput::setStream()'],['../classaudio__tools_1_1_encoded_audio_stream.html#a281977f67359f85e429e51feecf7d9f0',1,'audio_tools::EncodedAudioStream::setStream()'],['../classaudio__tools_1_1_generator_from_stream.html#ab134c748b5b151ba54a2d835de040341',1,'audio_tools::GeneratorFromStream::setStream()'],['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a4ea3110016f67d3dcb9793fcae72288f',1,'audio_tools::I2SDriverNanoBLE::setStream()'],['../classaudio__tools_1_1_audio_player.html#aea658c6f4c17e5aa46acdc4b7bb85a67',1,'audio_tools::AudioPlayer::setStream()'],['../classaudio__tools_1_1_volume_stream.html#afcb2a62320edc10770189f42d3b80c86',1,'audio_tools::VolumeStream::setStream()']]],
- ['setstreamoutputsize_2622',['setStreamOutputSize',['../classaudio__tools_1_1_container_m_p4.html#aa11d4ea3fdd22f0a638419ed1b15389c',1,'audio_tools::ContainerMP4']]],
- ['setsubbands_2623',['setSubbands',['../classaudio__tools_1_1_s_b_c_encoder.html#a4e66cdd854b56dfea563c75c1b041607',1,'audio_tools::SBCEncoder']]],
- ['setswing_2624',['setSwing',['../classaudio__tools_1_1_simple_chorus.html#a6965f12aaac8e5b11dee7146ce45eea5',1,'audio_tools::SimpleChorus']]],
- ['settarget_2625',['setTarget',['../classaudio__tools_1_1_volume_stream.html#a257c8a69cef8507552ff441df96aa770',1,'audio_tools::VolumeStream::setTarget(Stream &in)'],['../classaudio__tools_1_1_volume_stream.html#a6fb55d483321d9d1efc898c720c0205a',1,'audio_tools::VolumeStream::setTarget(Print &out)']]],
- ['settimeout_2626',['setTimeout',['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a4576929311e53dfaed4c0c35d201df04',1,'audio_tools::AudioSourceSDFAT::setTimeout()'],['../classaudio__tools_1_1_audio_source.html#a23e18762a56c2865cfb8abb1f3361af8',1,'audio_tools::AudioSource::setTimeout()'],['../classaudio__tools_1_1_audio_source_u_r_l.html#ab86ded0a4395c59e8c1774e05e4c65e3',1,'audio_tools::AudioSourceURL::setTimeout()'],['../classaudio__tools_1_1_u_r_l_stream.html#a4576929311e53dfaed4c0c35d201df04',1,'audio_tools::URLStream::setTimeout()']]],
- ['settimeoutautonext_2627',['setTimeoutAutoNext',['../classaudio__tools_1_1_audio_source.html#a1d03133fe86ead67820854ef63dadfbd',1,'audio_tools::AudioSource']]],
- ['settimer_2628',['setTimer',['../classaudio__tools_1_1_timer_alarm_repeating_driver_renesas.html#a9e5fae72ee20fa7c8ab512e46117cf5c',1,'audio_tools::TimerAlarmRepeatingDriverRenesas::setTimer()'],['../classaudio__tools_1_1_timer_alarm_repeating_driver_s_t_m32.html#a093a90a34f7e56fbca7098bb27c8317c',1,'audio_tools::TimerAlarmRepeatingDriverSTM32::setTimer()']]],
- ['settouchlimit_2629',['setTouchLimit',['../classaudio__tools_1_1_audio_actions.html#a37349c713b77ec680e33fc9368ad8782',1,'audio_tools::AudioActions']]],
- ['settriangle_2630',['setTriangle',['../classaudio__tools_1_1_modulation_base_class.html#afbf3aba4f54251fa54b7a27ae469deac',1,'audio_tools::ModulationBaseClass']]],
- ['setunderflowlimit_2631',['setUnderflowLimit',['../classaudio__tools_1_1_a_a_c_decoder_f_a_a_d.html#aac2d53ee94003da649cbe82c59b19cb0',1,'audio_tools::AACDecoderFAAD']]],
- ['setup_2632',['setup',['../classaudio__tools_1_1_s_b_c_encoder.html#af34785948af72a85d60ef0a2cae5cf22',1,'audio_tools::SBCEncoder::setup()'],['../classaudio__tools_1_1_e_s_p_now_stream.html#af34785948af72a85d60ef0a2cae5cf22',1,'audio_tools::ESPNowStream::setup()'],['../classaudio__tools_1_1_i_c_y_url_setup.html#a31dda37f277fa22d839a977050bb3a23',1,'audio_tools::ICYUrlSetup::setup()']]],
- ['setupactions_2633',['setupActions',['../classaudio__tools_1_1_audio_kit_stream.html#abb0b64a019aabee31715293f5196d3a3',1,'audio_tools::AudioKitStream']]],
- ['setupaudioinfo_2634',['setupAudioInfo',['../classaudio__tools_1_1_s_b_c_decoder.html#a3a98d1b0565d4ffa9823100e825ed27e',1,'audio_tools::SBCDecoder::setupAudioInfo()'],['../classaudio__tools_1_1_volume_stream.html#a198564f582b08ca779cedd43cafc8102',1,'audio_tools::VolumeStream::setupAudioInfo()']]],
- ['setupbitwidth_2635',['setupBitWidth',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a9053c62d46feeffb49a600f56561e327',1,'audio_tools::I2SDriverNanoBLE']]],
- ['setupbuffers_2636',['setupBuffers',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a1a5dfeb38ee82f0aff1b2337afa3dfd5',1,'audio_tools::I2SDriverNanoBLE']]],
- ['setupchorus_2637',['setupChorus',['../classaudio__tools_1_1_simple_chorus.html#a5c7207a63fe15e97e739eb1c9cb2804c',1,'audio_tools::SimpleChorus']]],
- ['setupclock_2638',['setupClock',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#af5e760265a1b6a308784dd60b3680576',1,'audio_tools::I2SDriverNanoBLE']]],
- ['setupdecoder_2639',['setupDecoder',['../classaudio__tools_1_1_decoder_helix.html#a769e48866fb0f8e11018bab68e02c08f',1,'audio_tools::DecoderHelix']]],
- ['setupdelayeffectbase_2640',['setupDelayEffectBase',['../classaudio__tools_1_1_delay_effect_base.html#a7ccea2a522b973a56da7c2f0280f9edb',1,'audio_tools::DelayEffectBase']]],
- ['setupi2spins_2641',['setupI2SPins',['../classaudio__tools_1_1_audio_kit_stream_config.html#a567e2afb71a4d538ed517075a55b0802',1,'audio_tools::AudioKitStreamConfig']]],
- ['setupinputpin_2642',['setupInputPin',['../classaudio__tools_1_1_analog_driver_e_s_p32.html#a0c7ea54bb345a5754c5faca7e0a9ed0b',1,'audio_tools::AnalogDriverESP32']]],
- ['setuplastsamples_2643',['setupLastSamples',['../classaudio__tools_1_1_resample_stream.html#ae80c7db53037e16c4654f123c8f19a93',1,'audio_tools::ResampleStream']]],
- ['setupmetadata_2644',['setupMetaData',['../classaudio__tools_1_1_meta_data_i_c_y.html#a5522c1d8b9d56e529bcfef31b49c2652',1,'audio_tools::MetaDataICY']]],
- ['setupmode_2645',['setupMode',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a6adb631393cf292dc4bf0fc0998f5b46',1,'audio_tools::I2SDriverNanoBLE']]],
- ['setupmodulationbaseclass_2646',['setupModulationBaseClass',['../classaudio__tools_1_1_modulation_base_class.html#a7bdc015afac5f8ef02208dcb2c23f758',1,'audio_tools::ModulationBaseClass']]],
- ['setupoutput_2647',['setupOutput',['../classaudio__tools_1_1_transformation_reader.html#a49ead13a1391cddd44b4a85f63a01a67',1,'audio_tools::TransformationReader']]],
- ['setuppins_2648',['setupPins',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a9dadce76da103f2a290c973b1f51579c',1,'audio_tools::I2SDriverNanoBLE::setupPins()'],['../classaudio__tools_1_1_analog_driver_arduino.html#a31d554847ae8fdeaba2460e0395cb75f',1,'audio_tools::AnalogDriverArduino::setupPins()']]],
- ['setuppwm_2649',['setupPWM',['../classaudio__tools_1_1_p_w_m_driver_a_v_r.html#a9aab38b961e7af7f2385e1553532cfdb',1,'audio_tools::PWMDriverAVR::setupPWM()'],['../classaudio__tools_1_1_p_w_m_driver_e_s_p32.html#ab9d89f49874ec6da1534423c364453bf',1,'audio_tools::PWMDriverESP32::setupPWM()'],['../classaudio__tools_1_1_p_w_m_driver_m_b_e_d.html#ab9d89f49874ec6da1534423c364453bf',1,'audio_tools::PWMDriverMBED::setupPWM()'],['../classaudio__tools_1_1_p_w_m_driver_renesas.html#ab9d89f49874ec6da1534423c364453bf',1,'audio_tools::PWMDriverRenesas::setupPWM()'],['../classaudio__tools_1_1_p_w_m_driver_s_t_m32.html#ab9d89f49874ec6da1534423c364453bf',1,'audio_tools::PWMDriverSTM32::setupPWM()']]],
- ['setuprxtx_2650',['setupRxTx',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a731db993d69581c99928ea2dd75f8bf7',1,'audio_tools::I2SDriverNanoBLE']]],
- ['setupsimpledelay_2651',['setupSimpleDelay',['../classaudio__tools_1_1_simple_delay.html#a20abea9a7479d41c4f338020f2a5632b',1,'audio_tools::SimpleDelay']]],
- ['setuptimer_2652',['setupTimer',['../classaudio__tools_1_1_p_w_m_driver_e_s_p32.html#adba588f4c4041836e56c7ffb61a04764',1,'audio_tools::PWMDriverESP32::setupTimer()'],['../classaudio__tools_1_1_p_w_m_driver_m_b_e_d.html#adba588f4c4041836e56c7ffb61a04764',1,'audio_tools::PWMDriverMBED::setupTimer()'],['../classaudio__tools_1_1_p_w_m_driver_renesas.html#adba588f4c4041836e56c7ffb61a04764',1,'audio_tools::PWMDriverRenesas::setupTimer()']]],
- ['setupvectors_2653',['setupVectors',['../classaudio__tools_1_1_volume_stream.html#aa43027e46c404244a52b4c8470876edd',1,'audio_tools::VolumeStream']]],
- ['setupvolumestreamconfig_2654',['setupVolumeStreamConfig',['../classaudio__tools_1_1_volume_stream.html#a8ef9fdbdc5ffa4e83da9b18eb2920de3',1,'audio_tools::VolumeStream']]],
- ['seturlcount_2655',['setUrlCount',['../classaudio__tools_1_1_h_l_s_parser.html#a20369e35080b82ef26cd2ca6d90f533a',1,'audio_tools::HLSParser']]],
- ['setvalidationcallback_2656',['setValidationCallback',['../classaudio__tools_1_1_a_v_i_decoder.html#ade7a51a90eb817ac209b7b43c0ddd810',1,'audio_tools::AVIDecoder']]],
- ['setvalue_2657',['setValue',['../classaudio__tools_1_1_memory_stream.html#a45552cd0020b7ceecb2e70826a3f600c',1,'audio_tools::MemoryStream']]],
- ['setvideoaudiosync_2658',['setVideoAudioSync',['../classaudio__tools_1_1_a_v_i_decoder.html#a36ac3357eb6beaf0d441641cdafb3195',1,'audio_tools::AVIDecoder']]],
- ['setvolume_2659',['setVolume',['../classaudio__tools_1_1_generator_from_stream.html#a07325410709887b46c3456058c3863cc',1,'audio_tools::GeneratorFromStream::setVolume()'],['../classaudio__tools_1_1_audio_kit_stream.html#a68eb6bc4f1a8a9ccf4e2368e39371565',1,'audio_tools::AudioKitStream::setVolume(int vol)'],['../classaudio__tools_1_1_audio_kit_stream.html#ae3076da1d31412e3f1ed8677494df700',1,'audio_tools::AudioKitStream::setVolume(float vol)'],['../classaudio__tools_1_1_audio_kit_stream.html#a165bc60d3744cfd8c220ed18ec4c6820',1,'audio_tools::AudioKitStream::setVolume(double vol)'],['../classaudio__tools_1_1_maximilian.html#a12c2fba1888a04d3e954c1eda3a56c34',1,'audio_tools::Maximilian::setVolume()'],['../classaudio__tools_1_1_v_s1053_stream.html#a35c7533999826a3706e97f99442d4c7e',1,'audio_tools::VS1053Stream::setVolume()'],['../classaudio__tools_1_1_w_m8960_stream.html#a35c7533999826a3706e97f99442d4c7e',1,'audio_tools::WM8960Stream::setVolume()'],['../classaudio__tools_1_1_audio_player.html#a85c293aec47a5e3dca892a9de49c5b83',1,'audio_tools::AudioPlayer::setVolume()'],['../classaudio__tools_1_1_volume_stream.html#a35c7533999826a3706e97f99442d4c7e',1,'audio_tools::VolumeStream::setVolume(float vol)'],['../classaudio__tools_1_1_volume_stream.html#a28c83db3d78661d6e35b248d73006314',1,'audio_tools::VolumeStream::setVolume(float vol, int channel)']]],
- ['setvolumecontrol_2660',['setVolumeControl',['../classaudio__tools_1_1_volume_stream.html#af563fb27e0137b006c62af82654083fb',1,'audio_tools::VolumeStream::setVolumeControl()'],['../classaudio__tools_1_1_audio_player.html#a86c685035cdcb866ea328f5907cc68cb',1,'audio_tools::AudioPlayer::setVolumeControl()']]],
- ['setweight_2661',['setWeight',['../classaudio__tools_1_1_output_mixer.html#abb80a48eb1817f480e52497f42b5d4e5',1,'audio_tools::OutputMixer::setWeight()'],['../classaudio__tools_1_1_input_mixer.html#af958d7d7ce83c9577da34c091d216aa3',1,'audio_tools::InputMixer::setWeight()'],['../classaudio__tools_1_1_input_merge.html#abb80a48eb1817f480e52497f42b5d4e5',1,'audio_tools::InputMerge::setWeight()']]],
- ['simplechorus_2662',['SimpleChorus',['../classaudio__tools_1_1_simple_chorus.html#adcabf06f1fc0a8f326e3343d61c5b767',1,'audio_tools::SimpleChorus']]],
- ['simpledelay_2663',['SimpleDelay',['../classaudio__tools_1_1_simple_delay.html#a587a18712662f1f7a5e4f73485fde366',1,'audio_tools::SimpleDelay']]],
- ['simpleflanger_2664',['SimpleFlanger',['../classaudio__tools_1_1_simple_flanger.html#a8985dd9e6ea36e25a3b10814a4433af3',1,'audio_tools::SimpleFlanger']]],
- ['simplelpf_2665',['SimpleLPF',['../classaudio__tools_1_1_simple_l_p_f.html#a3c125c4fbebe58d30d7a572259be5352',1,'audio_tools::SimpleLPF']]],
- ['sine_2666',['sine',['../classaudio__tools_1_1_fast_sine_generator.html#a39b1d228d98347a574e5ef0ca6d170df',1,'audio_tools::FastSineGenerator']]],
- ['singlebuffer_2667',['SingleBuffer',['../classaudio__tools_1_1_single_buffer.html#a35c6a8c1d8f0857e27e85530479a444a',1,'audio_tools::SingleBuffer::SingleBuffer(int size)'],['../classaudio__tools_1_1_single_buffer.html#acc095e96946a477f0606fe4612fea1be',1,'audio_tools::SingleBuffer::SingleBuffer()']]],
- ['sink_2668',['sink',['../classaudio__tools_1_1_a2_d_p_stream.html#a232966b695bfd512f7541f2354be9349',1,'audio_tools::A2DPStream']]],
- ['size_2669',['size',['../classaudio__tools_1_1_ring_buffer.html#a7edc9fae01093617967fd7c9df18a2a2',1,'audio_tools::RingBuffer::size()'],['../classaudio__tools_1_1_input_merge.html#af4b57d21919c42d55af03391f91a1c08',1,'audio_tools::InputMerge::size()'],['../classaudio__tools_1_1_input_mixer.html#af4b57d21919c42d55af03391f91a1c08',1,'audio_tools::InputMixer::size()'],['../classaudio__tools_1_1_progress_stream.html#a0b6b70701c46e22849f0f363861351cd',1,'audio_tools::ProgressStream::size()'],['../classaudio__tools_1_1_output_mixer.html#af4b57d21919c42d55af03391f91a1c08',1,'audio_tools::OutputMixer::size()'],['../classaudio__tools_1_1_s_d_direct.html#a22727e9c338fb1aaa6722031445373c3',1,'audio_tools::SDDirect::size()'],['../classaudio__tools_1_1_file_loop_t.html#a0b6b70701c46e22849f0f363861351cd',1,'audio_tools::FileLoopT::size()'],['../classaudio__tools_1_1_audio_source_s_t_d.html#a22727e9c338fb1aaa6722031445373c3',1,'audio_tools::AudioSourceSTD::size()'],['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html#a22727e9c338fb1aaa6722031445373c3',1,'audio_tools::AudioSourceSPIFFS::size()'],['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html#a22727e9c338fb1aaa6722031445373c3',1,'audio_tools::AudioSourceSDMMC::size()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a22727e9c338fb1aaa6722031445373c3',1,'audio_tools::AudioSourceSDFAT::size()'],['../classaudio__tools_1_1_slice.html#a0b6b70701c46e22849f0f363861351cd',1,'audio_tools::Slice::size()'],['../classaudio__tools_1_1_audio_source_s_d.html#a22727e9c338fb1aaa6722031445373c3',1,'audio_tools::AudioSourceSD::size()'],['../classaudio__tools_1_1_audio_effect_common.html#a0b6b70701c46e22849f0f363861351cd',1,'audio_tools::AudioEffectCommon::size()'],['../classaudio__tools_1_1_audio_effects.html#a0b6b70701c46e22849f0f363861351cd',1,'audio_tools::AudioEffects::size()'],['../classaudio__tools_1_1_audio_effect_stream_t.html#a0b6b70701c46e22849f0f363861351cd',1,'audio_tools::AudioEffectStreamT::size()'],['../class_u_i.html#aa2c7fffd280ddcd6500a065785df0950',1,'UI::size()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#af4b57d21919c42d55af03391f91a1c08',1,'audio_tools::AudioFFTBase::size()'],['../classaudio__tools_1_1_audio_source_idx_s_d.html#a22727e9c338fb1aaa6722031445373c3',1,'audio_tools::AudioSourceIdxSD::size()'],['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#a22727e9c338fb1aaa6722031445373c3',1,'audio_tools::AudioSourceIdxSDFAT::size()'],['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html#a22727e9c338fb1aaa6722031445373c3',1,'audio_tools::AudioSourceIdxSDMMC::size()'],['../classaudio__tools_1_1_audio_source_little_f_s.html#a22727e9c338fb1aaa6722031445373c3',1,'audio_tools::AudioSourceLittleFS::size()']]],
- ['slice_2670',['slice',['../classaudio__tools_1_1_slice.html#a35c7aa6d798c5883c31622b9e55ca2f9',1,'audio_tools::Slice']]],
- ['slices_2671',['slices',['../classaudio__tools_1_1_slice.html#a0c6cc07206e13187ee51ed2a1d761ceb',1,'audio_tools::Slice']]],
- ['source_2672',['source',['../classaudio__tools_1_1_a2_d_p_stream.html#aebc4f5e8370485b03c78b5ae9f2a5e12',1,'audio_tools::A2DPStream']]],
- ['spdifoutput_2673',['SPDIFOutput',['../classaudio__tools_1_1_s_p_d_i_f_output.html#a8e152c6e69b5a33c99f4b1e93867d7eb',1,'audio_tools::SPDIFOutput']]],
- ['start_2674',['start',['../classaudio__tools_1_1_r_t_s_p_source_from_audio_stream.html#a2af117417cc4c8d4311fc92545326905',1,'audio_tools::RTSPSourceFromAudioStream::start()'],['../classaudio__tools_1_1_r_t_s_p_source_stream.html#a2af117417cc4c8d4311fc92545326905',1,'audio_tools::RTSPSourceStream::start()']]],
- ['starti2sactive_2675',['startI2SActive',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#afd6bdc5cd79de775c95d546f395311c8',1,'audio_tools::I2SDriverNanoBLE']]],
- ['startstream_2676',['startStream',['../classaudio__tools_1_1_port_audio_stream.html#a93f422be18f883e2f9b2d99b360a8218',1,'audio_tools::PortAudioStream']]],
- ['startswith_2677',['startsWith',['../classaudio__tools_1_1_str.html#a59cd76cd53162d7d050c437663352bc5',1,'audio_tools::Str']]],
- ['starttime_2678',['startTime',['../classaudio__tools_1_1_measuring_stream.html#a11eabc5af2cc7dc92d91c254cd7e9666',1,'audio_tools::MeasuringStream']]],
- ['starttimer_2679',['startTimer',['../classaudio__tools_1_1_p_w_m_driver_e_s_p32.html#ac70c6a1420e03c6e8c938188c8b7dd56',1,'audio_tools::PWMDriverESP32::startTimer()'],['../classaudio__tools_1_1_p_w_m_driver_m_b_e_d.html#a23e8b43798a6b64b48e29f32517efeca',1,'audio_tools::PWMDriverMBED::startTimer()'],['../classaudio__tools_1_1_p_w_m_driver_renesas.html#a23e8b43798a6b64b48e29f32517efeca',1,'audio_tools::PWMDriverRenesas::startTimer()'],['../classaudio__tools_1_1_p_w_m_driver_s_t_m32.html#a23e8b43798a6b64b48e29f32517efeca',1,'audio_tools::PWMDriverSTM32::startTimer()']]],
- ['status_2680',['status',['../classaudio__tools_1_1_meta_data_i_c_y.html#a00c2f5dcbe5ca3f9460bf7172690ab8b',1,'audio_tools::MetaDataICY']]],
- ['stop_2681',['stop',['../classaudio__tools_1_1_audio_player.html#ae92ae13a136435391be883fd6f0f5c8c',1,'audio_tools::AudioPlayer::stop()'],['../group__basic.html#ga8c528baf37154d347366083f0f816846',1,'stop(): AudioRuntime.h'],['../classaudio__tools_1_1_r_t_s_p_source_stream.html#a1306e29fda504409b52d24e2002fbee3',1,'audio_tools::RTSPSourceStream::stop()'],['../classaudio__tools_1_1_r_t_s_p_source_from_audio_stream.html#a1306e29fda504409b52d24e2002fbee3',1,'audio_tools::RTSPSourceFromAudioStream::stop()'],['../classaudio__tools_1_1_audio_output_with_callback.html#a3d0f1501fa4ccfb9e3f868ab4a185856',1,'audio_tools::AudioOutputWithCallback::stop()']]],
- ['storesample_2682',['storeSample',['../classaudio__tools_1_1_delay_effect_base.html#a142c910ad3008c9fce6dfc2e8ff7be9c',1,'audio_tools::DelayEffectBase']]],
- ['str_2683',['Str',['../classaudio__tools_1_1_str.html#acf867645eea1a4877e39e0bbdbc0aa8e',1,'audio_tools::Str::Str(const char *chars)'],['../classaudio__tools_1_1_str.html#afb02830eb9ec22ce762cd969ed132501',1,'audio_tools::Str::Str(char chars[], int maxlen, int len=0)']]],
- ['streamatom_2684',['streamAtom',['../classaudio__tools_1_1_container_m_p4.html#ae81130b914ec03661b95be1c406a37dc',1,'audio_tools::ContainerMP4']]],
- ['streamheader_2685',['streamHeader',['../classaudio__tools_1_1_a_v_i_decoder.html#af2d2d9fa75b7f5d48b2cf38ce5c48f65',1,'audio_tools::AVIDecoder']]],
- ['strnlength_2686',['strnlength',['../namespaceaudio__tools.html#af68d88c17f0bce43f0551198d0dcbd04',1,'audio_tools']]],
- ['substring_2687',['substring',['../classaudio__tools_1_1_str.html#ad991390740b09c31bf7226bddbaccbed',1,'audio_tools::Str::substring(Str &from, int start, int end)'],['../classaudio__tools_1_1_str.html#a3f6497cf6cccccd073dd6cf73f9273f3',1,'audio_tools::Str::substring(const char *from, int start, int end)']]]
+ ['sample_5frate_5fcallback_2481',['sample_rate_callback',['../classaudio__tools_1_1_a2_d_p_stream.html#a73af513be01f5d51e180082bc55d0d5f',1,'audio_tools::A2DPStream']]],
+ ['samples_2482',['samples',['../classaudio__tools_1_1_window_function.html#a296d0d8ff81677d81815bd49551fdaad',1,'audio_tools::WindowFunction']]],
+ ['scale_2483',['scale',['../classaudio__tools_1_1_number_reader.html#a9e29648c128bacf632eab24eae54416f',1,'audio_tools::NumberReader']]],
+ ['scale16_2484',['scale16',['../classaudio__tools_1_1int24__3bytes__t.html#ab5de9df15c4ca32db1246fd57eb79e40',1,'audio_tools::int24_3bytes_t::scale16()'],['../classaudio__tools_1_1int24__4bytes__t.html#ab5de9df15c4ca32db1246fd57eb79e40',1,'audio_tools::int24_4bytes_t::scale16()']]],
+ ['scale32_2485',['scale32',['../classaudio__tools_1_1int24__3bytes__t.html#a7f0c0806ea9d9ccd6fff33eb2af10768',1,'audio_tools::int24_3bytes_t::scale32()'],['../classaudio__tools_1_1int24__4bytes__t.html#a7f0c0806ea9d9ccd6fff33eb2af10768',1,'audio_tools::int24_4bytes_t::scale32()']]],
+ ['scalefloat_2486',['scaleFloat',['../classaudio__tools_1_1int24__3bytes__t.html#ad3f975477e832379629a455ed04bae0c',1,'audio_tools::int24_3bytes_t::scaleFloat()'],['../classaudio__tools_1_1int24__4bytes__t.html#ad3f975477e832379629a455ed04bae0c',1,'audio_tools::int24_4bytes_t::scaleFloat()']]],
+ ['selectstream_2487',['selectStream',['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html#af7a56e4b512b2b0ddc268d45294c76e3',1,'audio_tools::AudioSourceSPIFFS::selectStream()'],['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html#af80a30b20976ace1992d1f8ed98f98db',1,'audio_tools::AudioSourceSDMMC::selectStream()'],['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html#af80a30b20976ace1992d1f8ed98f98db',1,'audio_tools::AudioSourceSPIFFS::selectStream()'],['../classaudio__tools_1_1_audio_source_s_t_d.html#af7a56e4b512b2b0ddc268d45294c76e3',1,'audio_tools::AudioSourceSTD::selectStream(int index) override'],['../classaudio__tools_1_1_audio_source_s_t_d.html#af80a30b20976ace1992d1f8ed98f98db',1,'audio_tools::AudioSourceSTD::selectStream(const char *path) override'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#af7a56e4b512b2b0ddc268d45294c76e3',1,'audio_tools::AudioSourceSDFAT::selectStream(int index) override'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#af80a30b20976ace1992d1f8ed98f98db',1,'audio_tools::AudioSourceSDFAT::selectStream(const char *path) override'],['../classaudio__tools_1_1_audio_source.html#a773f36226afa82260f1adf5830a150e2',1,'audio_tools::AudioSource::selectStream(int index)'],['../classaudio__tools_1_1_audio_source.html#aa52be13c5c1bc7fa60c8e0ae185e1b35',1,'audio_tools::AudioSource::selectStream(const char *path)=0'],['../classaudio__tools_1_1_audio_source_callback.html#af7a56e4b512b2b0ddc268d45294c76e3',1,'audio_tools::AudioSourceCallback::selectStream(int index) override'],['../classaudio__tools_1_1_audio_source_callback.html#af80a30b20976ace1992d1f8ed98f98db',1,'audio_tools::AudioSourceCallback::selectStream(const char *path) override'],['../classaudio__tools_1_1_audio_source_u_r_l.html#a663b4fd7999e3a675d39321e612c08af',1,'audio_tools::AudioSourceURL::selectStream(int idx) override'],['../classaudio__tools_1_1_audio_source_u_r_l.html#aa72bd2cf2bfac1b1733a6f24f9d0d6d8',1,'audio_tools::AudioSourceURL::selectStream(const char *path) override'],['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html#af7a56e4b512b2b0ddc268d45294c76e3',1,'audio_tools::AudioSourceSDMMC::selectStream()'],['../classaudio__tools_1_1_audio_source_idx_s_d.html#af7a56e4b512b2b0ddc268d45294c76e3',1,'audio_tools::AudioSourceIdxSD::selectStream(int index) override'],['../classaudio__tools_1_1_audio_source_idx_s_d.html#af80a30b20976ace1992d1f8ed98f98db',1,'audio_tools::AudioSourceIdxSD::selectStream(const char *path) override'],['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#af7a56e4b512b2b0ddc268d45294c76e3',1,'audio_tools::AudioSourceIdxSDFAT::selectStream(int index) override'],['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#af80a30b20976ace1992d1f8ed98f98db',1,'audio_tools::AudioSourceIdxSDFAT::selectStream(const char *path) override'],['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html#af7a56e4b512b2b0ddc268d45294c76e3',1,'audio_tools::AudioSourceIdxSDMMC::selectStream(int index) override'],['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html#af80a30b20976ace1992d1f8ed98f98db',1,'audio_tools::AudioSourceIdxSDMMC::selectStream(const char *path) override'],['../classaudio__tools_1_1_audio_source_little_f_s.html#af7a56e4b512b2b0ddc268d45294c76e3',1,'audio_tools::AudioSourceLittleFS::selectStream(int index) override'],['../classaudio__tools_1_1_audio_source_little_f_s.html#af80a30b20976ace1992d1f8ed98f98db',1,'audio_tools::AudioSourceLittleFS::selectStream(const char *path) override'],['../classaudio__tools_1_1_audio_source_s_d.html#af7a56e4b512b2b0ddc268d45294c76e3',1,'audio_tools::AudioSourceSD::selectStream(int index) override'],['../classaudio__tools_1_1_audio_source_s_d.html#af80a30b20976ace1992d1f8ed98f98db',1,'audio_tools::AudioSourceSD::selectStream(const char *path) override'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#af7a56e4b512b2b0ddc268d45294c76e3',1,'audio_tools::AudioSourceSDFAT::selectStream(int index) override'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#af80a30b20976ace1992d1f8ed98f98db',1,'audio_tools::AudioSourceSDFAT::selectStream(const char *path) override']]],
+ ['set_2488',['set',['../classaudio__tools_1_1int24__4bytes__t.html#a82ee9face90cedee7f795055fcff3fa8',1,'audio_tools::int24_4bytes_t::set()'],['../classaudio__tools_1_1_str.html#a9bbc18f63643cb591ff963a68d2bd4f4',1,'audio_tools::Str::set(const char *alt)'],['../classaudio__tools_1_1_str.html#ab8c38a9ce68d193d3ed4916368a2f997',1,'audio_tools::Str::set(const Str &alt)'],['../classaudio__tools_1_1_str.html#a4e2c83e70ef7e8a3a11aae085991a462',1,'audio_tools::Str::set(char chars[], int maxlen, int len=0, bool isConst=false)'],['../structaudio__tools_1_1_audio_info.html#a4c2ab4bf80534844ec220076fcd45952',1,'audio_tools::AudioInfo::set()']]],
+ ['setactive_2489',['setActive',['../classaudio__tools_1_1_audio_effect.html#a392adf5d7d03b5339b77ec58bca5f9a9',1,'audio_tools::AudioEffect::setActive()'],['../classaudio__tools_1_1_stream_copy_t.html#ac4d4dd65be4e0a27eff3aac48dadd381',1,'audio_tools::StreamCopyT::setActive()'],['../classaudio__tools_1_1_audio_player.html#afeef27a8f9ef49b0aad990fe49b1ca50',1,'audio_tools::AudioPlayer::setActive()'],['../classaudio__tools_1_1_audio_kit_stream.html#a67ba7d52f586dfd64c8b295d57b1f9c4',1,'audio_tools::AudioKitStream::setActive()'],['../classaudio__tools_1_1_on_off_output.html#a2b8951fe5a4418a17d40c824fbff6ae3',1,'audio_tools::OnOffOutput::setActive()']]],
+ ['setafterburner_2490',['setAfterburner',['../classaudio__tools_1_1_a_a_c_encoder_f_d_k.html#a64ce099fbc88f6d2586160be0f6666e7',1,'audio_tools::AACEncoderFDK']]],
+ ['setagent_2491',['setAgent',['../classaudio__tools_1_1_http_request.html#a632fc452b56aa9002804b8da20bbd798',1,'audio_tools::HttpRequest']]],
+ ['setallocationmethod_2492',['setAllocationMethod',['../classaudio__tools_1_1_s_b_c_encoder.html#afdb823fb33d75636f6b057854596bfee',1,'audio_tools::SBCEncoder']]],
+ ['setamplitude_2493',['setAmplitude',['../classaudio__tools_1_1_sine_from_table.html#acd4492eedc1644fc7e48deb4a271a065',1,'audio_tools::SineFromTable']]],
+ ['setangledelta_2494',['setAngleDelta',['../classaudio__tools_1_1_simple_flanger.html#adf7a3c3548aae95e0a3b74fe1ded8ff5',1,'audio_tools::SimpleFlanger']]],
+ ['setaudiodatacallback_2495',['setAudioDataCallback',['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#ab2e700f0f83bc889bdd74bfac91afb8b',1,'audio_tools::MP3DecoderMAD::setAudioDataCallback()'],['../classaudio__tools_1_1_meta_data_i_c_y.html#ac967c6558d5583e03b77e20f1c20794d',1,'audio_tools::MetaDataICY::setAudioDataCallback()']]],
+ ['setaudioinfo_2496',['setAudioInfo',['../classaudio__tools_1_1_audio_kit_stream.html#ad1fdd56031f1195cb221ab855fb6a102',1,'audio_tools::AudioKitStream::setAudioInfo()'],['../classaudio__tools_1_1_m_p3_encoder_l_a_m_e.html#a7fada19480b99fa787492cbc32b5b893',1,'audio_tools::MP3EncoderLAME::setAudioInfo()'],['../classaudio__tools_1_1_encoder_float.html#accee684614189e73bdc9f1b2f7abf919',1,'audio_tools::EncoderFloat::setAudioInfo()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#ad1fdd56031f1195cb221ab855fb6a102',1,'audio_tools::AudioFFTBase::setAudioInfo()'],['../classaudio__tools_1_1_i2_s_stream.html#a87feead15897a49c7dccb043ac9fcddc',1,'audio_tools::I2SStream::setAudioInfo()'],['../classaudio__tools_1_1_ogg_container_encoder.html#aacd5a76de8d22c3909128c3539e5a6f7',1,'audio_tools::OggContainerEncoder::setAudioInfo()'],['../classaudio__tools_1_1_binary_container_encoder.html#ad1fdd56031f1195cb221ab855fb6a102',1,'audio_tools::BinaryContainerEncoder::setAudioInfo()'],['../classaudio__tools_1_1_w_a_v_encoder.html#a651d1dd445f965019c81634389f6061e',1,'audio_tools::WAVEncoder::setAudioInfo(WAVAudioInfo ai)'],['../classaudio__tools_1_1_w_a_v_encoder.html#accee684614189e73bdc9f1b2f7abf919',1,'audio_tools::WAVEncoder::setAudioInfo(AudioInfo from) override'],['../classaudio__tools_1_1_w_a_v_header.html#a6ae5106230521c3270c1b5ccd7eb146f',1,'audio_tools::WAVHeader::setAudioInfo()'],['../classaudio__tools_1_1_s_b_c_encoder.html#a87feead15897a49c7dccb043ac9fcddc',1,'audio_tools::SBCEncoder::setAudioInfo()'],['../classaudio__tools_1_1_opus_audio_encoder.html#a5c749802992efec8bc20ba4a522b027f',1,'audio_tools::OpusAudioEncoder::setAudioInfo()'],['../classaudio__tools_1_1_opus_audio_decoder.html#a5c749802992efec8bc20ba4a522b027f',1,'audio_tools::OpusAudioDecoder::setAudioInfo()'],['../classaudio__tools_1_1_port_audio_stream.html#ac7aeb791011c8430ad1b3907d0b5c62f',1,'audio_tools::PortAudioStream::setAudioInfo()'],['../classaudio__tools_1_1_r_t_s_p_source_from_audio_stream.html#a87feead15897a49c7dccb043ac9fcddc',1,'audio_tools::RTSPSourceFromAudioStream::setAudioInfo()'],['../classaudio__tools_1_1_r_t_s_p_source_stream.html#a87feead15897a49c7dccb043ac9fcddc',1,'audio_tools::RTSPSourceStream::setAudioInfo()'],['../classaudio__tools_1_1_v_s1053_stream.html#a00f37c11cb3e33b4e2b00008bcf1b175',1,'audio_tools::VS1053Stream::setAudioInfo()'],['../classaudio__tools_1_1_w_m8960_stream.html#aabf6f236b75536eb0dca4eb25c7b156d',1,'audio_tools::WM8960Stream::setAudioInfo()'],['../classaudio__tools_1_1_p_w_m_audio_output.html#a87feead15897a49c7dccb043ac9fcddc',1,'audio_tools::PWMAudioOutput::setAudioInfo()'],['../classaudio__tools_1_1_timed_stream.html#ad1fdd56031f1195cb221ab855fb6a102',1,'audio_tools::TimedStream::setAudioInfo()'],['../classaudio__tools_1_1_csv_output.html#aacd5a76de8d22c3909128c3539e5a6f7',1,'audio_tools::CsvOutput::setAudioInfo()'],['../classaudio__tools_1_1_audio_player.html#aacd5a76de8d22c3909128c3539e5a6f7',1,'audio_tools::AudioPlayer::setAudioInfo()'],['../classaudio__tools_1_1_s_p_d_i_f_output.html#a5e283a9495aaf265739336829d45e215',1,'audio_tools::SPDIFOutput::setAudioInfo()'],['../classaudio__tools_1_1_timer_callback_audio_stream.html#a87feead15897a49c7dccb043ac9fcddc',1,'audio_tools::TimerCallbackAudioStream::setAudioInfo()'],['../structaudio__tools_1_1_audio_info.html#a5e283a9495aaf265739336829d45e215',1,'audio_tools::AudioInfo::setAudioInfo()'],['../classaudio__tools_1_1_volume_stream.html#ae7ea43235bd3821c81da4f95c519bba5',1,'audio_tools::VolumeStream::setAudioInfo()'],['../classaudio__tools_1_1_copy_encoder.html#ace04239ef879aeae1e1b4b49cc537666',1,'audio_tools::CopyEncoder::setAudioInfo()'],['../classaudio__tools_1_1_m_p3_encoder_l_a_m_e.html#a81d4320037ca3aed1c9713c8516f1340',1,'audio_tools::MP3EncoderLAME::setAudioInfo()'],['../classaudio__tools_1_1_analog_audio_stream.html#a87feead15897a49c7dccb043ac9fcddc',1,'audio_tools::AnalogAudioStream::setAudioInfo()'],['../classaudio__tools_1_1_audio_decoder.html#accee684614189e73bdc9f1b2f7abf919',1,'audio_tools::AudioDecoder::setAudioInfo()'],['../classaudio__tools_1_1_audio_encoder.html#a5c749802992efec8bc20ba4a522b027f',1,'audio_tools::AudioEncoder::setAudioInfo()'],['../classaudio__tools_1_1_codec_n_o_p.html#a87feead15897a49c7dccb043ac9fcddc',1,'audio_tools::CodecNOP::setAudioInfo()'],['../classaudio__tools_1_1_a_a_c_encoder_f_d_k.html#ae9dd0258a562852d9334cd71ab9ab9c1',1,'audio_tools::AACEncoderFDK::setAudioInfo()'],['../classaudio__tools_1_1_a_a_c_decoder_helix.html#ad1fdd56031f1195cb221ab855fb6a102',1,'audio_tools::AACDecoderHelix::setAudioInfo()'],['../classaudio__tools_1_1_a_d_p_c_m_encoder.html#ad1fdd56031f1195cb221ab855fb6a102',1,'audio_tools::ADPCMEncoder::setAudioInfo()'],['../classaudio__tools_1_1_a_d_p_c_m_encoder_x_q.html#ad1fdd56031f1195cb221ab855fb6a102',1,'audio_tools::ADPCMEncoderXQ::setAudioInfo()'],['../classaudio__tools_1_1_a_p_t_x_encoder.html#a87feead15897a49c7dccb043ac9fcddc',1,'audio_tools::APTXEncoder::setAudioInfo()'],['../classaudio__tools_1_1_encoder_base64.html#accee684614189e73bdc9f1b2f7abf919',1,'audio_tools::EncoderBase64::setAudioInfo()'],['../classaudio__tools_1_1_encoder_basic.html#accee684614189e73bdc9f1b2f7abf919',1,'audio_tools::EncoderBasic::setAudioInfo()'],['../classaudio__tools_1_1_codec2_encoder.html#ac16dce708c8231391f220f847b8d05df',1,'audio_tools::Codec2Encoder::setAudioInfo()'],['../classaudio__tools_1_1_f_l_a_c_encoder.html#accee684614189e73bdc9f1b2f7abf919',1,'audio_tools::FLACEncoder::setAudioInfo()'],['../classaudio__tools_1_1_g722_decoder.html#ac16dce708c8231391f220f847b8d05df',1,'audio_tools::G722Decoder::setAudioInfo()'],['../classaudio__tools_1_1_g722_encoder.html#ac16dce708c8231391f220f847b8d05df',1,'audio_tools::G722Encoder::setAudioInfo()'],['../classaudio__tools_1_1_g7xx_decoder.html#ae7ea43235bd3821c81da4f95c519bba5',1,'audio_tools::G7xxDecoder::setAudioInfo()'],['../classaudio__tools_1_1_g7xx_encoder.html#ac16dce708c8231391f220f847b8d05df',1,'audio_tools::G7xxEncoder::setAudioInfo()'],['../classaudio__tools_1_1_g_s_m_decoder.html#ac16dce708c8231391f220f847b8d05df',1,'audio_tools::GSMDecoder::setAudioInfo()'],['../classaudio__tools_1_1_g_s_m_encoder.html#ac16dce708c8231391f220f847b8d05df',1,'audio_tools::GSMEncoder::setAudioInfo()'],['../classaudio__tools_1_1_i_l_b_c_encoder.html#a5e283a9495aaf265739336829d45e215',1,'audio_tools::ILBCEncoder::setAudioInfo()'],['../classaudio__tools_1_1_encoder_l16.html#accee684614189e73bdc9f1b2f7abf919',1,'audio_tools::EncoderL16::setAudioInfo()'],['../classaudio__tools_1_1_decoder_l8.html#accee684614189e73bdc9f1b2f7abf919',1,'audio_tools::DecoderL8::setAudioInfo()'],['../classaudio__tools_1_1_encoder_l8.html#a5c749802992efec8bc20ba4a522b027f',1,'audio_tools::EncoderL8::setAudioInfo()'],['../classaudio__tools_1_1_l_c3_encoder.html#a87feead15897a49c7dccb043ac9fcddc',1,'audio_tools::LC3Encoder::setAudioInfo()']]],
+ ['setaudioobjecttype_2497',['setAudioObjectType',['../classaudio__tools_1_1_a_a_c_encoder_f_d_k.html#a4551d43d99fc493544d13d654689cfa7',1,'audio_tools::AACEncoderFDK']]],
+ ['setaudiosource_2498',['setAudioSource',['../classaudio__tools_1_1_audio_player.html#a09cb3e95771e4f15bae41ca4fc335917',1,'audio_tools::AudioPlayer']]],
+ ['setautocreatelines_2499',['setAutoCreateLines',['../classaudio__tools_1_1_http_header.html#aaff16011b9bf3abcaef5270fbb78857a',1,'audio_tools::HttpHeader::setAutoCreateLines()'],['../classaudio__tools_1_1_u_r_l_stream.html#ad39861fd3793ecfe88b97999087f05a2',1,'audio_tools::URLStream::setAutoCreateLines()']]],
+ ['setautofade_2500',['setAutoFade',['../classaudio__tools_1_1_audio_player.html#a9f62775f890026142f7a56b06aa7473b',1,'audio_tools::AudioPlayer']]],
+ ['setautonext_2501',['setAutoNext',['../classaudio__tools_1_1_audio_player.html#afdd194c661ce148c25ba122293e342d7',1,'audio_tools::AudioPlayer']]],
+ ['setautorewind_2502',['setAutoRewind',['../classaudio__tools_1_1_ring_buffer_file.html#a56c99765fda1e751bd89bade953a0d56',1,'audio_tools::RingBufferFile']]],
+ ['setavailable_2503',['setAvailable',['../classaudio__tools_1_1_single_buffer.html#a1df5849973bb084c9d25289359ae6e57',1,'audio_tools::SingleBuffer']]],
+ ['setavailablecallback_2504',['setAvailableCallback',['../classaudio__tools_1_1_stream_copy_t.html#aba7dbc8829c1916f43311fc9053fec44',1,'audio_tools::StreamCopyT']]],
+ ['setbalance_2505',['setBalance',['../classaudio__tools_1_1_v_s1053_stream.html#a00ca7b44d59524f9747a913d906b3a96',1,'audio_tools::VS1053Stream']]],
+ ['setbase_2506',['setBase',['../classaudio__tools_1_1_simple_chorus.html#a4e930f9bf63ebf40910dcca813d5de63',1,'audio_tools::SimpleChorus']]],
+ ['setbitpool_2507',['setBitpool',['../classaudio__tools_1_1_s_b_c_encoder.html#acc8a8be313e8fb5d9c158225c3143dd6',1,'audio_tools::SBCEncoder']]],
+ ['setbitrate_2508',['setBitrate',['../classaudio__tools_1_1_a_a_c_encoder_f_d_k.html#a9326490ebc307c9a274d5b4efa48d4f4',1,'audio_tools::AACEncoderFDK']]],
+ ['setbitspersecond_2509',['setBitsPerSecond',['../classaudio__tools_1_1_codec2_encoder.html#a4bc89a5db2eaa810580df37dc8b9dc87',1,'audio_tools::Codec2Encoder::setBitsPerSecond()'],['../classaudio__tools_1_1_codec2_decoder.html#a4bc89a5db2eaa810580df37dc8b9dc87',1,'audio_tools::Codec2Decoder::setBitsPerSecond()']]],
+ ['setblocks_2510',['setBlocks',['../classaudio__tools_1_1_s_b_c_encoder.html#a54432aa904b0e72a505d1f0596692c0f',1,'audio_tools::SBCEncoder']]],
+ ['setblocksizepower_2511',['setBlockSizePower',['../classaudio__tools_1_1_a_d_p_c_m_decoder_x_q.html#ac6e299ceb04c7d103c328b431e5c61c4',1,'audio_tools::ADPCMDecoderXQ::setBlockSizePower()'],['../classaudio__tools_1_1_a_d_p_c_m_encoder_x_q.html#ac6e299ceb04c7d103c328b431e5c61c4',1,'audio_tools::ADPCMEncoderXQ::setBlockSizePower()']]],
+ ['setbuffer_2512',['setBuffer',['../classaudio__tools_1_1_h_l_s_stream.html#ad3e1ca0ca7001b983aaf0d2a60d2efe8',1,'audio_tools::HLSStream']]],
+ ['setbuffered_2513',['setBuffered',['../classaudio__tools_1_1_number_format_converter_stream_t.html#a73a4f130b28b7fb6cfbe4f4957f84a18',1,'audio_tools::NumberFormatConverterStreamT::setBuffered()'],['../classaudio__tools_1_1_format_converter_stream.html#a5a08430ad7efc8359dfd18b010cbc63d',1,'audio_tools::FormatConverterStream::setBuffered()'],['../classaudio__tools_1_1_resample_stream.html#a5a08430ad7efc8359dfd18b010cbc63d',1,'audio_tools::ResampleStream::setBuffered()']]],
+ ['setbuffersize_2514',['setBufferSize',['../classaudio__tools_1_1_audio_player.html#a0c9e8fc6b910ac6bd185da2642cbad4a',1,'audio_tools::AudioPlayer']]],
+ ['setcallback_2515',['setCallback',['../classaudio__tools_1_1_file_loop_t.html#a489fbbe8ee63b9f755a9f637e8997096',1,'audio_tools::FileLoopT::setCallback()'],['../classaudio__tools_1_1_meta_data_output.html#a96c4c8004be79a732ebae5803a6a4cbe',1,'audio_tools::MetaDataOutput::setCallback()'],['../classaudio__tools_1_1_meta_data_i_c_y.html#a000d7eb3d6261bd4aa53aaca00eee94b',1,'audio_tools::MetaDataICY::setCallback()']]],
+ ['setcallbackonwrite_2516',['setCallbackOnWrite',['../classaudio__tools_1_1_stream_copy_t.html#a7575750492ee545b18faf84cdada3caa',1,'audio_tools::StreamCopyT']]],
+ ['setcategories_2517',['setCategories',['../structaudio__tools_1_1_tf_lite_config.html#ae86f296dd26de623958171d9eb277ba8',1,'audio_tools::TfLiteConfig']]],
+ ['setchannels_2518',['setChannels',['../classaudio__tools_1_1_decimate_t.html#ab5a7ba68d6c150f9643e74f3838270a5',1,'audio_tools::DecimateT::setChannels()'],['../classaudio__tools_1_1_decimate.html#ab5a7ba68d6c150f9643e74f3838270a5',1,'audio_tools::Decimate::setChannels()']]],
+ ['setchars_2519',['setChars',['../classaudio__tools_1_1_str_ext.html#ac8b499f862b47f549d37ebd233287447',1,'audio_tools::StrExt']]],
+ ['setchebyicoefficients_2520',['setChebyICoefficients',['../classaudio__tools_1_1_filter_effect_base.html#a88f9bbb7d004b7f920601cc211c93ef0',1,'audio_tools::FilterEffectBase']]],
+ ['setcheckavailableforwrite_2521',['setCheckAvailableForWrite',['../classaudio__tools_1_1_stream_copy_t.html#af2beb219bcf28b64c8da8b2021d3513b',1,'audio_tools::StreamCopyT']]],
+ ['setclearwithzero_2522',['setClearWithZero',['../classaudio__tools_1_1_single_buffer.html#a3cbbe5124b80c5fd48c168debbf50b52',1,'audio_tools::SingleBuffer']]],
+ ['setclient_2523',['setClient',['../classaudio__tools_1_1_abstract_u_r_l_stream.html#aa02fa47437f45ebe8b6d8e30daa9cb73',1,'audio_tools::AbstractURLStream::setClient()'],['../classaudio__tools_1_1_i_c_y_stream.html#ad440a4de3d62b095c0ab57e13b511865',1,'audio_tools::ICYStream::setClient()'],['../classaudio__tools_1_1_i_c_y_stream_buffered.html#ad440a4de3d62b095c0ab57e13b511865',1,'audio_tools::ICYStreamBuffered::setClient()'],['../classaudio__tools_1_1_u_r_l_stream.html#ab8f3869beb19790ca9a8f556d662d749',1,'audio_tools::URLStream::setClient()'],['../classaudio__tools_1_1_u_r_l_stream_buffered.html#ad440a4de3d62b095c0ab57e13b511865',1,'audio_tools::URLStreamBuffered::setClient()']]],
+ ['setcolumnbar_2524',['setColumnBar',['../classaudio__tools_1_1_l_e_d_output.html#a151ea8e0fda222a7614ced9265117255',1,'audio_tools::LEDOutput::setColumnBar(int x, int currY)'],['../classaudio__tools_1_1_l_e_d_output.html#ae8b1b3b22e0022d2fdf9621806aa9db6',1,'audio_tools::LEDOutput::setColumnBar(int currY)'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a151ea8e0fda222a7614ced9265117255',1,'audio_tools::LEDOutputUnoR4::setColumnBar()']]],
+ ['setcompressionratio_2525',['setCompressionRatio',['../classaudio__tools_1_1_timed_stream.html#a35eacaff37b4c207f816e9b1a35e4f7b',1,'audio_tools::TimedStream']]],
+ ['setconnectionclose_2526',['setConnectionClose',['../classaudio__tools_1_1_u_r_l_stream.html#ae7030d11c7af96d4b7983393817830a9',1,'audio_tools::URLStream']]],
+ ['setconverter_2527',['setConverter',['../classaudio__tools_1_1_audio_server.html#a2c42e0c550ffe835f03b8a0c575322b2',1,'audio_tools::AudioServer']]],
+ ['setdata_2528',['setData',['../structaudio__tools_1_1_m_p4_atom.html#a49eba78c3c22d25e2e64517cd5f50a7d',1,'audio_tools::MP4Atom']]],
+ ['setdatacallback_2529',['setDataCallback',['../classaudio__tools_1_1_container_m_p4.html#a9a87d052f5f3575b7d5ef21dfad965aa',1,'audio_tools::ContainerMP4']]],
+ ['setdataoffset_2530',['setDataOffset',['../classaudio__tools_1_1_w_a_v_encoder.html#a714eb943cec9f2478e46d32af2467f3e',1,'audio_tools::WAVEncoder']]],
+ ['setdc_2531',['setDC',['../classaudio__tools_1_1_modulation_base_class.html#aa7c951a115da3ce65842f8a0492f46b8',1,'audio_tools::ModulationBaseClass']]],
+ ['setdebouncedelay_2532',['setDebounceDelay',['../classaudio__tools_1_1_audio_actions.html#a59cea0afb661d3352062cf223b3666c5',1,'audio_tools::AudioActions']]],
+ ['setdecoder_2533',['setDecoder',['../classaudio__tools_1_1_w_a_v_decoder.html#a1113a99aa668488e62a0f646af0f8b87',1,'audio_tools::WAVDecoder::setDecoder()'],['../classaudio__tools_1_1_meta_data_filter.html#a8381905c682cb6718ddd4319b5822b0c',1,'audio_tools::MetaDataFilter::setDecoder()'],['../classaudio__tools_1_1_audio_player.html#a3ea5f561a76c0db83b58303d4e4280d1',1,'audio_tools::AudioPlayer::setDecoder()']]],
+ ['setdelaybuffer_2534',['setDelayBuffer',['../classaudio__tools_1_1_delay_effect_base.html#aaea0c98ac40750185850bee967b63a86',1,'audio_tools::DelayEffectBase']]],
+ ['setdelaybuffreadindex_2535',['setDelayBuffReadIndex',['../classaudio__tools_1_1_delay_effect_base.html#a09afa1b1edf3b6ba06c78437f1ff310f',1,'audio_tools::DelayEffectBase']]],
+ ['setdelaygain_2536',['setDelayGain',['../classaudio__tools_1_1_filtered_delay.html#ac353b3e478618cb7a9d85886fe5e572d',1,'audio_tools::FilteredDelay::setDelayGain()'],['../classaudio__tools_1_1_simple_delay.html#ac353b3e478618cb7a9d85886fe5e572d',1,'audio_tools::SimpleDelay::setDelayGain()']]],
+ ['setdelayifoutputfull_2537',['setDelayIfOutputFull',['../classaudio__tools_1_1_audio_player.html#a31e8bfe952fe38f6bfd0c4edbf6ff3c9',1,'audio_tools::AudioPlayer']]],
+ ['setdelayonnodata_2538',['setDelayOnNoData',['../classaudio__tools_1_1_stream_copy_t.html#a7f2d7de65b2c37346fde120d8a9657b0',1,'audio_tools::StreamCopyT']]],
+ ['setdelaytime_2539',['setDelayTime',['../classaudio__tools_1_1_simple_delay.html#a1f65b11194c3cbcfe03405f160556024',1,'audio_tools::SimpleDelay']]],
+ ['setdelaytransitiontime_2540',['setDelayTransitionTime',['../classaudio__tools_1_1_simple_delay.html#a15724205466549197b5e025962cbb1ad',1,'audio_tools::SimpleDelay']]],
+ ['setdelimiter_2541',['setDelimiter',['../classaudio__tools_1_1_csv_output.html#ae5069f1af7d96b22cbe726af27012028',1,'audio_tools::CsvOutput']]],
+ ['setdepth_2542',['setDepth',['../classaudio__tools_1_1_simple_flanger.html#aae79d80b265ba90683a611eff1ae6f1c',1,'audio_tools::SimpleFlanger']]],
+ ['seteffectgain_2543',['setEffectGain',['../classaudio__tools_1_1_simple_flanger.html#a6f88d23dc61587552c0759a4eb6dd1dc',1,'audio_tools::SimpleFlanger']]],
+ ['seteffectparams_2544',['setEffectParams',['../classaudio__tools_1_1_simple_flanger.html#a887c4d8003f3a4bec672ee96cc5de140',1,'audio_tools::SimpleFlanger']]],
+ ['setenabled_2545',['setEnabled',['../classaudio__tools_1_1_audio_actions.html#af6bc20dad85bbf87b126c80c543967db',1,'audio_tools::AudioActions']]],
+ ['setencoder_2546',['setEncoder',['../classaudio__tools_1_1_v_s1053_stream.html#a112088d1d203e928f46cc6dd4b7bcc99',1,'audio_tools::VS1053Stream']]],
+ ['setendsecond_2547',['setEndSecond',['../classaudio__tools_1_1_timed_stream.html#a54b5118c422ec13c55e508468a51caa2',1,'audio_tools::TimedStream']]],
+ ['setfactor_2548',['setFactor',['../classaudio__tools_1_1_decimate.html#a2dc524acc6d34135c4fcbd44aa62b8e6',1,'audio_tools::Decimate::setFactor()'],['../classaudio__tools_1_1_decimate_t.html#a2dc524acc6d34135c4fcbd44aa62b8e6',1,'audio_tools::DecimateT::setFactor()'],['../classaudio__tools_1_1_converter_scaler.html#afc140cf8223a4144dc9755af85bf2d8f',1,'audio_tools::ConverterScaler::setFactor()']]],
+ ['setfeedbackgain_2549',['setFeedbackGain',['../classaudio__tools_1_1_filtered_delay.html#ad77bc0821f5c6d26d7c840fb63e687e6',1,'audio_tools::FilteredDelay::setFeedbackGain()'],['../classaudio__tools_1_1_simple_delay.html#ad77bc0821f5c6d26d7c840fb63e687e6',1,'audio_tools::SimpleDelay::setFeedbackGain()']]],
+ ['setfile_2550',['setFile',['../classaudio__tools_1_1_file_loop_t.html#a32d5d25919e43b8c99e16c87629986b7',1,'audio_tools::FileLoopT::setFile()'],['../classaudio__tools_1_1_ring_buffer_file.html#a15fc8d742a570baf624715fccb6db44c',1,'audio_tools::RingBufferFile::setFile()']]],
+ ['setfilefilter_2551',['setFileFilter',['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#ad1d0f199434fe2e3550d5b39dab3c6a6',1,'audio_tools::AudioSourceIdxSDFAT::setFileFilter()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#ad1d0f199434fe2e3550d5b39dab3c6a6',1,'audio_tools::AudioSourceSDFAT::setFileFilter()'],['../classaudio__tools_1_1_audio_source_s_t_d.html#ad1d0f199434fe2e3550d5b39dab3c6a6',1,'audio_tools::AudioSourceSTD::setFileFilter()'],['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html#ad1d0f199434fe2e3550d5b39dab3c6a6',1,'audio_tools::AudioSourceSPIFFS::setFileFilter()'],['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html#ad1d0f199434fe2e3550d5b39dab3c6a6',1,'audio_tools::AudioSourceSDMMC::setFileFilter()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#ad1d0f199434fe2e3550d5b39dab3c6a6',1,'audio_tools::AudioSourceSDFAT::setFileFilter()'],['../classaudio__tools_1_1_audio_source_s_d.html#ad1d0f199434fe2e3550d5b39dab3c6a6',1,'audio_tools::AudioSourceSD::setFileFilter()'],['../classaudio__tools_1_1_audio_source_little_f_s.html#ad1d0f199434fe2e3550d5b39dab3c6a6',1,'audio_tools::AudioSourceLittleFS::setFileFilter()'],['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html#ad1d0f199434fe2e3550d5b39dab3c6a6',1,'audio_tools::AudioSourceIdxSDMMC::setFileFilter()'],['../classaudio__tools_1_1_audio_source_idx_s_d.html#ad1d0f199434fe2e3550d5b39dab3c6a6',1,'audio_tools::AudioSourceIdxSD::setFileFilter()']]],
+ ['setfilter_2552',['setFilter',['../classaudio__tools_1_1_filtered_stream.html#aa150bce25b70367e98b23fe01e44cae3',1,'audio_tools::FilteredStream::setFilter(int channel, Filter< TF > *filter)'],['../classaudio__tools_1_1_filtered_stream.html#a5fc6bd8fe5a3ac2ecf79f35018ef93ff',1,'audio_tools::FilteredStream::setFilter(int channel, Filter< TF > &filter)'],['../classaudio__tools_1_1_converter_n_channels.html#acd3ea5fe5d4f6e3837e15d1e8eceae20',1,'audio_tools::ConverterNChannels::setFilter()']]],
+ ['setfiltermetadata_2553',['setFilterMetaData',['../classaudio__tools_1_1_m_p3_decoder_helix.html#ac8532db8250b1047a70318a6d80b91ec',1,'audio_tools::MP3DecoderHelix']]],
+ ['setfrequency_2554',['setFrequency',['../classaudio__tools_1_1_sine_wave_generator.html#a0517b8e9504478c5d7f9c5b39d2853bf',1,'audio_tools::SineWaveGenerator']]],
+ ['seticymetaint_2555',['setIcyMetaInt',['../classaudio__tools_1_1_meta_data_i_c_y.html#ae940d1341b26160e895b53ba8a3af95d',1,'audio_tools::MetaDataICY']]],
+ ['setid_2556',['setId',['../classaudio__tools_1_1_audio_effect.html#a3d929477fef71d52c9c6df2ba2d50841',1,'audio_tools::AudioEffect']]],
+ ['setindex_2557',['setIndex',['../classaudio__tools_1_1_audio_source.html#ac628e03bdd1bcc6b8ed89b8465b0aca0',1,'audio_tools::AudioSource::setIndex()'],['../classaudio__tools_1_1_audio_player.html#a7e6f0e6e369424058c72c94d11ff94cc',1,'audio_tools::AudioPlayer::setIndex()']]],
+ ['setinfocallback_2558',['setInfoCallback',['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#a4eec588e512fb89ed7137ceb50e5c3f9',1,'audio_tools::MP3DecoderMAD']]],
+ ['setinput_2559',['setInput',['../classaudio__tools_1_1_encoded_audio_stream.html#af8124372afa43e8a096c4c63a2a99182',1,'audio_tools::EncodedAudioStream::setInput()'],['../classaudio__tools_1_1_audio_effects.html#ab528c2d2e5318406f6b2ca46eebf8e4f',1,'audio_tools::AudioEffects::setInput()']]],
+ ['setinputbuffersize_2560',['setInputBufferSize',['../classaudio__tools_1_1_a_a_c_decoder_f_a_a_d.html#ab786002cf92309cc25ec3f4e9cd56d4a',1,'audio_tools::AACDecoderFAAD']]],
+ ['setinputpin1_2561',['setInputPin1',['../classaudio__tools_1_1_analog_config_e_s_p32.html#a6bd795f84917bf2fe17941ec405dbd5b',1,'audio_tools::AnalogConfigESP32']]],
+ ['setinputstream_2562',['setInputStream',['../classaudio__tools_1_1_streaming_decoder.html#a951eeb2b651188b0727c989dc5d8e567',1,'audio_tools::StreamingDecoder::setInputStream()'],['../classaudio__tools_1_1_f_l_a_c_decoder.html#a3bcad8389ae08e07b345ab270c187078',1,'audio_tools::FLACDecoder::setInputStream()'],['../classaudio__tools_1_1_vorbis_decoder.html#a3aef9d5413505458a252d8701f7c4dcf',1,'audio_tools::VorbisDecoder::setInputStream()']]],
+ ['setinterpolationtable_2563',['setInterpolationTable',['../classaudio__tools_1_1_delay_effect_base.html#a39382a2843d737b91fab1ab79dd2be71',1,'audio_tools::DelayEffectBase']]],
+ ['setinterpreter_2564',['setInterpreter',['../classaudio__tools_1_1_tf_lite_audio_stream.html#aa743d121e36fd235f8f5b0c2f74cf706',1,'audio_tools::TfLiteAudioStream']]],
+ ['setinterptable_2565',['setInterpTable',['../classaudio__tools_1_1_modulation_base_class.html#a907f1ff2e67090fb4233f7cd8384030b',1,'audio_tools::ModulationBaseClass']]],
+ ['setisheadercallback_2566',['setIsHeaderCallback',['../classaudio__tools_1_1_container_m_p4.html#ac5da9b5e3d1406eefa81e4b602364f0a',1,'audio_tools::ContainerMP4']]],
+ ['setissave_2567',['setIsSave',['../classaudio__tools_1_1_timer_alarm_repeating_driver_base.html#a8f9cb98f2a25a85ec3547cfe199a7c94',1,'audio_tools::TimerAlarmRepeatingDriverBase']]],
+ ['setisulaw_2568',['setIsULaw',['../classaudio__tools_1_1_r_t_s_p_format_g711.html#a6f99b9cd87719cc8c28249aa04fb8074',1,'audio_tools::RTSPFormatG711']]],
+ ['setkeys_2569',['setKeys',['../classaudio__tools_1_1_synthesizer.html#a68a78f9040b1e4a51c04c839a78d540d',1,'audio_tools::Synthesizer']]],
+ ['setlabelvalue_2570',['setLabelValue',['../classaudio__tools_1_1_faust_stream.html#afe681c8ec67cf8ba9eef6444024dec03',1,'audio_tools::FaustStream']]],
+ ['setlength_2571',['setLength',['../classaudio__tools_1_1_str.html#a9561273c1d7b1b056b3af2fdf693283f',1,'audio_tools::Str']]],
+ ['setlengthundo_2572',['setLengthUndo',['../classaudio__tools_1_1_str.html#afc555624c5ba61a095b954d9785cd18e',1,'audio_tools::Str']]],
+ ['setlimittoavailabledata_2573',['setLimitToAvailableData',['../classaudio__tools_1_1_input_mixer.html#a996e0659179eaad07923ed13e328a6a2',1,'audio_tools::InputMixer']]],
+ ['setloglevel_2574',['setLogLevel',['../classaudio__tools_1_1_encoded_audio_output.html#a128c19eda4c8e6c68f0cd129cee47b4c',1,'audio_tools::EncodedAudioOutput::setLogLevel()'],['../classaudio__tools_1_1_h_l_s_parser.html#a128c19eda4c8e6c68f0cd129cee47b4c',1,'audio_tools::HLSParser::setLogLevel()'],['../classaudio__tools_1_1_h_l_s_stream.html#a128c19eda4c8e6c68f0cd129cee47b4c',1,'audio_tools::HLSStream::setLogLevel()'],['../classaudio__tools_1_1_u_r_l_stream.html#a128c19eda4c8e6c68f0cd129cee47b4c',1,'audio_tools::URLStream::setLogLevel()']]],
+ ['setlookahead_2575',['setLookahead',['../classaudio__tools_1_1_a_d_p_c_m_decoder_x_q.html#aed6d991a840256eb66f16c1fbb172439',1,'audio_tools::ADPCMDecoderXQ::setLookahead()'],['../classaudio__tools_1_1_a_d_p_c_m_encoder_x_q.html#aed6d991a840256eb66f16c1fbb172439',1,'audio_tools::ADPCMEncoderXQ::setLookahead()']]],
+ ['setloop_2576',['setLoop',['../classaudio__tools_1_1_memory_stream.html#a808d67693c38dccdc6b4692c65d6c36f',1,'audio_tools::MemoryStream::setLoop()'],['../classaudio__tools_1_1_dynamic_memory_stream.html#a808d67693c38dccdc6b4692c65d6c36f',1,'audio_tools::DynamicMemoryStream::setLoop()']]],
+ ['setloopcount_2577',['setLoopCount',['../classaudio__tools_1_1_file_loop_t.html#a127bfce671f2e8a92304cc87473f3e7e',1,'audio_tools::FileLoopT']]],
+ ['setmaxamplitudestep_2578',['setMaxAmplitudeStep',['../classaudio__tools_1_1_sine_from_table.html#ad52a35a3e13049686ea5fde677d269cb',1,'audio_tools::SineFromTable']]],
+ ['setmaxframesize_2579',['setMaxFrameSize',['../classaudio__tools_1_1_m_p3_decoder_helix.html#a125936b03a64474ad370c63c4291a9c7',1,'audio_tools::MP3DecoderHelix::setMaxFrameSize()'],['../classaudio__tools_1_1_a_a_c_decoder_helix.html#a125936b03a64474ad370c63c4291a9c7',1,'audio_tools::AACDecoderHelix::setMaxFrameSize(size_t len)']]],
+ ['setmaxpcmsize_2580',['setMaxPCMSize',['../classaudio__tools_1_1_a_a_c_decoder_helix.html#a00f9dda211e2236d718c7c68bf610ea7',1,'audio_tools::AACDecoderHelix::setMaxPCMSize()'],['../classaudio__tools_1_1_m_p3_decoder_helix.html#a00f9dda211e2236d718c7c68bf610ea7',1,'audio_tools::MP3DecoderHelix::setMaxPCMSize()']]],
+ ['setmaxsize_2581',['setMaxSize',['../classaudio__tools_1_1_container_m_p4.html#ad86e401cecc65a533c20cdf92d7bdc54',1,'audio_tools::ContainerMP4']]],
+ ['setmemoryallocationlogging_2582',['setMemoryAllocationLogging',['../classaudio__tools_1_1_m_t_s_decoder.html#aec803109f8430cb737532bd5070d9bb2',1,'audio_tools::MTSDecoder']]],
+ ['setmetadatacallback_2583',['setMetadataCallback',['../classaudio__tools_1_1_i_c_y_stream.html#ad95873c68a776ff93a5a4e35c1fe4eb0',1,'audio_tools::ICYStream::setMetadataCallback()'],['../classaudio__tools_1_1_audio_player.html#ab32c4554cbd24248683bd0e5a0e1f360',1,'audio_tools::AudioPlayer::setMetadataCallback()']]],
+ ['setmidiname_2584',['setMidiName',['../classaudio__tools_1_1_synthesizer.html#a9acca072896cc09fb7b7c7b7ce27b4f5',1,'audio_tools::Synthesizer']]],
+ ['setmimecallback_2585',['setMimeCallback',['../classaudio__tools_1_1_stream_copy_t.html#aba348716f2d6eb5b35c12a7aed42cd4b',1,'audio_tools::StreamCopyT']]],
+ ['setminwritebytes_2586',['setMinWriteBytes',['../class_audio_e_s_p32_u_l_p.html#aab8df60a25adfbed44d0ca569eb2f306',1,'AudioESP32ULP']]],
+ ['setmonodac_2587',['setMonoDAC',['../class_audio_e_s_p32_u_l_p.html#a4afaec56506efe127cd11f309435edc6',1,'AudioESP32ULP']]],
+ ['setmute_2588',['setMute',['../classaudio__tools_1_1_audio_kit_stream.html#aa2a08d0fd7c4e897419766a5a0ebc291',1,'audio_tools::AudioKitStream']]],
+ ['setname_2589',['setName',['../classaudio__tools_1_1_r_t_s_p_format_audio_tools.html#ab3a256e7d9fad73fa57de7c1fedf51c5',1,'audio_tools::RTSPFormatAudioTools']]],
+ ['setnewline_2590',['setNewLine',['../classaudio__tools_1_1_decoder_base64.html#afc857b7b58a7947adea49b4e9702865b',1,'audio_tools::DecoderBase64::setNewLine()'],['../classaudio__tools_1_1_encoder_base64.html#afa16faf4d738a7e4a387325e9f9e5048',1,'audio_tools::EncoderBase64::setNewLine()']]],
+ ['setnoiseshaping_2591',['setNoiseShaping',['../classaudio__tools_1_1_a_d_p_c_m_encoder_x_q.html#a4b77b224cc2cc916223a44f08d95ee18',1,'audio_tools::ADPCMEncoderXQ::setNoiseShaping()'],['../classaudio__tools_1_1_a_d_p_c_m_decoder_x_q.html#a4b77b224cc2cc916223a44f08d95ee18',1,'audio_tools::ADPCMDecoderXQ::setNoiseShaping()']]],
+ ['setnotify_2592',['setNotify',['../classaudio__tools_1_1_audio_player.html#a07ead11210cd6a9b0dd5d1655bb40088',1,'audio_tools::AudioPlayer']]],
+ ['setnotifyaudiochange_2593',['setNotifyAudioChange',['../classaudio__tools_1_1_timer_callback_audio_stream.html#a48f731a1a7698c73ac736b17066dcf51',1,'audio_tools::TimerCallbackAudioStream::setNotifyAudioChange()'],['../classaudio__tools_1_1_null_stream.html#a716343f0476acda119a0c1c9598261ce',1,'audio_tools::NullStream::setNotifyAudioChange()'],['../classaudio__tools_1_1_ogg_container_decoder.html#a716343f0476acda119a0c1c9598261ce',1,'audio_tools::OggContainerDecoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_binary_container_decoder.html#a48f731a1a7698c73ac736b17066dcf51',1,'audio_tools::BinaryContainerDecoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_wav_i_m_a_decoder.html#a48f731a1a7698c73ac736b17066dcf51',1,'audio_tools::WavIMADecoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_w_a_v_decoder.html#a48f731a1a7698c73ac736b17066dcf51',1,'audio_tools::WAVDecoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_vorbis_decoder.html#a716343f0476acda119a0c1c9598261ce',1,'audio_tools::VorbisDecoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_s_b_c_decoder.html#a64e0825fad7a777d93e43602670010c7',1,'audio_tools::SBCDecoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_decoder_float.html#a716343f0476acda119a0c1c9598261ce',1,'audio_tools::DecoderFloat::setNotifyAudioChange()'],['../classaudio__tools_1_1_opus_audio_decoder.html#a716343f0476acda119a0c1c9598261ce',1,'audio_tools::OpusAudioDecoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_m_p3_decoder_mini.html#a48f731a1a7698c73ac736b17066dcf51',1,'audio_tools::MP3DecoderMini::setNotifyAudioChange()'],['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#a64e0825fad7a777d93e43602670010c7',1,'audio_tools::MP3DecoderMAD::setNotifyAudioChange()'],['../classaudio__tools_1_1_m_p3_decoder_helix.html#a48f731a1a7698c73ac736b17066dcf51',1,'audio_tools::MP3DecoderHelix::setNotifyAudioChange()'],['../classaudio__tools_1_1_l_c3_decoder.html#a64e0825fad7a777d93e43602670010c7',1,'audio_tools::LC3Decoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_i_l_b_c_decoder.html#a64e0825fad7a777d93e43602670010c7',1,'audio_tools::ILBCDecoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_decoder_l16.html#a716343f0476acda119a0c1c9598261ce',1,'audio_tools::DecoderL16::setNotifyAudioChange()'],['../classaudio__tools_1_1_audio_decoder.html#a4626becb07db8422467ad6e787b2b8d4',1,'audio_tools::AudioDecoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_codec_n_o_p.html#a64e0825fad7a777d93e43602670010c7',1,'audio_tools::CodecNOP::setNotifyAudioChange()'],['../classaudio__tools_1_1_streaming_decoder.html#a8c677cf9ee88f52f9f48ef79988eb908',1,'audio_tools::StreamingDecoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_encoded_audio_output.html#a716343f0476acda119a0c1c9598261ce',1,'audio_tools::EncodedAudioOutput::setNotifyAudioChange()'],['../classaudio__tools_1_1_a_a_c_decoder_f_d_k.html#a64e0825fad7a777d93e43602670010c7',1,'audio_tools::AACDecoderFDK::setNotifyAudioChange()'],['../classaudio__tools_1_1_decoder_basic.html#a716343f0476acda119a0c1c9598261ce',1,'audio_tools::DecoderBasic::setNotifyAudioChange()'],['../classaudio__tools_1_1_f_l_a_c_decoder.html#a48f731a1a7698c73ac736b17066dcf51',1,'audio_tools::FLACDecoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_g722_decoder.html#a64e0825fad7a777d93e43602670010c7',1,'audio_tools::G722Decoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_g7xx_decoder.html#a716343f0476acda119a0c1c9598261ce',1,'audio_tools::G7xxDecoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_g_s_m_decoder.html#a64e0825fad7a777d93e43602670010c7',1,'audio_tools::GSMDecoder::setNotifyAudioChange()'],['../classaudio__tools_1_1_decoder_helix.html#a48f731a1a7698c73ac736b17066dcf51',1,'audio_tools::DecoderHelix::setNotifyAudioChange()'],['../classaudio__tools_1_1_copy_decoder.html#a48f731a1a7698c73ac736b17066dcf51',1,'audio_tools::CopyDecoder::setNotifyAudioChange()']]],
+ ['setoffset_2594',['setOffset',['../classaudio__tools_1_1_converter_scaler.html#ab0ce7df93a3e1e7a95dd10411bca0c8d',1,'audio_tools::ConverterScaler']]],
+ ['setoffsine_2595',['setOffSine',['../classaudio__tools_1_1_modulation_base_class.html#ad6287d809d41a2631eca2f6f613bfd44',1,'audio_tools::ModulationBaseClass']]],
+ ['setoggoutput_2596',['setOggOutput',['../classaudio__tools_1_1_ogg_container_encoder.html#a7cca57574879e4a3423fdd9ed3093125',1,'audio_tools::OggContainerEncoder']]],
+ ['setonconnectcallback_2597',['setOnConnectCallback',['../classaudio__tools_1_1_u_r_l_stream.html#ac4f59d434249e98049f1bf6917a4faec',1,'audio_tools::URLStream::setOnConnectCallback()'],['../classaudio__tools_1_1_http_request.html#ac4f59d434249e98049f1bf6917a4faec',1,'audio_tools::HttpRequest::setOnConnectCallback()']]],
+ ['setoptions_2598',['setOptions',['../classaudio__tools_1_1_g722_decoder.html#acfff0a5c7d4142ab77da6f8ca276ecf4',1,'audio_tools::G722Decoder::setOptions()'],['../classaudio__tools_1_1_g722_encoder.html#acfff0a5c7d4142ab77da6f8ca276ecf4',1,'audio_tools::G722Encoder::setOptions()']]],
+ ['setoutput_2599',['setOutput',['../classaudio__tools_1_1_m_p3_decoder_mini.html#a46f2c85361f5459bb6a58dc28dc3ee9a',1,'audio_tools::MP3DecoderMini::setOutput()'],['../classaudio__tools_1_1_g7xx_decoder.html#a065fe4c0d3543644ab523a5d9b5fb9c0',1,'audio_tools::G7xxDecoder::setOutput()'],['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#ae1220e7e3542f5a84c21fe2f7cef194c',1,'audio_tools::MP3DecoderMAD::setOutput()'],['../classaudio__tools_1_1_m_p3_encoder_l_a_m_e.html#a93b5bd320ae10a808fb0de3eb5e5b387',1,'audio_tools::MP3EncoderLAME::setOutput()'],['../classaudio__tools_1_1_m_p3_decoder_helix.html#a5987a9f7ba96694397f2af2d87843564',1,'audio_tools::MP3DecoderHelix::setOutput()'],['../classaudio__tools_1_1_l_c3_decoder.html#a33190106b1d5de89d6af68ad5924f7be',1,'audio_tools::LC3Decoder::setOutput()'],['../classaudio__tools_1_1_encoder_l8.html#a065fe4c0d3543644ab523a5d9b5fb9c0',1,'audio_tools::EncoderL8::setOutput()'],['../classaudio__tools_1_1_encoder_l16.html#a065fe4c0d3543644ab523a5d9b5fb9c0',1,'audio_tools::EncoderL16::setOutput()'],['../classaudio__tools_1_1_decoder_l16.html#a065fe4c0d3543644ab523a5d9b5fb9c0',1,'audio_tools::DecoderL16::setOutput()'],['../classaudio__tools_1_1_i_l_b_c_decoder.html#a33190106b1d5de89d6af68ad5924f7be',1,'audio_tools::ILBCDecoder::setOutput()'],['../classaudio__tools_1_1_decoder_helix.html#a5987a9f7ba96694397f2af2d87843564',1,'audio_tools::DecoderHelix::setOutput()'],['../classaudio__tools_1_1_g_s_m_decoder.html#a33190106b1d5de89d6af68ad5924f7be',1,'audio_tools::GSMDecoder::setOutput()'],['../classaudio__tools_1_1_binary_container_decoder.html#a46f2c85361f5459bb6a58dc28dc3ee9a',1,'audio_tools::BinaryContainerDecoder::setOutput()'],['../classaudio__tools_1_1_opus_audio_decoder.html#a065fe4c0d3543644ab523a5d9b5fb9c0',1,'audio_tools::OpusAudioDecoder::setOutput()'],['../classaudio__tools_1_1_opus_audio_encoder.html#a065fe4c0d3543644ab523a5d9b5fb9c0',1,'audio_tools::OpusAudioEncoder::setOutput()'],['../classaudio__tools_1_1_s_b_c_decoder.html#a33190106b1d5de89d6af68ad5924f7be',1,'audio_tools::SBCDecoder::setOutput()'],['../classaudio__tools_1_1_vorbis_decoder.html#a59b6d2fc413c9b7c0e93decdbaaf3357',1,'audio_tools::VorbisDecoder::setOutput()'],['../classaudio__tools_1_1_w_a_v_decoder.html#a93b5bd320ae10a808fb0de3eb5e5b387',1,'audio_tools::WAVDecoder::setOutput()'],['../classaudio__tools_1_1_w_a_v_encoder.html#a05ff4cf361d54457ed8586e8c14aa922',1,'audio_tools::WAVEncoder::setOutput()'],['../classaudio__tools_1_1_wav_i_m_a_decoder.html#a93b5bd320ae10a808fb0de3eb5e5b387',1,'audio_tools::WavIMADecoder::setOutput()'],['../classaudio__tools_1_1_a_v_i_decoder.html#accd4a0f8bb385180e8006fd543aef936',1,'audio_tools::AVIDecoder::setOutput()'],['../classaudio__tools_1_1_ogg_container_decoder.html#a1a28a6cba0e36eb54e72b3336f8b3ed1',1,'audio_tools::OggContainerDecoder::setOutput()'],['../classaudio__tools_1_1_ogg_container_output.html#affacde5c7c0aefbf35fe2948cbade203',1,'audio_tools::OggContainerOutput::setOutput()'],['../classaudio__tools_1_1_ogg_container_encoder.html#a1a28a6cba0e36eb54e72b3336f8b3ed1',1,'audio_tools::OggContainerEncoder::setOutput()'],['../classaudio__tools_1_1_on_off_output.html#ae1220e7e3542f5a84c21fe2f7cef194c',1,'audio_tools::OnOffOutput::setOutput()'],['../classaudio__tools_1_1_encoder_float.html#a065fe4c0d3543644ab523a5d9b5fb9c0',1,'audio_tools::EncoderFloat::setOutput()'],['../classaudio__tools_1_1_g722_decoder.html#a33190106b1d5de89d6af68ad5924f7be',1,'audio_tools::G722Decoder::setOutput()'],['../classaudio__tools_1_1_audio_decoder.html#a74fb348e7fbaed39364af8869fb05231',1,'audio_tools::AudioDecoder::setOutput(AudioStream &out_stream)'],['../classaudio__tools_1_1_audio_decoder.html#acf58dd0aedd8748b499ca948bd2cdf5d',1,'audio_tools::AudioDecoder::setOutput(AudioOutput &out_stream)'],['../classaudio__tools_1_1_audio_decoder.html#accd4a0f8bb385180e8006fd543aef936',1,'audio_tools::AudioDecoder::setOutput(Print &out_stream) override'],['../classaudio__tools_1_1_codec_n_o_p.html#a33190106b1d5de89d6af68ad5924f7be',1,'audio_tools::CodecNOP::setOutput()'],['../classaudio__tools_1_1_streaming_decoder.html#a8f0e458c434c843a5a9f4d5ff87acc71',1,'audio_tools::StreamingDecoder::setOutput(Print &outStream)=0'],['../classaudio__tools_1_1_streaming_decoder.html#a74fb348e7fbaed39364af8869fb05231',1,'audio_tools::StreamingDecoder::setOutput(AudioStream &out_stream)'],['../classaudio__tools_1_1_streaming_decoder.html#acf58dd0aedd8748b499ca948bd2cdf5d',1,'audio_tools::StreamingDecoder::setOutput(AudioOutput &out_stream)'],['../classaudio__tools_1_1_encoded_audio_output.html#af2416b6284de657da2d08005d10413e7',1,'audio_tools::EncodedAudioOutput::setOutput()'],['../classaudio__tools_1_1_a_a_c_decoder_f_d_k.html#a93b5bd320ae10a808fb0de3eb5e5b387',1,'audio_tools::AACDecoderFDK::setOutput()'],['../classaudio__tools_1_1_a_a_c_encoder_f_d_k.html#a93b5bd320ae10a808fb0de3eb5e5b387',1,'audio_tools::AACEncoderFDK::setOutput()'],['../classaudio__tools_1_1_a_a_c_decoder_helix.html#a33190106b1d5de89d6af68ad5924f7be',1,'audio_tools::AACDecoderHelix::setOutput()'],['../classaudio__tools_1_1_a_d_p_c_m_decoder_x_q.html#a33190106b1d5de89d6af68ad5924f7be',1,'audio_tools::ADPCMDecoderXQ::setOutput()'],['../classaudio__tools_1_1_a_p_t_x_decoder.html#a33190106b1d5de89d6af68ad5924f7be',1,'audio_tools::APTXDecoder::setOutput()'],['../classaudio__tools_1_1_decoder_base64.html#a05ff4cf361d54457ed8586e8c14aa922',1,'audio_tools::DecoderBase64::setOutput()'],['../classaudio__tools_1_1_encoder_base64.html#a16c143810cee84c4b39a316cc720a606',1,'audio_tools::EncoderBase64::setOutput()'],['../classaudio__tools_1_1_decoder_basic.html#a065fe4c0d3543644ab523a5d9b5fb9c0',1,'audio_tools::DecoderBasic::setOutput()'],['../classaudio__tools_1_1_encoder_basic.html#a05ff4cf361d54457ed8586e8c14aa922',1,'audio_tools::EncoderBasic::setOutput()'],['../classaudio__tools_1_1_codec2_decoder.html#a33190106b1d5de89d6af68ad5924f7be',1,'audio_tools::Codec2Decoder::setOutput()'],['../classaudio__tools_1_1_copy_decoder.html#a33190106b1d5de89d6af68ad5924f7be',1,'audio_tools::CopyDecoder::setOutput()'],['../classaudio__tools_1_1_f_l_a_c_decoder.html#a33190106b1d5de89d6af68ad5924f7be',1,'audio_tools::FLACDecoder::setOutput()'],['../classaudio__tools_1_1_f_l_a_c_encoder.html#a065fe4c0d3543644ab523a5d9b5fb9c0',1,'audio_tools::FLACEncoder::setOutput()'],['../classaudio__tools_1_1_decoder_float.html#a065fe4c0d3543644ab523a5d9b5fb9c0',1,'audio_tools::DecoderFloat::setOutput()'],['../classaudio__tools_1_1_a_d_p_c_m_decoder.html#accd4a0f8bb385180e8006fd543aef936',1,'audio_tools::ADPCMDecoder::setOutput()']]],
+ ['setoutputbuffersize_2600',['setOutputBufferSize',['../classaudio__tools_1_1_a_a_c_encoder_f_d_k.html#a37cb082ebc94d0f901ff4addd04d9db3',1,'audio_tools::AACEncoderFDK']]],
+ ['setpassword_2601',['setPassword',['../classaudio__tools_1_1_abstract_u_r_l_stream.html#a012ee07a9c3a44ef974560a4d89092e9',1,'audio_tools::AbstractURLStream::setPassword()'],['../classaudio__tools_1_1_h_l_s_stream.html#a1da9a1c2befdfb32e235d3989f6e16d2',1,'audio_tools::HLSStream::setPassword()'],['../classaudio__tools_1_1_i_c_y_stream.html#ae81c6839be5fb51cf5ffd9300a95534b',1,'audio_tools::ICYStream::setPassword()'],['../classaudio__tools_1_1_i_c_y_stream_buffered.html#ae81c6839be5fb51cf5ffd9300a95534b',1,'audio_tools::ICYStreamBuffered::setPassword()'],['../classaudio__tools_1_1_u_r_l_stream.html#ae81c6839be5fb51cf5ffd9300a95534b',1,'audio_tools::URLStream::setPassword()'],['../classaudio__tools_1_1_u_r_l_stream_buffered.html#ae81c6839be5fb51cf5ffd9300a95534b',1,'audio_tools::URLStreamBuffered::setPassword()']]],
+ ['setpath_2602',['setPath',['../classaudio__tools_1_1_audio_player.html#a2f24eb6d5fb69a5230a1927fa90c6f00',1,'audio_tools::AudioPlayer::setPath()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a913d6f553d4d73f1ac49a36fbe57997a',1,'audio_tools::AudioSourceSDFAT::setPath()'],['../classaudio__tools_1_1_audio_source_s_t_d.html#a913d6f553d4d73f1ac49a36fbe57997a',1,'audio_tools::AudioSourceSTD::setPath()'],['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html#a913d6f553d4d73f1ac49a36fbe57997a',1,'audio_tools::AudioSourceSPIFFS::setPath()'],['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html#a913d6f553d4d73f1ac49a36fbe57997a',1,'audio_tools::AudioSourceSDMMC::setPath()'],['../classaudio__tools_1_1_audio_source_s_d.html#a913d6f553d4d73f1ac49a36fbe57997a',1,'audio_tools::AudioSourceSD::setPath()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a913d6f553d4d73f1ac49a36fbe57997a',1,'audio_tools::AudioSourceSDFAT::setPath()'],['../classaudio__tools_1_1_audio_source_idx_s_d.html#a913d6f553d4d73f1ac49a36fbe57997a',1,'audio_tools::AudioSourceIdxSD::setPath()'],['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#a913d6f553d4d73f1ac49a36fbe57997a',1,'audio_tools::AudioSourceIdxSDFAT::setPath()'],['../classaudio__tools_1_1_audio_source_little_f_s.html#a913d6f553d4d73f1ac49a36fbe57997a',1,'audio_tools::AudioSourceLittleFS::setPath()'],['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html#a913d6f553d4d73f1ac49a36fbe57997a',1,'audio_tools::AudioSourceIdxSDMMC::setPath()']]],
+ ['setpowersave_2603',['setPowerSave',['../classaudio__tools_1_1_u_r_l_stream.html#a6fab9a37a748ff9345c0f229b1504ef8',1,'audio_tools::URLStream']]],
+ ['setpwmtimer_2604',['setPWMTimer',['../classaudio__tools_1_1_p_w_m_driver_s_t_m32.html#a565686a76d896687f9d055c963f215b8',1,'audio_tools::PWMDriverSTM32']]],
+ ['setramp_2605',['setRamp',['../classaudio__tools_1_1_modulation_base_class.html#a3900e838d5526b128756c6679fb4fa0a',1,'audio_tools::ModulationBaseClass']]],
+ ['setrate_2606',['setRate',['../classaudio__tools_1_1_simple_flanger.html#a67d5fb7283e29b2582b107b8f3137a91',1,'audio_tools::SimpleFlanger']]],
+ ['setreceivecallback_2607',['setReceiveCallback',['../classaudio__tools_1_1_e_s_p_now_stream.html#a8a2ce66666bf4387e15a7c619946b601',1,'audio_tools::ESPNowStream']]],
+ ['setretry_2608',['setRetry',['../classaudio__tools_1_1_stream_copy_t.html#a62c40d01e8b9a6a315590d05b4af9dfd',1,'audio_tools::StreamCopyT']]],
+ ['setrewindcallback_2609',['setRewindCallback',['../classaudio__tools_1_1_memory_stream.html#af53e1ac369ee77cf98be89710f364956',1,'audio_tools::MemoryStream']]],
+ ['setsawtooth_2610',['setSawtooth',['../classaudio__tools_1_1_modulation_base_class.html#a86b30e29df1ee81a54e242924c1002ac',1,'audio_tools::ModulationBaseClass']]],
+ ['setsendcallback_2611',['setSendCallback',['../classaudio__tools_1_1_e_s_p_now_stream.html#a19b2f79c6278f469fceebf0696a7d5c7',1,'audio_tools::ESPNowStream']]],
+ ['setsigned_2612',['setSigned',['../classaudio__tools_1_1_decoder_l8.html#a0322b050a68a8c578d8a090a932e8bdc',1,'audio_tools::DecoderL8::setSigned()'],['../classaudio__tools_1_1_encoder_l8.html#a0322b050a68a8c578d8a090a932e8bdc',1,'audio_tools::EncoderL8::setSigned()']]],
+ ['setsilenceoninactive_2613',['setSilenceOnInactive',['../classaudio__tools_1_1_audio_player.html#a24f4ec11382e0812ee4e2711228fe94a',1,'audio_tools::AudioPlayer']]],
+ ['setsimplelpf_2614',['setSimpleLpf',['../classaudio__tools_1_1_filter_effect_base.html#a42b602daf9f4b61a888ddc7a0468b429',1,'audio_tools::FilterEffectBase']]],
+ ['setsine_2615',['setSine',['../classaudio__tools_1_1_modulation_base_class.html#a81e68f731b9b9a66a4ae7d8ad7d5f55c',1,'audio_tools::ModulationBaseClass']]],
+ ['setsize_2616',['setSize',['../classaudio__tools_1_1_progress_stream.html#a6a8807196a10843ecf743d358394cb29',1,'audio_tools::ProgressStream::setSize()'],['../classaudio__tools_1_1_file_loop_t.html#a6a8807196a10843ecf743d358394cb29',1,'audio_tools::FileLoopT::setSize()']]],
+ ['setsourceaudioinfo_2617',['setSourceAudioInfo',['../classaudio__tools_1_1_format_converter_stream.html#a67ebca633a73d3b088928fb2e788437b',1,'audio_tools::FormatConverterStream']]],
+ ['setspeakeractive_2618',['setSpeakerActive',['../classaudio__tools_1_1_audio_kit_stream.html#a1fdd798e6ae46c5c0bd4b3f42bf18220',1,'audio_tools::AudioKitStream']]],
+ ['setspectralbandreplication_2619',['setSpectralBandReplication',['../classaudio__tools_1_1_a_a_c_encoder_f_d_k.html#ac3a4fe15c3161304411b3492b4f4afa5',1,'audio_tools::AACEncoderFDK']]],
+ ['setsquare_2620',['setSquare',['../classaudio__tools_1_1_modulation_base_class.html#ab73b9813f3f01891821ca11f7aca2b4e',1,'audio_tools::ModulationBaseClass']]],
+ ['setssid_2621',['setSSID',['../classaudio__tools_1_1_u_r_l_stream_buffered.html#aa746c1e18c63973923557421e7774c89',1,'audio_tools::URLStreamBuffered::setSSID()'],['../classaudio__tools_1_1_u_r_l_stream.html#aa746c1e18c63973923557421e7774c89',1,'audio_tools::URLStream::setSSID()'],['../classaudio__tools_1_1_i_c_y_stream_buffered.html#aa746c1e18c63973923557421e7774c89',1,'audio_tools::ICYStreamBuffered::setSSID()'],['../classaudio__tools_1_1_i_c_y_stream.html#aa746c1e18c63973923557421e7774c89',1,'audio_tools::ICYStream::setSSID()'],['../classaudio__tools_1_1_h_l_s_stream.html#a223488080be4cc2a4584bb0215c9f929',1,'audio_tools::HLSStream::setSSID()'],['../classaudio__tools_1_1_abstract_u_r_l_stream.html#a76cf8ad142c2ec8bfa363295d2ad9ce7',1,'audio_tools::AbstractURLStream::setSSID()']]],
+ ['setstartpos_2622',['setStartPos',['../classaudio__tools_1_1_file_loop_t.html#a3df5a898078ba0474b599a978277291e',1,'audio_tools::FileLoopT']]],
+ ['setstartsecond_2623',['setStartSecond',['../classaudio__tools_1_1_timed_stream.html#a859b2296256ed629d1a2097fa23c19da',1,'audio_tools::TimedStream']]],
+ ['setstepsize_2624',['setStepSize',['../classaudio__tools_1_1_resample_stream.html#a7694bdde8707e5a9f92c36c905be2e56',1,'audio_tools::ResampleStream']]],
+ ['setstream_2625',['setStream',['../classaudio__tools_1_1_encoded_audio_output.html#a45597b245106bdfe136907286731d651',1,'audio_tools::EncodedAudioOutput::setStream()'],['../classaudio__tools_1_1_encoded_audio_stream.html#a281977f67359f85e429e51feecf7d9f0',1,'audio_tools::EncodedAudioStream::setStream()'],['../classaudio__tools_1_1_generator_from_stream.html#ab134c748b5b151ba54a2d835de040341',1,'audio_tools::GeneratorFromStream::setStream()'],['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a4ea3110016f67d3dcb9793fcae72288f',1,'audio_tools::I2SDriverNanoBLE::setStream()'],['../classaudio__tools_1_1_audio_player.html#aea658c6f4c17e5aa46acdc4b7bb85a67',1,'audio_tools::AudioPlayer::setStream()'],['../classaudio__tools_1_1_volume_stream.html#afcb2a62320edc10770189f42d3b80c86',1,'audio_tools::VolumeStream::setStream()']]],
+ ['setstreamoutputsize_2626',['setStreamOutputSize',['../classaudio__tools_1_1_container_m_p4.html#aa11d4ea3fdd22f0a638419ed1b15389c',1,'audio_tools::ContainerMP4']]],
+ ['setsubbands_2627',['setSubbands',['../classaudio__tools_1_1_s_b_c_encoder.html#a4e66cdd854b56dfea563c75c1b041607',1,'audio_tools::SBCEncoder']]],
+ ['setswing_2628',['setSwing',['../classaudio__tools_1_1_simple_chorus.html#a6965f12aaac8e5b11dee7146ce45eea5',1,'audio_tools::SimpleChorus']]],
+ ['settarget_2629',['setTarget',['../classaudio__tools_1_1_volume_stream.html#a257c8a69cef8507552ff441df96aa770',1,'audio_tools::VolumeStream::setTarget(Stream &in)'],['../classaudio__tools_1_1_volume_stream.html#a6fb55d483321d9d1efc898c720c0205a',1,'audio_tools::VolumeStream::setTarget(Print &out)']]],
+ ['settimeout_2630',['setTimeout',['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a4576929311e53dfaed4c0c35d201df04',1,'audio_tools::AudioSourceSDFAT::setTimeout()'],['../classaudio__tools_1_1_audio_source.html#a23e18762a56c2865cfb8abb1f3361af8',1,'audio_tools::AudioSource::setTimeout()'],['../classaudio__tools_1_1_audio_source_u_r_l.html#ab86ded0a4395c59e8c1774e05e4c65e3',1,'audio_tools::AudioSourceURL::setTimeout()'],['../classaudio__tools_1_1_u_r_l_stream.html#a4576929311e53dfaed4c0c35d201df04',1,'audio_tools::URLStream::setTimeout()']]],
+ ['settimeoutautonext_2631',['setTimeoutAutoNext',['../classaudio__tools_1_1_audio_source.html#a1d03133fe86ead67820854ef63dadfbd',1,'audio_tools::AudioSource']]],
+ ['settimer_2632',['setTimer',['../classaudio__tools_1_1_timer_alarm_repeating_driver_renesas.html#a9e5fae72ee20fa7c8ab512e46117cf5c',1,'audio_tools::TimerAlarmRepeatingDriverRenesas::setTimer()'],['../classaudio__tools_1_1_timer_alarm_repeating_driver_s_t_m32.html#a093a90a34f7e56fbca7098bb27c8317c',1,'audio_tools::TimerAlarmRepeatingDriverSTM32::setTimer()']]],
+ ['settouchlimit_2633',['setTouchLimit',['../classaudio__tools_1_1_audio_actions.html#a37349c713b77ec680e33fc9368ad8782',1,'audio_tools::AudioActions']]],
+ ['settriangle_2634',['setTriangle',['../classaudio__tools_1_1_modulation_base_class.html#afbf3aba4f54251fa54b7a27ae469deac',1,'audio_tools::ModulationBaseClass']]],
+ ['setunderflowlimit_2635',['setUnderflowLimit',['../classaudio__tools_1_1_a_a_c_decoder_f_a_a_d.html#aac2d53ee94003da649cbe82c59b19cb0',1,'audio_tools::AACDecoderFAAD']]],
+ ['setup_2636',['setup',['../classaudio__tools_1_1_s_b_c_encoder.html#af34785948af72a85d60ef0a2cae5cf22',1,'audio_tools::SBCEncoder::setup()'],['../classaudio__tools_1_1_e_s_p_now_stream.html#af34785948af72a85d60ef0a2cae5cf22',1,'audio_tools::ESPNowStream::setup()'],['../classaudio__tools_1_1_i_c_y_url_setup.html#a31dda37f277fa22d839a977050bb3a23',1,'audio_tools::ICYUrlSetup::setup()']]],
+ ['setupactions_2637',['setupActions',['../classaudio__tools_1_1_audio_kit_stream.html#abb0b64a019aabee31715293f5196d3a3',1,'audio_tools::AudioKitStream']]],
+ ['setupaudioinfo_2638',['setupAudioInfo',['../classaudio__tools_1_1_s_b_c_decoder.html#a3a98d1b0565d4ffa9823100e825ed27e',1,'audio_tools::SBCDecoder::setupAudioInfo()'],['../classaudio__tools_1_1_volume_stream.html#a198564f582b08ca779cedd43cafc8102',1,'audio_tools::VolumeStream::setupAudioInfo()']]],
+ ['setupbitwidth_2639',['setupBitWidth',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a9053c62d46feeffb49a600f56561e327',1,'audio_tools::I2SDriverNanoBLE']]],
+ ['setupbuffers_2640',['setupBuffers',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a1a5dfeb38ee82f0aff1b2337afa3dfd5',1,'audio_tools::I2SDriverNanoBLE']]],
+ ['setupchorus_2641',['setupChorus',['../classaudio__tools_1_1_simple_chorus.html#a5c7207a63fe15e97e739eb1c9cb2804c',1,'audio_tools::SimpleChorus']]],
+ ['setupclock_2642',['setupClock',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#af5e760265a1b6a308784dd60b3680576',1,'audio_tools::I2SDriverNanoBLE']]],
+ ['setupdecoder_2643',['setupDecoder',['../classaudio__tools_1_1_decoder_helix.html#a769e48866fb0f8e11018bab68e02c08f',1,'audio_tools::DecoderHelix']]],
+ ['setupdelayeffectbase_2644',['setupDelayEffectBase',['../classaudio__tools_1_1_delay_effect_base.html#a7ccea2a522b973a56da7c2f0280f9edb',1,'audio_tools::DelayEffectBase']]],
+ ['setupi2spins_2645',['setupI2SPins',['../classaudio__tools_1_1_audio_kit_stream_config.html#a567e2afb71a4d538ed517075a55b0802',1,'audio_tools::AudioKitStreamConfig']]],
+ ['setupinputpin_2646',['setupInputPin',['../classaudio__tools_1_1_analog_driver_e_s_p32.html#a0c7ea54bb345a5754c5faca7e0a9ed0b',1,'audio_tools::AnalogDriverESP32']]],
+ ['setuplastsamples_2647',['setupLastSamples',['../classaudio__tools_1_1_resample_stream.html#ae80c7db53037e16c4654f123c8f19a93',1,'audio_tools::ResampleStream']]],
+ ['setupmetadata_2648',['setupMetaData',['../classaudio__tools_1_1_meta_data_i_c_y.html#a5522c1d8b9d56e529bcfef31b49c2652',1,'audio_tools::MetaDataICY']]],
+ ['setupmode_2649',['setupMode',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a6adb631393cf292dc4bf0fc0998f5b46',1,'audio_tools::I2SDriverNanoBLE']]],
+ ['setupmodulationbaseclass_2650',['setupModulationBaseClass',['../classaudio__tools_1_1_modulation_base_class.html#a7bdc015afac5f8ef02208dcb2c23f758',1,'audio_tools::ModulationBaseClass']]],
+ ['setupoutput_2651',['setupOutput',['../classaudio__tools_1_1_transformation_reader.html#a49ead13a1391cddd44b4a85f63a01a67',1,'audio_tools::TransformationReader']]],
+ ['setuppins_2652',['setupPins',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a9dadce76da103f2a290c973b1f51579c',1,'audio_tools::I2SDriverNanoBLE::setupPins()'],['../classaudio__tools_1_1_analog_driver_arduino.html#a31d554847ae8fdeaba2460e0395cb75f',1,'audio_tools::AnalogDriverArduino::setupPins()']]],
+ ['setuppwm_2653',['setupPWM',['../classaudio__tools_1_1_p_w_m_driver_a_v_r.html#a9aab38b961e7af7f2385e1553532cfdb',1,'audio_tools::PWMDriverAVR::setupPWM()'],['../classaudio__tools_1_1_p_w_m_driver_e_s_p32.html#ab9d89f49874ec6da1534423c364453bf',1,'audio_tools::PWMDriverESP32::setupPWM()'],['../classaudio__tools_1_1_p_w_m_driver_m_b_e_d.html#ab9d89f49874ec6da1534423c364453bf',1,'audio_tools::PWMDriverMBED::setupPWM()'],['../classaudio__tools_1_1_p_w_m_driver_renesas.html#ab9d89f49874ec6da1534423c364453bf',1,'audio_tools::PWMDriverRenesas::setupPWM()'],['../classaudio__tools_1_1_p_w_m_driver_s_t_m32.html#ab9d89f49874ec6da1534423c364453bf',1,'audio_tools::PWMDriverSTM32::setupPWM()']]],
+ ['setuprxtx_2654',['setupRxTx',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a731db993d69581c99928ea2dd75f8bf7',1,'audio_tools::I2SDriverNanoBLE']]],
+ ['setupsimpledelay_2655',['setupSimpleDelay',['../classaudio__tools_1_1_simple_delay.html#a20abea9a7479d41c4f338020f2a5632b',1,'audio_tools::SimpleDelay']]],
+ ['setuptimer_2656',['setupTimer',['../classaudio__tools_1_1_p_w_m_driver_e_s_p32.html#adba588f4c4041836e56c7ffb61a04764',1,'audio_tools::PWMDriverESP32::setupTimer()'],['../classaudio__tools_1_1_p_w_m_driver_m_b_e_d.html#adba588f4c4041836e56c7ffb61a04764',1,'audio_tools::PWMDriverMBED::setupTimer()'],['../classaudio__tools_1_1_p_w_m_driver_renesas.html#adba588f4c4041836e56c7ffb61a04764',1,'audio_tools::PWMDriverRenesas::setupTimer()']]],
+ ['setupvectors_2657',['setupVectors',['../classaudio__tools_1_1_volume_stream.html#aa43027e46c404244a52b4c8470876edd',1,'audio_tools::VolumeStream']]],
+ ['setupvolumestreamconfig_2658',['setupVolumeStreamConfig',['../classaudio__tools_1_1_volume_stream.html#a8ef9fdbdc5ffa4e83da9b18eb2920de3',1,'audio_tools::VolumeStream']]],
+ ['seturlcount_2659',['setUrlCount',['../classaudio__tools_1_1_h_l_s_parser.html#a20369e35080b82ef26cd2ca6d90f533a',1,'audio_tools::HLSParser']]],
+ ['setvalidationcallback_2660',['setValidationCallback',['../classaudio__tools_1_1_a_v_i_decoder.html#ade7a51a90eb817ac209b7b43c0ddd810',1,'audio_tools::AVIDecoder']]],
+ ['setvalue_2661',['setValue',['../classaudio__tools_1_1_memory_stream.html#a45552cd0020b7ceecb2e70826a3f600c',1,'audio_tools::MemoryStream']]],
+ ['setvideoaudiosync_2662',['setVideoAudioSync',['../classaudio__tools_1_1_a_v_i_decoder.html#a36ac3357eb6beaf0d441641cdafb3195',1,'audio_tools::AVIDecoder']]],
+ ['setvolume_2663',['setVolume',['../classaudio__tools_1_1_generator_from_stream.html#a07325410709887b46c3456058c3863cc',1,'audio_tools::GeneratorFromStream::setVolume()'],['../classaudio__tools_1_1_audio_kit_stream.html#a68eb6bc4f1a8a9ccf4e2368e39371565',1,'audio_tools::AudioKitStream::setVolume(int vol)'],['../classaudio__tools_1_1_audio_kit_stream.html#ae3076da1d31412e3f1ed8677494df700',1,'audio_tools::AudioKitStream::setVolume(float vol)'],['../classaudio__tools_1_1_audio_kit_stream.html#a165bc60d3744cfd8c220ed18ec4c6820',1,'audio_tools::AudioKitStream::setVolume(double vol)'],['../classaudio__tools_1_1_maximilian.html#a12c2fba1888a04d3e954c1eda3a56c34',1,'audio_tools::Maximilian::setVolume()'],['../classaudio__tools_1_1_v_s1053_stream.html#a35c7533999826a3706e97f99442d4c7e',1,'audio_tools::VS1053Stream::setVolume()'],['../classaudio__tools_1_1_w_m8960_stream.html#a35c7533999826a3706e97f99442d4c7e',1,'audio_tools::WM8960Stream::setVolume()'],['../classaudio__tools_1_1_audio_player.html#a85c293aec47a5e3dca892a9de49c5b83',1,'audio_tools::AudioPlayer::setVolume()'],['../classaudio__tools_1_1_volume_stream.html#a35c7533999826a3706e97f99442d4c7e',1,'audio_tools::VolumeStream::setVolume(float vol)'],['../classaudio__tools_1_1_volume_stream.html#a28c83db3d78661d6e35b248d73006314',1,'audio_tools::VolumeStream::setVolume(float vol, int channel)']]],
+ ['setvolumecontrol_2664',['setVolumeControl',['../classaudio__tools_1_1_volume_stream.html#af563fb27e0137b006c62af82654083fb',1,'audio_tools::VolumeStream::setVolumeControl()'],['../classaudio__tools_1_1_audio_player.html#a86c685035cdcb866ea328f5907cc68cb',1,'audio_tools::AudioPlayer::setVolumeControl()']]],
+ ['setweight_2665',['setWeight',['../classaudio__tools_1_1_output_mixer.html#abb80a48eb1817f480e52497f42b5d4e5',1,'audio_tools::OutputMixer::setWeight()'],['../classaudio__tools_1_1_input_mixer.html#af958d7d7ce83c9577da34c091d216aa3',1,'audio_tools::InputMixer::setWeight()'],['../classaudio__tools_1_1_input_merge.html#abb80a48eb1817f480e52497f42b5d4e5',1,'audio_tools::InputMerge::setWeight()']]],
+ ['simplechorus_2666',['SimpleChorus',['../classaudio__tools_1_1_simple_chorus.html#adcabf06f1fc0a8f326e3343d61c5b767',1,'audio_tools::SimpleChorus']]],
+ ['simpledelay_2667',['SimpleDelay',['../classaudio__tools_1_1_simple_delay.html#a587a18712662f1f7a5e4f73485fde366',1,'audio_tools::SimpleDelay']]],
+ ['simpleflanger_2668',['SimpleFlanger',['../classaudio__tools_1_1_simple_flanger.html#a8985dd9e6ea36e25a3b10814a4433af3',1,'audio_tools::SimpleFlanger']]],
+ ['simplelpf_2669',['SimpleLPF',['../classaudio__tools_1_1_simple_l_p_f.html#a3c125c4fbebe58d30d7a572259be5352',1,'audio_tools::SimpleLPF']]],
+ ['sine_2670',['sine',['../classaudio__tools_1_1_fast_sine_generator.html#a39b1d228d98347a574e5ef0ca6d170df',1,'audio_tools::FastSineGenerator']]],
+ ['singlebuffer_2671',['SingleBuffer',['../classaudio__tools_1_1_single_buffer.html#a35c6a8c1d8f0857e27e85530479a444a',1,'audio_tools::SingleBuffer::SingleBuffer(int size)'],['../classaudio__tools_1_1_single_buffer.html#acc095e96946a477f0606fe4612fea1be',1,'audio_tools::SingleBuffer::SingleBuffer()']]],
+ ['sink_2672',['sink',['../classaudio__tools_1_1_a2_d_p_stream.html#a232966b695bfd512f7541f2354be9349',1,'audio_tools::A2DPStream']]],
+ ['size_2673',['size',['../classaudio__tools_1_1_ring_buffer.html#a7edc9fae01093617967fd7c9df18a2a2',1,'audio_tools::RingBuffer::size()'],['../classaudio__tools_1_1_input_merge.html#af4b57d21919c42d55af03391f91a1c08',1,'audio_tools::InputMerge::size()'],['../classaudio__tools_1_1_input_mixer.html#af4b57d21919c42d55af03391f91a1c08',1,'audio_tools::InputMixer::size()'],['../classaudio__tools_1_1_progress_stream.html#a0b6b70701c46e22849f0f363861351cd',1,'audio_tools::ProgressStream::size()'],['../classaudio__tools_1_1_output_mixer.html#af4b57d21919c42d55af03391f91a1c08',1,'audio_tools::OutputMixer::size()'],['../classaudio__tools_1_1_s_d_direct.html#a22727e9c338fb1aaa6722031445373c3',1,'audio_tools::SDDirect::size()'],['../classaudio__tools_1_1_file_loop_t.html#a0b6b70701c46e22849f0f363861351cd',1,'audio_tools::FileLoopT::size()'],['../classaudio__tools_1_1_audio_source_s_t_d.html#a22727e9c338fb1aaa6722031445373c3',1,'audio_tools::AudioSourceSTD::size()'],['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html#a22727e9c338fb1aaa6722031445373c3',1,'audio_tools::AudioSourceSPIFFS::size()'],['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html#a22727e9c338fb1aaa6722031445373c3',1,'audio_tools::AudioSourceSDMMC::size()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a22727e9c338fb1aaa6722031445373c3',1,'audio_tools::AudioSourceSDFAT::size()'],['../classaudio__tools_1_1_slice.html#a0b6b70701c46e22849f0f363861351cd',1,'audio_tools::Slice::size()'],['../classaudio__tools_1_1_audio_source_s_d.html#a22727e9c338fb1aaa6722031445373c3',1,'audio_tools::AudioSourceSD::size()'],['../classaudio__tools_1_1_audio_effect_common.html#a0b6b70701c46e22849f0f363861351cd',1,'audio_tools::AudioEffectCommon::size()'],['../classaudio__tools_1_1_audio_effects.html#a0b6b70701c46e22849f0f363861351cd',1,'audio_tools::AudioEffects::size()'],['../classaudio__tools_1_1_audio_effect_stream_t.html#a0b6b70701c46e22849f0f363861351cd',1,'audio_tools::AudioEffectStreamT::size()'],['../class_u_i.html#aa2c7fffd280ddcd6500a065785df0950',1,'UI::size()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#af4b57d21919c42d55af03391f91a1c08',1,'audio_tools::AudioFFTBase::size()'],['../classaudio__tools_1_1_audio_source_idx_s_d.html#a22727e9c338fb1aaa6722031445373c3',1,'audio_tools::AudioSourceIdxSD::size()'],['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#a22727e9c338fb1aaa6722031445373c3',1,'audio_tools::AudioSourceIdxSDFAT::size()'],['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html#a22727e9c338fb1aaa6722031445373c3',1,'audio_tools::AudioSourceIdxSDMMC::size()'],['../classaudio__tools_1_1_audio_source_little_f_s.html#a22727e9c338fb1aaa6722031445373c3',1,'audio_tools::AudioSourceLittleFS::size()']]],
+ ['slice_2674',['slice',['../classaudio__tools_1_1_slice.html#a35c7aa6d798c5883c31622b9e55ca2f9',1,'audio_tools::Slice']]],
+ ['slices_2675',['slices',['../classaudio__tools_1_1_slice.html#a0c6cc07206e13187ee51ed2a1d761ceb',1,'audio_tools::Slice']]],
+ ['source_2676',['source',['../classaudio__tools_1_1_a2_d_p_stream.html#aebc4f5e8370485b03c78b5ae9f2a5e12',1,'audio_tools::A2DPStream']]],
+ ['spdifoutput_2677',['SPDIFOutput',['../classaudio__tools_1_1_s_p_d_i_f_output.html#a8e152c6e69b5a33c99f4b1e93867d7eb',1,'audio_tools::SPDIFOutput']]],
+ ['start_2678',['start',['../classaudio__tools_1_1_r_t_s_p_source_from_audio_stream.html#a2af117417cc4c8d4311fc92545326905',1,'audio_tools::RTSPSourceFromAudioStream::start()'],['../classaudio__tools_1_1_r_t_s_p_source_stream.html#a2af117417cc4c8d4311fc92545326905',1,'audio_tools::RTSPSourceStream::start()']]],
+ ['starti2sactive_2679',['startI2SActive',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#afd6bdc5cd79de775c95d546f395311c8',1,'audio_tools::I2SDriverNanoBLE']]],
+ ['startstream_2680',['startStream',['../classaudio__tools_1_1_port_audio_stream.html#a93f422be18f883e2f9b2d99b360a8218',1,'audio_tools::PortAudioStream']]],
+ ['startswith_2681',['startsWith',['../classaudio__tools_1_1_str.html#a59cd76cd53162d7d050c437663352bc5',1,'audio_tools::Str']]],
+ ['starttime_2682',['startTime',['../classaudio__tools_1_1_measuring_stream.html#a11eabc5af2cc7dc92d91c254cd7e9666',1,'audio_tools::MeasuringStream']]],
+ ['starttimer_2683',['startTimer',['../classaudio__tools_1_1_p_w_m_driver_e_s_p32.html#ac70c6a1420e03c6e8c938188c8b7dd56',1,'audio_tools::PWMDriverESP32::startTimer()'],['../classaudio__tools_1_1_p_w_m_driver_m_b_e_d.html#a23e8b43798a6b64b48e29f32517efeca',1,'audio_tools::PWMDriverMBED::startTimer()'],['../classaudio__tools_1_1_p_w_m_driver_renesas.html#a23e8b43798a6b64b48e29f32517efeca',1,'audio_tools::PWMDriverRenesas::startTimer()'],['../classaudio__tools_1_1_p_w_m_driver_s_t_m32.html#a23e8b43798a6b64b48e29f32517efeca',1,'audio_tools::PWMDriverSTM32::startTimer()']]],
+ ['status_2684',['status',['../classaudio__tools_1_1_meta_data_i_c_y.html#a00c2f5dcbe5ca3f9460bf7172690ab8b',1,'audio_tools::MetaDataICY']]],
+ ['stop_2685',['stop',['../classaudio__tools_1_1_audio_player.html#ae92ae13a136435391be883fd6f0f5c8c',1,'audio_tools::AudioPlayer::stop()'],['../group__basic.html#ga8c528baf37154d347366083f0f816846',1,'stop(): AudioRuntime.h'],['../classaudio__tools_1_1_r_t_s_p_source_stream.html#a1306e29fda504409b52d24e2002fbee3',1,'audio_tools::RTSPSourceStream::stop()'],['../classaudio__tools_1_1_r_t_s_p_source_from_audio_stream.html#a1306e29fda504409b52d24e2002fbee3',1,'audio_tools::RTSPSourceFromAudioStream::stop()'],['../classaudio__tools_1_1_audio_output_with_callback.html#a3d0f1501fa4ccfb9e3f868ab4a185856',1,'audio_tools::AudioOutputWithCallback::stop()']]],
+ ['storesample_2686',['storeSample',['../classaudio__tools_1_1_delay_effect_base.html#a142c910ad3008c9fce6dfc2e8ff7be9c',1,'audio_tools::DelayEffectBase']]],
+ ['str_2687',['Str',['../classaudio__tools_1_1_str.html#acf867645eea1a4877e39e0bbdbc0aa8e',1,'audio_tools::Str::Str(const char *chars)'],['../classaudio__tools_1_1_str.html#afb02830eb9ec22ce762cd969ed132501',1,'audio_tools::Str::Str(char chars[], int maxlen, int len=0)']]],
+ ['streamatom_2688',['streamAtom',['../classaudio__tools_1_1_container_m_p4.html#ae81130b914ec03661b95be1c406a37dc',1,'audio_tools::ContainerMP4']]],
+ ['streamheader_2689',['streamHeader',['../classaudio__tools_1_1_a_v_i_decoder.html#af2d2d9fa75b7f5d48b2cf38ce5c48f65',1,'audio_tools::AVIDecoder']]],
+ ['strnlength_2690',['strnlength',['../namespaceaudio__tools.html#af68d88c17f0bce43f0551198d0dcbd04',1,'audio_tools']]],
+ ['substring_2691',['substring',['../classaudio__tools_1_1_str.html#ad991390740b09c31bf7226bddbaccbed',1,'audio_tools::Str::substring(Str &from, int start, int end)'],['../classaudio__tools_1_1_str.html#a3f6497cf6cccccd073dd6cf73f9273f3',1,'audio_tools::Str::substring(const char *from, int start, int end)']]]
];
diff --git a/search/functions_13.js b/search/functions_13.js
index 0b34de9645..7e6a373b31 100644
--- a/search/functions_13.js
+++ b/search/functions_13.js
@@ -1,28 +1,28 @@
var searchData=
[
- ['timeoutautonext_2688',['timeoutAutoNext',['../classaudio__tools_1_1_audio_source.html#ac20e50555537a80d3d535eb2225cc738',1,'audio_tools::AudioSource']]],
- ['timeralarmrepeating_2689',['TimerAlarmRepeating',['../classaudio__tools_1_1_timer_alarm_repeating.html#add0f5aed6b7228dd21bd91eae4f3ad44',1,'audio_tools::TimerAlarmRepeating::TimerAlarmRepeating()=default'],['../classaudio__tools_1_1_timer_alarm_repeating.html#a227dfa05f6898d3c069dab2e132a16f7',1,'audio_tools::TimerAlarmRepeating::TimerAlarmRepeating(TimerAlarmRepeatingDriverBase &timer)']]],
- ['toaudiokitconfig_2690',['toAudioKitConfig',['../classaudio__tools_1_1_audio_kit_stream_config.html#a4004138f5ff66c31ad339182f71849cd',1,'audio_tools::AudioKitStreamConfig']]],
- ['tobinary_2691',['toBinary',['../classaudio__tools_1_1_str.html#a4c9f09eb658e0b0d1ce261d078f27b66',1,'audio_tools::Str']]],
- ['tobytes_2692',['toBytes',['../classaudio__tools_1_1_audio_time.html#a61c21fd54337776cc04c075794e86ccb',1,'audio_tools::AudioTime']]],
- ['tocodecmode_2693',['toCodecMode',['../classaudio__tools_1_1_audio_kit_stream_config.html#a8be2117d809fb8e59c064703048984c9',1,'audio_tools::AudioKitStreamConfig']]],
- ['todouble_2694',['toDouble',['../classaudio__tools_1_1_str.html#a717798b8ae5a730ac320e99a71d72522',1,'audio_tools::Str']]],
- ['tofloat_2695',['toFloat',['../classaudio__tools_1_1int24__3bytes__t.html#ad6bb46566b18ad8dffcb702ab299f292',1,'audio_tools::int24_3bytes_t::toFloat()'],['../classaudio__tools_1_1int24__4bytes__t.html#ad6bb46566b18ad8dffcb702ab299f292',1,'audio_tools::int24_4bytes_t::toFloat()'],['../classaudio__tools_1_1_equilizer3_bands.html#a0c24d548b7a3b674cfa9064f1a53e0da',1,'audio_tools::Equilizer3Bands::toFloat()']]],
- ['toformat_2696',['toFormat',['../classaudio__tools_1_1_audio_kit_stream_config.html#ad4d7dc38d584805e26499ea2cecdd5ac',1,'audio_tools::AudioKitStreamConfig']]],
- ['toint_2697',['toInt',['../classaudio__tools_1_1int24__3bytes__t.html#a8cc7782de081ce702a9be163b4cb8f84',1,'audio_tools::int24_3bytes_t::toInt()'],['../classaudio__tools_1_1int24__4bytes__t.html#a8cc7782de081ce702a9be163b4cb8f84',1,'audio_tools::int24_4bytes_t::toInt()'],['../classaudio__tools_1_1_str.html#ad2db9dcf09114103856937735e91a2ea',1,'audio_tools::Str::toInt()']]],
- ['toint16_2698',['toInt16',['../classaudio__tools_1_1_equilizer3_bands.html#ac41d06b78a8885fef9b8cfbe436f73b8',1,'audio_tools::Equilizer3Bands']]],
- ['tolong_2699',['toLong',['../classaudio__tools_1_1_str.html#ab829689f28f070c86c61a702d2efdd41',1,'audio_tools::Str']]],
- ['tolowercase_2700',['toLowerCase',['../classaudio__tools_1_1_str.html#afc42761ebe86bc3b28282ba6b95b988c',1,'audio_tools::Str']]],
- ['tomode_2701',['toMode',['../classaudio__tools_1_1_audio_kit_stream_config.html#a5c825663b5d82bb99809e8db31bf626f',1,'audio_tools::AudioKitStreamConfig']]],
- ['tonumbers_2702',['toNumbers',['../classaudio__tools_1_1_number_reader.html#addd2f922007cf3962800b48d6f123dfb',1,'audio_tools::NumberReader']]],
- ['tosamplerate_2703',['toSampleRate',['../classaudio__tools_1_1_audio_kit_stream_config.html#aba68ee2d2d4a36d1ae90069c8188ab4d',1,'audio_tools::AudioKitStreamConfig']]],
- ['tostr_2704',['toStr',['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#a2bee54fc610d0619a6957a902095b5c5',1,'audio_tools::AudioSourceIdxSDFAT::toStr()'],['../group__metadata.html#gae06c56511c8bb5a3a7649c4821660886',1,'audio_tools::toStr()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a2bee54fc610d0619a6957a902095b5c5',1,'audio_tools::AudioSourceSDFAT::toStr()'],['../classaudio__tools_1_1_audio_source_s_t_d.html#a2bee54fc610d0619a6957a902095b5c5',1,'audio_tools::AudioSourceSTD::toStr()'],['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html#a2bee54fc610d0619a6957a902095b5c5',1,'audio_tools::AudioSourceSPIFFS::toStr()'],['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html#a2bee54fc610d0619a6957a902095b5c5',1,'audio_tools::AudioSourceSDMMC::toStr()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a2bee54fc610d0619a6957a902095b5c5',1,'audio_tools::AudioSourceSDFAT::toStr()'],['../classaudio__tools_1_1_audio_source_s_d.html#a2bee54fc610d0619a6957a902095b5c5',1,'audio_tools::AudioSourceSD::toStr()'],['../classaudio__tools_1_1_audio_source_little_f_s.html#a2bee54fc610d0619a6957a902095b5c5',1,'audio_tools::AudioSourceLittleFS::toStr()'],['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html#a2bee54fc610d0619a6957a902095b5c5',1,'audio_tools::AudioSourceIdxSDMMC::toStr()'],['../classaudio__tools_1_1_audio_source_idx_s_d.html#a2bee54fc610d0619a6957a902095b5c5',1,'audio_tools::AudioSourceIdxSD::toStr()']]],
- ['totalbytes_2705',['totalBytes',['../classaudio__tools_1_1_progress_stream.html#ad5891145389303621fcb1575fdb2692a',1,'audio_tools::ProgressStream']]],
- ['totalsecs_2706',['totalSecs',['../classaudio__tools_1_1_progress_stream.html#a29c988fa9c6bba3edb024edb6f4bc9a3',1,'audio_tools::ProgressStream']]],
- ['totimeus_2707',['toTimeUs',['../classaudio__tools_1_1_audio_time.html#ac75be917519dc82b0025e9187218394d',1,'audio_tools::AudioTime']]],
- ['touppercase_2708',['toUpperCase',['../classaudio__tools_1_1_str.html#afcff036690f189b220e039afe8b9a0f7',1,'audio_tools::Str']]],
- ['tremolo_2709',['Tremolo',['../classaudio__tools_1_1_tremolo.html#a6cebfd2642670bb1b582f36d550d44e8',1,'audio_tools::Tremolo']]],
- ['trim_2710',['trim',['../classaudio__tools_1_1_str.html#a956b07c2f06dbbd4a45bc77be5085932',1,'audio_tools::Str']]],
- ['tryparsechunk_2711',['tryParseChunk',['../classaudio__tools_1_1_a_v_i_decoder.html#adaead7bfa82627f62dcc663302fc3c51',1,'audio_tools::AVIDecoder::tryParseChunk()'],['../classaudio__tools_1_1_a_v_i_decoder.html#af594a645cf9e66a99a98bef97b59803a',1,'audio_tools::AVIDecoder::tryParseChunk(const char *id)']]],
- ['tryparselist_2712',['tryParseList',['../classaudio__tools_1_1_a_v_i_decoder.html#a9810da73ae9dd8914b97d452e7f390b1',1,'audio_tools::AVIDecoder']]]
+ ['timeoutautonext_2692',['timeoutAutoNext',['../classaudio__tools_1_1_audio_source.html#ac20e50555537a80d3d535eb2225cc738',1,'audio_tools::AudioSource']]],
+ ['timeralarmrepeating_2693',['TimerAlarmRepeating',['../classaudio__tools_1_1_timer_alarm_repeating.html#add0f5aed6b7228dd21bd91eae4f3ad44',1,'audio_tools::TimerAlarmRepeating::TimerAlarmRepeating()=default'],['../classaudio__tools_1_1_timer_alarm_repeating.html#a227dfa05f6898d3c069dab2e132a16f7',1,'audio_tools::TimerAlarmRepeating::TimerAlarmRepeating(TimerAlarmRepeatingDriverBase &timer)']]],
+ ['toaudiokitconfig_2694',['toAudioKitConfig',['../classaudio__tools_1_1_audio_kit_stream_config.html#a4004138f5ff66c31ad339182f71849cd',1,'audio_tools::AudioKitStreamConfig']]],
+ ['tobinary_2695',['toBinary',['../classaudio__tools_1_1_str.html#a4c9f09eb658e0b0d1ce261d078f27b66',1,'audio_tools::Str']]],
+ ['tobytes_2696',['toBytes',['../classaudio__tools_1_1_audio_time.html#a61c21fd54337776cc04c075794e86ccb',1,'audio_tools::AudioTime']]],
+ ['tocodecmode_2697',['toCodecMode',['../classaudio__tools_1_1_audio_kit_stream_config.html#a8be2117d809fb8e59c064703048984c9',1,'audio_tools::AudioKitStreamConfig']]],
+ ['todouble_2698',['toDouble',['../classaudio__tools_1_1_str.html#a717798b8ae5a730ac320e99a71d72522',1,'audio_tools::Str']]],
+ ['tofloat_2699',['toFloat',['../classaudio__tools_1_1int24__3bytes__t.html#ad6bb46566b18ad8dffcb702ab299f292',1,'audio_tools::int24_3bytes_t::toFloat()'],['../classaudio__tools_1_1int24__4bytes__t.html#ad6bb46566b18ad8dffcb702ab299f292',1,'audio_tools::int24_4bytes_t::toFloat()'],['../classaudio__tools_1_1_equilizer3_bands.html#a0c24d548b7a3b674cfa9064f1a53e0da',1,'audio_tools::Equilizer3Bands::toFloat()']]],
+ ['toformat_2700',['toFormat',['../classaudio__tools_1_1_audio_kit_stream_config.html#ad4d7dc38d584805e26499ea2cecdd5ac',1,'audio_tools::AudioKitStreamConfig']]],
+ ['toint_2701',['toInt',['../classaudio__tools_1_1int24__3bytes__t.html#a8cc7782de081ce702a9be163b4cb8f84',1,'audio_tools::int24_3bytes_t::toInt()'],['../classaudio__tools_1_1int24__4bytes__t.html#a8cc7782de081ce702a9be163b4cb8f84',1,'audio_tools::int24_4bytes_t::toInt()'],['../classaudio__tools_1_1_str.html#ad2db9dcf09114103856937735e91a2ea',1,'audio_tools::Str::toInt()']]],
+ ['toint16_2702',['toInt16',['../classaudio__tools_1_1_equilizer3_bands.html#ac41d06b78a8885fef9b8cfbe436f73b8',1,'audio_tools::Equilizer3Bands']]],
+ ['tolong_2703',['toLong',['../classaudio__tools_1_1_str.html#ab829689f28f070c86c61a702d2efdd41',1,'audio_tools::Str']]],
+ ['tolowercase_2704',['toLowerCase',['../classaudio__tools_1_1_str.html#afc42761ebe86bc3b28282ba6b95b988c',1,'audio_tools::Str']]],
+ ['tomode_2705',['toMode',['../classaudio__tools_1_1_audio_kit_stream_config.html#a5c825663b5d82bb99809e8db31bf626f',1,'audio_tools::AudioKitStreamConfig']]],
+ ['tonumbers_2706',['toNumbers',['../classaudio__tools_1_1_number_reader.html#addd2f922007cf3962800b48d6f123dfb',1,'audio_tools::NumberReader']]],
+ ['tosamplerate_2707',['toSampleRate',['../classaudio__tools_1_1_audio_kit_stream_config.html#aba68ee2d2d4a36d1ae90069c8188ab4d',1,'audio_tools::AudioKitStreamConfig']]],
+ ['tostr_2708',['toStr',['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#a2bee54fc610d0619a6957a902095b5c5',1,'audio_tools::AudioSourceIdxSDFAT::toStr()'],['../group__metadata.html#gae06c56511c8bb5a3a7649c4821660886',1,'audio_tools::toStr()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a2bee54fc610d0619a6957a902095b5c5',1,'audio_tools::AudioSourceSDFAT::toStr()'],['../classaudio__tools_1_1_audio_source_s_t_d.html#a2bee54fc610d0619a6957a902095b5c5',1,'audio_tools::AudioSourceSTD::toStr()'],['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html#a2bee54fc610d0619a6957a902095b5c5',1,'audio_tools::AudioSourceSPIFFS::toStr()'],['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html#a2bee54fc610d0619a6957a902095b5c5',1,'audio_tools::AudioSourceSDMMC::toStr()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a2bee54fc610d0619a6957a902095b5c5',1,'audio_tools::AudioSourceSDFAT::toStr()'],['../classaudio__tools_1_1_audio_source_s_d.html#a2bee54fc610d0619a6957a902095b5c5',1,'audio_tools::AudioSourceSD::toStr()'],['../classaudio__tools_1_1_audio_source_little_f_s.html#a2bee54fc610d0619a6957a902095b5c5',1,'audio_tools::AudioSourceLittleFS::toStr()'],['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html#a2bee54fc610d0619a6957a902095b5c5',1,'audio_tools::AudioSourceIdxSDMMC::toStr()'],['../classaudio__tools_1_1_audio_source_idx_s_d.html#a2bee54fc610d0619a6957a902095b5c5',1,'audio_tools::AudioSourceIdxSD::toStr()']]],
+ ['totalbytes_2709',['totalBytes',['../classaudio__tools_1_1_progress_stream.html#ad5891145389303621fcb1575fdb2692a',1,'audio_tools::ProgressStream']]],
+ ['totalsecs_2710',['totalSecs',['../classaudio__tools_1_1_progress_stream.html#a29c988fa9c6bba3edb024edb6f4bc9a3',1,'audio_tools::ProgressStream']]],
+ ['totimeus_2711',['toTimeUs',['../classaudio__tools_1_1_audio_time.html#ac75be917519dc82b0025e9187218394d',1,'audio_tools::AudioTime']]],
+ ['touppercase_2712',['toUpperCase',['../classaudio__tools_1_1_str.html#afcff036690f189b220e039afe8b9a0f7',1,'audio_tools::Str']]],
+ ['tremolo_2713',['Tremolo',['../classaudio__tools_1_1_tremolo.html#a6cebfd2642670bb1b582f36d550d44e8',1,'audio_tools::Tremolo']]],
+ ['trim_2714',['trim',['../classaudio__tools_1_1_str.html#a956b07c2f06dbbd4a45bc77be5085932',1,'audio_tools::Str']]],
+ ['tryparsechunk_2715',['tryParseChunk',['../classaudio__tools_1_1_a_v_i_decoder.html#adaead7bfa82627f62dcc663302fc3c51',1,'audio_tools::AVIDecoder::tryParseChunk()'],['../classaudio__tools_1_1_a_v_i_decoder.html#af594a645cf9e66a99a98bef97b59803a',1,'audio_tools::AVIDecoder::tryParseChunk(const char *id)']]],
+ ['tryparselist_2716',['tryParseList',['../classaudio__tools_1_1_a_v_i_decoder.html#a9810da73ae9dd8914b97d452e7f390b1',1,'audio_tools::AVIDecoder']]]
];
diff --git a/search/functions_14.js b/search/functions_14.js
index 5ce7a3826f..c7b8473099 100644
--- a/search/functions_14.js
+++ b/search/functions_14.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['update_2713',['update',['../classaudio__tools_1_1_l_e_d_output.html#acd36d7881ea8503d5c5824e7a5ad6c7e',1,'audio_tools::LEDOutput::update()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#acd36d7881ea8503d5c5824e7a5ad6c7e',1,'audio_tools::LEDOutputUnoR4::update()']]],
- ['updatemodulation_2714',['updateModulation',['../classaudio__tools_1_1_simple_flanger.html#a0fa8a90f35312752588052b085075ac8',1,'audio_tools::SimpleFlanger']]],
- ['urlcount_2715',['urlCount',['../classaudio__tools_1_1_u_r_l_loader.html#a2315b128f5a1599b1b4cdb016792a728',1,'audio_tools::URLLoader']]]
+ ['update_2717',['update',['../classaudio__tools_1_1_l_e_d_output.html#acd36d7881ea8503d5c5824e7a5ad6c7e',1,'audio_tools::LEDOutput::update()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#acd36d7881ea8503d5c5824e7a5ad6c7e',1,'audio_tools::LEDOutputUnoR4::update()']]],
+ ['updatemodulation_2718',['updateModulation',['../classaudio__tools_1_1_simple_flanger.html#a0fa8a90f35312752588052b085075ac8',1,'audio_tools::SimpleFlanger']]],
+ ['urlcount_2719',['urlCount',['../classaudio__tools_1_1_u_r_l_loader.html#a2315b128f5a1599b1b4cdb016792a728',1,'audio_tools::URLLoader']]]
];
diff --git a/search/functions_15.js b/search/functions_15.js
index 0ef4ae2423..754f94e7a7 100644
--- a/search/functions_15.js
+++ b/search/functions_15.js
@@ -1,11 +1,11 @@
var searchData=
[
- ['validate_2716',['validate',['../classaudio__tools_1_1_tf_lite_micro_speech_recognize_commands.html#a0af80f2fb232d357df7ded120d09f0dc',1,'audio_tools::TfLiteMicroSpeechRecognizeCommands']]],
- ['vector_2717',['Vector',['../classaudio__tools_1_1_vector.html#a4155c2064fb658b43b41b64756c6398f',1,'audio_tools::Vector::Vector(size_t len=20)'],['../classaudio__tools_1_1_vector.html#a3c671b50d8244040089ba15b0cb6592c',1,'audio_tools::Vector::Vector(int size, T value)'],['../classaudio__tools_1_1_vector.html#a56c0272405a621eb8ef6725bad9a19a0',1,'audio_tools::Vector::Vector(Vector< T > ©From)'],['../classaudio__tools_1_1_vector.html#a11e874def9de9e45ce86f1d5ed73cc01',1,'audio_tools::Vector::Vector(T *from, T *to)']]],
- ['videoseconds_2718',['videoSeconds',['../classaudio__tools_1_1_a_v_i_decoder.html#a69e59074343653b1c99551ca65bc9c13',1,'audio_tools::AVIDecoder']]],
- ['volume_2719',['volume',['../classaudio__tools_1_1_audio_player.html#a893871d008fd5516565045bb55e60dd8',1,'audio_tools::AudioPlayer::volume()'],['../classaudio__tools_1_1_volume_stream.html#af70e2220bd25b8609cf5386bbcded254',1,'audio_tools::VolumeStream::volume(int channel)'],['../classaudio__tools_1_1_volume_stream.html#a1d59a107c6918cdc9a17b92f6cd4e136',1,'audio_tools::VolumeStream::volume()'],['../classaudio__tools_1_1_volume_output.html#af70e2220bd25b8609cf5386bbcded254',1,'audio_tools::VolumeOutput::volume(int channel)'],['../classaudio__tools_1_1_volume_output.html#a1d59a107c6918cdc9a17b92f6cd4e136',1,'audio_tools::VolumeOutput::volume()'],['../classaudio__tools_1_1_v_s1053_stream.html#a1d59a107c6918cdc9a17b92f6cd4e136',1,'audio_tools::VS1053Stream::volume()'],['../classaudio__tools_1_1_audio_kit_stream.html#a56fd55a21e8060769938c33ac16ee4f2',1,'audio_tools::AudioKitStream::volume()']]],
- ['volumein_2720',['volumeIn',['../classaudio__tools_1_1_w_m8960_stream.html#a1d35bc028db1458300b918b02148d618',1,'audio_tools::WM8960Stream']]],
- ['volumeledoutput_2721',['volumeLEDOutput',['../namespaceaudio__tools.html#a92950deb71a0b74d99d22219de0dd83b',1,'audio_tools']]],
- ['volumeledoutputunor4_2722',['volumeLEDOutputUnoR4',['../namespaceaudio__tools.html#af3ec72771af0be258a482535b2decc9d',1,'audio_tools']]],
- ['volumestream_2723',['VolumeStream',['../classaudio__tools_1_1_volume_stream.html#a91df9205f089001aba76d0fa8a7d1af1',1,'audio_tools::VolumeStream::VolumeStream()=default'],['../classaudio__tools_1_1_volume_stream.html#aeefdc8cb4396440dcd16cf76ce39b168',1,'audio_tools::VolumeStream::VolumeStream(Print &out)'],['../classaudio__tools_1_1_volume_stream.html#ad5f4bc6dc1d853957daa5b3708e55e72',1,'audio_tools::VolumeStream::VolumeStream(Stream &in)'],['../classaudio__tools_1_1_volume_stream.html#acf2460851655f3d4f7e2a6baba30a2a2',1,'audio_tools::VolumeStream::VolumeStream(AudioOutput &out)'],['../classaudio__tools_1_1_volume_stream.html#a957d7851fc8e9598336df3e208f63ec5',1,'audio_tools::VolumeStream::VolumeStream(AudioStream &io)']]]
+ ['validate_2720',['validate',['../classaudio__tools_1_1_tf_lite_micro_speech_recognize_commands.html#a0af80f2fb232d357df7ded120d09f0dc',1,'audio_tools::TfLiteMicroSpeechRecognizeCommands']]],
+ ['vector_2721',['Vector',['../classaudio__tools_1_1_vector.html#a4155c2064fb658b43b41b64756c6398f',1,'audio_tools::Vector::Vector(size_t len=20)'],['../classaudio__tools_1_1_vector.html#a3c671b50d8244040089ba15b0cb6592c',1,'audio_tools::Vector::Vector(int size, T value)'],['../classaudio__tools_1_1_vector.html#a56c0272405a621eb8ef6725bad9a19a0',1,'audio_tools::Vector::Vector(Vector< T > ©From)'],['../classaudio__tools_1_1_vector.html#a11e874def9de9e45ce86f1d5ed73cc01',1,'audio_tools::Vector::Vector(T *from, T *to)']]],
+ ['videoseconds_2722',['videoSeconds',['../classaudio__tools_1_1_a_v_i_decoder.html#a69e59074343653b1c99551ca65bc9c13',1,'audio_tools::AVIDecoder']]],
+ ['volume_2723',['volume',['../classaudio__tools_1_1_audio_player.html#a893871d008fd5516565045bb55e60dd8',1,'audio_tools::AudioPlayer::volume()'],['../classaudio__tools_1_1_volume_stream.html#af70e2220bd25b8609cf5386bbcded254',1,'audio_tools::VolumeStream::volume(int channel)'],['../classaudio__tools_1_1_volume_stream.html#a1d59a107c6918cdc9a17b92f6cd4e136',1,'audio_tools::VolumeStream::volume()'],['../classaudio__tools_1_1_volume_output.html#af70e2220bd25b8609cf5386bbcded254',1,'audio_tools::VolumeOutput::volume(int channel)'],['../classaudio__tools_1_1_volume_output.html#a1d59a107c6918cdc9a17b92f6cd4e136',1,'audio_tools::VolumeOutput::volume()'],['../classaudio__tools_1_1_v_s1053_stream.html#a1d59a107c6918cdc9a17b92f6cd4e136',1,'audio_tools::VS1053Stream::volume()'],['../classaudio__tools_1_1_audio_kit_stream.html#a56fd55a21e8060769938c33ac16ee4f2',1,'audio_tools::AudioKitStream::volume()']]],
+ ['volumein_2724',['volumeIn',['../classaudio__tools_1_1_w_m8960_stream.html#a1d35bc028db1458300b918b02148d618',1,'audio_tools::WM8960Stream']]],
+ ['volumeledoutput_2725',['volumeLEDOutput',['../namespaceaudio__tools.html#a92950deb71a0b74d99d22219de0dd83b',1,'audio_tools']]],
+ ['volumeledoutputunor4_2726',['volumeLEDOutputUnoR4',['../namespaceaudio__tools.html#af3ec72771af0be258a482535b2decc9d',1,'audio_tools']]],
+ ['volumestream_2727',['VolumeStream',['../classaudio__tools_1_1_volume_stream.html#a91df9205f089001aba76d0fa8a7d1af1',1,'audio_tools::VolumeStream::VolumeStream()=default'],['../classaudio__tools_1_1_volume_stream.html#aeefdc8cb4396440dcd16cf76ce39b168',1,'audio_tools::VolumeStream::VolumeStream(Print &out)'],['../classaudio__tools_1_1_volume_stream.html#ad5f4bc6dc1d853957daa5b3708e55e72',1,'audio_tools::VolumeStream::VolumeStream(Stream &in)'],['../classaudio__tools_1_1_volume_stream.html#acf2460851655f3d4f7e2a6baba30a2a2',1,'audio_tools::VolumeStream::VolumeStream(AudioOutput &out)'],['../classaudio__tools_1_1_volume_stream.html#a957d7851fc8e9598336df3e208f63ec5',1,'audio_tools::VolumeStream::VolumeStream(AudioStream &io)']]]
];
diff --git a/search/functions_16.js b/search/functions_16.js
index f893583f26..b42892b18c 100644
--- a/search/functions_16.js
+++ b/search/functions_16.js
@@ -1,25 +1,26 @@
var searchData=
[
- ['waitfor_2724',['waitFor',['../classaudio__tools_1_1_audio_sync_reader.html#a2c7d50fd96ce1e9ac379caf010189617',1,'audio_tools::AudioSyncReader::waitFor()'],['../classaudio__tools_1_1_audio_sync_writer.html#a2c7d50fd96ce1e9ac379caf010189617',1,'audio_tools::AudioSyncWriter::waitFor()'],['../group__basic.html#ga83c0970d946a0c48474620352453b903',1,'audio_tools::waitFor()']]],
- ['waitfordata_2725',['waitForData',['../classaudio__tools_1_1_u_r_l_stream.html#a520fbf517da487a5fe9cdd75209554cc',1,'audio_tools::URLStream']]],
- ['wavdecoder_2726',['WAVDecoder',['../classaudio__tools_1_1_w_a_v_decoder.html#a9c47a827a0f04215fa3005ba97123435',1,'audio_tools::WAVDecoder::WAVDecoder()=default'],['../classaudio__tools_1_1_w_a_v_decoder.html#ab5555009a75f049857a44ae320627e59',1,'audio_tools::WAVDecoder::WAVDecoder(AudioDecoderExt &dec, AudioFormat fmt)']]],
- ['wavencoder_2727',['WAVEncoder',['../classaudio__tools_1_1_w_a_v_encoder.html#a6e412c073e406dda931a09f5ee875fd0',1,'audio_tools::WAVEncoder::WAVEncoder()=default'],['../classaudio__tools_1_1_w_a_v_encoder.html#aaa10c43657d6662d7c740af988cae00f',1,'audio_tools::WAVEncoder::WAVEncoder(AudioEncoderExt &enc, AudioFormat fmt)']]],
- ['wavimadecoder_2728',['WavIMADecoder',['../classaudio__tools_1_1_wav_i_m_a_decoder.html#a00e41f386087cda4eaf92bd7024ed6bb',1,'audio_tools::WavIMADecoder::WavIMADecoder()'],['../classaudio__tools_1_1_wav_i_m_a_decoder.html#af3311b0c1e6c2ea362e91fca3b053f2b',1,'audio_tools::WavIMADecoder::WavIMADecoder(Print &out_stream, bool active=true)'],['../classaudio__tools_1_1_wav_i_m_a_decoder.html#a61202c4d1b5ae76fd4a42b7ea0854362',1,'audio_tools::WavIMADecoder::WavIMADecoder(Print &out_stream, AudioInfoSupport &bi)']]],
- ['whitenoisegenerator_2729',['WhiteNoiseGenerator',['../classaudio__tools_1_1_white_noise_generator.html#a517af52e1104e303bef973f6f138aeae',1,'audio_tools::WhiteNoiseGenerator']]],
- ['write_2730',['write',['../classaudio__tools_1_1_a2_d_p_stream.html#a7597ef706dd1aa590903ce9e095db20a',1,'audio_tools::A2DPStream::write()'],['../classaudio__tools_1_1_meta_data_i_d3_v2.html#afd7270e10d851383ff7b53c1241f6ba1',1,'audio_tools::MetaDataID3V2::write()'],['../classaudio__tools_1_1_meta_data_i_d3_v1.html#afd7270e10d851383ff7b53c1241f6ba1',1,'audio_tools::MetaDataID3V1::write()'],['../classaudio__tools_1_1_meta_data_i_c_y.html#aae89c571048794f27f3cb5fcc7e8b87b',1,'audio_tools::MetaDataICY::write()'],['../classaudio__tools_1_1_meta_data_i_d3.html#a0bc4cb6e5fbb01c214120c7a98ca47bb',1,'audio_tools::MetaDataID3::write()'],['../classaudio__tools_1_1_meta_data_filter.html#a7247dbfe416d15659671ab1561d76739',1,'audio_tools::MetaDataFilter::write()'],['../classaudio__tools_1_1_meta_data_output.html#a0bc4cb6e5fbb01c214120c7a98ca47bb',1,'audio_tools::MetaDataOutput::write()'],['../classaudio__tools_1_1_v_s1053_stream.html#ae74e483484f1f059fc9ee780b1a7cc29',1,'audio_tools::VS1053Stream::write()'],['../classaudio__tools_1_1_tf_lite_audio_stream.html#a8c9b62168557af21ef8ded031747ddd5',1,'audio_tools::TfLiteAudioStream::write()'],['../classaudio__tools_1_1_tf_lite_audio_stream_base.html#a6e5c54247d654a08f84b46f61abbf2a2',1,'audio_tools::TfLiteAudioStreamBase::write()'],['../classaudio__tools_1_1_r_t_s_p_output.html#ad91d65aa5a5911f5533d8d0e44133cc6',1,'audio_tools::RTSPOutput::write()'],['../classaudio__tools_1_1_u_d_p_stream.html#a183cb7a3c6dce3202f9a4c205bd09e11',1,'audio_tools::UDPStream::write()'],['../classaudio__tools_1_1_e_s_p_now_stream.html#a7597ef706dd1aa590903ce9e095db20a',1,'audio_tools::ESPNowStream::write()'],['../classaudio__tools_1_1_mozzi_stream.html#ab951bb19f06d4e5151474659cfdfd807',1,'audio_tools::MozziStream::write()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#a7597ef706dd1aa590903ce9e095db20a',1,'audio_tools::AudioFFTBase::write()'],['../classaudio__tools_1_1_faust_stream.html#afb17c26f4788c43eaeaea97bc935343d',1,'audio_tools::FaustStream::write()'],['../classaudio__tools_1_1_audio_server_ex.html#a7597ef706dd1aa590903ce9e095db20a',1,'audio_tools::AudioServerEx::write()'],['../classaudio__tools_1_1_progress_stream.html#ae74e483484f1f059fc9ee780b1a7cc29',1,'audio_tools::ProgressStream::write()'],['../classaudio__tools_1_1_volume_stream.html#ae74e483484f1f059fc9ee780b1a7cc29',1,'audio_tools::VolumeStream::write()'],['../classaudio__tools_1_1_stream_copy_t.html#a41290aaf7225cf713948222a05e9494b',1,'audio_tools::StreamCopyT::write()'],['../classaudio__tools_1_1_resample_stream.html#a0284c414da66b48385a66b676b2e2356',1,'audio_tools::ResampleStream::write()'],['../classaudio__tools_1_1_n_buffer.html#a5a7b764c471a4ddcd2ffc3893769c874',1,'audio_tools::NBuffer::write()'],['../classaudio__tools_1_1_ring_buffer_file.html#a7098400d9e88b57179cee1fbd589601d',1,'audio_tools::RingBufferFile::write()'],['../classaudio__tools_1_1_ring_buffer.html#a762c87ce3d749ba209ff05e6af210be5',1,'audio_tools::RingBuffer::write()'],['../classaudio__tools_1_1_single_buffer.html#a297f30ced5108b4589f5aa46ef366b7b',1,'audio_tools::SingleBuffer::write()'],['../classaudio__tools_1_1_base_buffer.html#add0fdb7ecaaeadb3a231119d7d602311',1,'audio_tools::BaseBuffer::write()'],['../classaudio__tools_1_1_timed_stream.html#af39b27e52134485635e8d670c47ab365',1,'audio_tools::TimedStream::write()'],['../classaudio__tools_1_1_measuring_stream.html#ae74e483484f1f059fc9ee780b1a7cc29',1,'audio_tools::MeasuringStream::write()'],['../classaudio__tools_1_1_buffered_stream.html#a016bb39af201e717c1975551b7ecc1b3',1,'audio_tools::BufferedStream::write(const uint8_t *data, size_t len) override'],['../classaudio__tools_1_1_buffered_stream.html#aaf33c44b7e9ab693bc5e2f5f501f4747',1,'audio_tools::BufferedStream::write(uint8_t c) override'],['../classaudio__tools_1_1_s_p_d_i_f_output.html#ac2b8b03ece84865865c2e918dfcafe12',1,'audio_tools::SPDIFOutput::write()'],['../classaudio__tools_1_1_output_mixer.html#a69fce743755f71ed4b89417b0a8f3408',1,'audio_tools::OutputMixer::write(int idx, const uint8_t *buffer_c, size_t bytes)'],['../classaudio__tools_1_1_output_mixer.html#a91c8fc5c52681e7c3fae7f0fa4c8b3ed',1,'audio_tools::OutputMixer::write(const uint8_t *buffer_c, size_t bytes) override'],['../classaudio__tools_1_1_csv_output.html#a016bb39af201e717c1975551b7ecc1b3',1,'audio_tools::CsvOutput::write()'],['../classaudio__tools_1_1_encoder_base64.html#a109253af7e76210d9e79971cbaf774b6',1,'audio_tools::EncoderBase64::write()'],['../classaudio__tools_1_1_m_p3_decoder_helix.html#ac4a3ffc04adff8a2d008116bbd5150a4',1,'audio_tools::MP3DecoderHelix::write()'],['../classaudio__tools_1_1_encoder_l8.html#ac9df001cacfb1816fb8f2cf871450c4a',1,'audio_tools::EncoderL8::write()'],['../classaudio__tools_1_1_encoder_l16.html#a1b29912258e11751cfa24707a4e328ca',1,'audio_tools::EncoderL16::write()'],['../classaudio__tools_1_1_decoder_helix.html#a2685d88d9d964c749bce462858634b6e',1,'audio_tools::DecoderHelix::write()'],['../classaudio__tools_1_1_encoder_float.html#a1b29912258e11751cfa24707a4e328ca',1,'audio_tools::EncoderFloat::write()'],['../classaudio__tools_1_1_decoder_float.html#aeb37cdb728cff1e60e8d7309d8baa08a',1,'audio_tools::DecoderFloat::write()'],['../classaudio__tools_1_1_f_l_a_c_encoder.html#a1b29912258e11751cfa24707a4e328ca',1,'audio_tools::FLACEncoder::write()'],['../classaudio__tools_1_1_encoder_basic.html#a1b29912258e11751cfa24707a4e328ca',1,'audio_tools::EncoderBasic::write()'],['../classaudio__tools_1_1_buffered_task_stream.html#a016bb39af201e717c1975551b7ecc1b3',1,'audio_tools::BufferedTaskStream::write()'],['../classaudio__tools_1_1_a_d_t_s_decoder.html#a1a770cfd1c8d336bdf8eaea18028db6d',1,'audio_tools::ADTSDecoder::write()'],['../classaudio__tools_1_1_a_a_c_decoder_helix.html#a11f4323fb39ca0ba4a703465ae04e542',1,'audio_tools::AACDecoderHelix::write()'],['../classaudio__tools_1_1_a_a_c_decoder_f_a_a_d.html#ade6ec60e71760083752b4949e68b59c9',1,'audio_tools::AACDecoderFAAD::write()'],['../classaudio__tools_1_1_encoded_audio_output.html#a016bb39af201e717c1975551b7ecc1b3',1,'audio_tools::EncodedAudioOutput::write()'],['../classaudio__tools_1_1_analog_driver_m_b_e_d.html#a360ffe5435df7f910720c0f3faa04dee',1,'audio_tools::AnalogDriverMBED::write()'],['../classaudio__tools_1_1_analog_driver_e_s_p32_v1.html#a360ffe5435df7f910720c0f3faa04dee',1,'audio_tools::AnalogDriverESP32V1::write()'],['../classaudio__tools_1_1_analog_driver_e_s_p32.html#a360ffe5435df7f910720c0f3faa04dee',1,'audio_tools::AnalogDriverESP32::write()'],['../classaudio__tools_1_1_analog_audio_stream.html#a360ffe5435df7f910720c0f3faa04dee',1,'audio_tools::AnalogAudioStream::write()'],['../classaudio__tools_1_1_audio_effect_stream_t.html#af39b27e52134485635e8d670c47ab365',1,'audio_tools::AudioEffectStreamT::write()'],['../classaudio__tools_1_1_i2_s_stream.html#a2ea68b231c423a554ea84d14f88e271e',1,'audio_tools::I2SStream::write()'],['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#a2685d88d9d964c749bce462858634b6e',1,'audio_tools::MP3DecoderMAD::write()'],['../classaudio__tools_1_1_buffered_task_stream.html#aaf33c44b7e9ab693bc5e2f5f501f4747',1,'audio_tools::BufferedTaskStream::write()'],['../classaudio__tools_1_1_http_request.html#af1940d609c13ffaee3c71a906fbac31f',1,'audio_tools::HttpRequest::write()'],['../classaudio__tools_1_1_http_header.html#a85a50bfb440e119c8740b9f37334a401',1,'audio_tools::HttpHeader::write()'],['../classaudio__tools_1_1_variable_speed_ring_buffer.html#a9f7e466737f4b476929238c84dd6e923',1,'audio_tools::VariableSpeedRingBuffer::write()'],['../classaudio__tools_1_1_variable_speed_ring_buffer180.html#a9f7e466737f4b476929238c84dd6e923',1,'audio_tools::VariableSpeedRingBuffer180::write()'],['../classaudio__tools_1_1_variable_speed_ring_buffer_simple.html#a9f7e466737f4b476929238c84dd6e923',1,'audio_tools::VariableSpeedRingBufferSimple::write()'],['../classaudio__tools_1_1_ogg_container_encoder.html#a1b29912258e11751cfa24707a4e328ca',1,'audio_tools::OggContainerEncoder::write()'],['../classaudio__tools_1_1_ogg_container_output.html#a59bfbf3ae12454d43d363e60e0e98824',1,'audio_tools::OggContainerOutput::write()'],['../classaudio__tools_1_1_container_m_p4.html#af1ee46b5654a0a16612efb1a89d44d0f',1,'audio_tools::ContainerMP4::write()'],['../classaudio__tools_1_1_binary_container_encoder.html#a2685d88d9d964c749bce462858634b6e',1,'audio_tools::BinaryContainerEncoder::write()'],['../classaudio__tools_1_1_w_a_v_encoder.html#a1b29912258e11751cfa24707a4e328ca',1,'audio_tools::WAVEncoder::write()'],['../classaudio__tools_1_1_w_a_v_header.html#ac5337a69587f5346c0cd64349b2add13',1,'audio_tools::WAVHeader::write()'],['../classaudio__tools_1_1_opus_audio_encoder.html#ac9df001cacfb1816fb8f2cf871450c4a',1,'audio_tools::OpusAudioEncoder::write()'],['../classaudio__tools_1_1_m_p3_decoder_mini.html#a2685d88d9d964c749bce462858634b6e',1,'audio_tools::MP3DecoderMini::write()'],['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#a706ebbcf51b12fecae232566409223ad',1,'audio_tools::MP3DecoderMAD::write()']]],
- ['write1_2731',['write1',['../classaudio__tools_1_1_tf_lite_micro_speach_writer.html#aa0216b27084c7453b3587e43e3fdb3fc',1,'audio_tools::TfLiteMicroSpeachWriter']]],
- ['write_5fcallback_2732',['write_callback',['../classaudio__tools_1_1_f_l_a_c_decoder.html#ad65b9acb1c0c9401aacf5e711c2c6cf7',1,'audio_tools::FLACDecoder']]],
- ['writearray_2733',['writeArray',['../classaudio__tools_1_1_base_buffer.html#a2b6c561aac2af64aafac1946b6e46393',1,'audio_tools::BaseBuffer::writeArray()'],['../classaudio__tools_1_1_ring_buffer_file.html#aad1958ec38b63a35ddc8209d646f1ed0',1,'audio_tools::RingBufferFile::writeArray()']]],
- ['writearrayoverwrite_2734',['writeArrayOverwrite',['../classaudio__tools_1_1_base_buffer.html#a4d3100be7fa69e3ddd9896141f143c99',1,'audio_tools::BaseBuffer']]],
- ['writeaudio_2735',['writeAudio',['../classaudio__tools_1_1_video_audio_sync.html#aa689e59e312ea8466171526e60d85f9e',1,'audio_tools::VideoAudioSync::writeAudio()'],['../classaudio__tools_1_1_video_audio_buffered_sync.html#ac3cf31a4852aa3d77849a3b64904083a',1,'audio_tools::VideoAudioBufferedSync::writeAudio()']]],
- ['writebuffer_2736',['writeBuffer',['../classaudio__tools_1_1_analog_driver_m_b_e_d.html#ae8b9b72550fdea4fd2fa6c8c2c9cb7f9',1,'audio_tools::AnalogDriverMBED']]],
- ['writebytes_2737',['writeBytes',['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#ae2a2bf0126c0c1fd4baa01f858ffd4d0',1,'audio_tools::I2SDriverESP32V1::writeBytes()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#ae2a2bf0126c0c1fd4baa01f858ffd4d0',1,'audio_tools::I2SDriverESP8266::writeBytes()'],['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#ae2a2bf0126c0c1fd4baa01f858ffd4d0',1,'audio_tools::I2SDriverNanoBLE::writeBytes()'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#ae2a2bf0126c0c1fd4baa01f858ffd4d0',1,'audio_tools::I2SDriverSTM32::writeBytes()']]],
- ['writedata_2738',['writeData',['../classaudio__tools_1_1_a_p_t_x_decoder.html#afcfdf8cac8adf3cecd498347d2fbcc61',1,'audio_tools::APTXDecoder']]],
- ['writeext_2739',['writeExt',['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#a99a8f1db5a1afb834903480ab1e6913c',1,'audio_tools::I2SDriverESP8266']]],
- ['writefromreceive_2740',['writeFromReceive',['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#a79908b9928cf48bb309f19dbdf2fa4f9',1,'audio_tools::I2SDriverSTM32']]],
- ['writeheader_2741',['writeHeader',['../classaudio__tools_1_1_w_a_v_header.html#ac012624c961a3cdd2f76933fed3c2f65',1,'audio_tools::WAVHeader']]],
- ['writemeta_2742',['writeMeta',['../classaudio__tools_1_1_binary_container_encoder.html#a43a30da913185727325494f8d559f939',1,'audio_tools::BinaryContainerEncoder']]],
- ['writesamples_2743',['writeSamples',['../namespaceaudio__tools.html#ae4bf1846916254f6051fdf1437159163',1,'audio_tools']]],
- ['writesilence_2744',['writeSilence',['../classaudio__tools_1_1_audio_output.html#ad89418aeb557f65a8f1a0aed755633b1',1,'audio_tools::AudioOutput::writeSilence()'],['../classaudio__tools_1_1_audio_stream.html#ad89418aeb557f65a8f1a0aed755633b1',1,'audio_tools::AudioStream::writeSilence()']]],
- ['writet_2745',['writeT',['../classaudio__tools_1_1_faust_stream.html#ac4da9f76fd157970e06fda582c52008a',1,'audio_tools::FaustStream']]]
+ ['waitfor_2728',['waitFor',['../classaudio__tools_1_1_audio_sync_reader.html#a2c7d50fd96ce1e9ac379caf010189617',1,'audio_tools::AudioSyncReader::waitFor()'],['../classaudio__tools_1_1_audio_sync_writer.html#a2c7d50fd96ce1e9ac379caf010189617',1,'audio_tools::AudioSyncWriter::waitFor()'],['../group__basic.html#ga83c0970d946a0c48474620352453b903',1,'audio_tools::waitFor()']]],
+ ['waitfordata_2729',['waitForData',['../classaudio__tools_1_1_u_r_l_stream.html#a520fbf517da487a5fe9cdd75209554cc',1,'audio_tools::URLStream']]],
+ ['wavdecoder_2730',['WAVDecoder',['../classaudio__tools_1_1_w_a_v_decoder.html#a9c47a827a0f04215fa3005ba97123435',1,'audio_tools::WAVDecoder::WAVDecoder()=default'],['../classaudio__tools_1_1_w_a_v_decoder.html#ab5555009a75f049857a44ae320627e59',1,'audio_tools::WAVDecoder::WAVDecoder(AudioDecoderExt &dec, AudioFormat fmt)']]],
+ ['wavencoder_2731',['WAVEncoder',['../classaudio__tools_1_1_w_a_v_encoder.html#a6e412c073e406dda931a09f5ee875fd0',1,'audio_tools::WAVEncoder::WAVEncoder()=default'],['../classaudio__tools_1_1_w_a_v_encoder.html#aaa10c43657d6662d7c740af988cae00f',1,'audio_tools::WAVEncoder::WAVEncoder(AudioEncoderExt &enc, AudioFormat fmt)']]],
+ ['wavimadecoder_2732',['WavIMADecoder',['../classaudio__tools_1_1_wav_i_m_a_decoder.html#a00e41f386087cda4eaf92bd7024ed6bb',1,'audio_tools::WavIMADecoder::WavIMADecoder()'],['../classaudio__tools_1_1_wav_i_m_a_decoder.html#af3311b0c1e6c2ea362e91fca3b053f2b',1,'audio_tools::WavIMADecoder::WavIMADecoder(Print &out_stream, bool active=true)'],['../classaudio__tools_1_1_wav_i_m_a_decoder.html#a61202c4d1b5ae76fd4a42b7ea0854362',1,'audio_tools::WavIMADecoder::WavIMADecoder(Print &out_stream, AudioInfoSupport &bi)']]],
+ ['whitenoisegenerator_2733',['WhiteNoiseGenerator',['../classaudio__tools_1_1_white_noise_generator.html#a517af52e1104e303bef973f6f138aeae',1,'audio_tools::WhiteNoiseGenerator']]],
+ ['write_2734',['write',['../classaudio__tools_1_1_a2_d_p_stream.html#a7597ef706dd1aa590903ce9e095db20a',1,'audio_tools::A2DPStream::write()'],['../classaudio__tools_1_1_meta_data_i_d3_v2.html#afd7270e10d851383ff7b53c1241f6ba1',1,'audio_tools::MetaDataID3V2::write()'],['../classaudio__tools_1_1_meta_data_i_d3_v1.html#afd7270e10d851383ff7b53c1241f6ba1',1,'audio_tools::MetaDataID3V1::write()'],['../classaudio__tools_1_1_meta_data_i_c_y.html#aae89c571048794f27f3cb5fcc7e8b87b',1,'audio_tools::MetaDataICY::write()'],['../classaudio__tools_1_1_meta_data_filter.html#a7247dbfe416d15659671ab1561d76739',1,'audio_tools::MetaDataFilter::write()'],['../classaudio__tools_1_1_meta_data_i_d3.html#a0bc4cb6e5fbb01c214120c7a98ca47bb',1,'audio_tools::MetaDataID3::write()'],['../classaudio__tools_1_1_meta_data_output.html#a0bc4cb6e5fbb01c214120c7a98ca47bb',1,'audio_tools::MetaDataOutput::write()'],['../classaudio__tools_1_1_v_s1053_stream.html#ae74e483484f1f059fc9ee780b1a7cc29',1,'audio_tools::VS1053Stream::write()'],['../classaudio__tools_1_1_tf_lite_audio_stream.html#a8c9b62168557af21ef8ded031747ddd5',1,'audio_tools::TfLiteAudioStream::write()'],['../classaudio__tools_1_1_tf_lite_audio_stream_base.html#a6e5c54247d654a08f84b46f61abbf2a2',1,'audio_tools::TfLiteAudioStreamBase::write()'],['../classaudio__tools_1_1_r_t_s_p_output.html#ad91d65aa5a5911f5533d8d0e44133cc6',1,'audio_tools::RTSPOutput::write()'],['../classaudio__tools_1_1_u_d_p_stream.html#a183cb7a3c6dce3202f9a4c205bd09e11',1,'audio_tools::UDPStream::write()'],['../classaudio__tools_1_1_audio_server_ex.html#a7597ef706dd1aa590903ce9e095db20a',1,'audio_tools::AudioServerEx::write()'],['../classaudio__tools_1_1_mozzi_stream.html#ab951bb19f06d4e5151474659cfdfd807',1,'audio_tools::MozziStream::write()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#a7597ef706dd1aa590903ce9e095db20a',1,'audio_tools::AudioFFTBase::write()'],['../classaudio__tools_1_1_faust_stream.html#afb17c26f4788c43eaeaea97bc935343d',1,'audio_tools::FaustStream::write()'],['../classaudio__tools_1_1_e_s_p_now_stream.html#a7597ef706dd1aa590903ce9e095db20a',1,'audio_tools::ESPNowStream::write()'],['../classaudio__tools_1_1_progress_stream.html#ae74e483484f1f059fc9ee780b1a7cc29',1,'audio_tools::ProgressStream::write()'],['../classaudio__tools_1_1_volume_stream.html#ae74e483484f1f059fc9ee780b1a7cc29',1,'audio_tools::VolumeStream::write()'],['../classaudio__tools_1_1_stream_copy_t.html#a41290aaf7225cf713948222a05e9494b',1,'audio_tools::StreamCopyT::write()'],['../classaudio__tools_1_1_resample_stream.html#a0284c414da66b48385a66b676b2e2356',1,'audio_tools::ResampleStream::write()'],['../classaudio__tools_1_1_n_buffer.html#a5a7b764c471a4ddcd2ffc3893769c874',1,'audio_tools::NBuffer::write()'],['../classaudio__tools_1_1_ring_buffer_file.html#a7098400d9e88b57179cee1fbd589601d',1,'audio_tools::RingBufferFile::write()'],['../classaudio__tools_1_1_ring_buffer.html#a762c87ce3d749ba209ff05e6af210be5',1,'audio_tools::RingBuffer::write()'],['../classaudio__tools_1_1_single_buffer.html#a297f30ced5108b4589f5aa46ef366b7b',1,'audio_tools::SingleBuffer::write()'],['../classaudio__tools_1_1_base_buffer.html#add0fdb7ecaaeadb3a231119d7d602311',1,'audio_tools::BaseBuffer::write()'],['../classaudio__tools_1_1_timed_stream.html#af39b27e52134485635e8d670c47ab365',1,'audio_tools::TimedStream::write()'],['../classaudio__tools_1_1_measuring_stream.html#ae74e483484f1f059fc9ee780b1a7cc29',1,'audio_tools::MeasuringStream::write()'],['../classaudio__tools_1_1_buffered_stream.html#a016bb39af201e717c1975551b7ecc1b3',1,'audio_tools::BufferedStream::write(const uint8_t *data, size_t len) override'],['../classaudio__tools_1_1_buffered_stream.html#aaf33c44b7e9ab693bc5e2f5f501f4747',1,'audio_tools::BufferedStream::write(uint8_t c) override'],['../classaudio__tools_1_1_s_p_d_i_f_output.html#ac2b8b03ece84865865c2e918dfcafe12',1,'audio_tools::SPDIFOutput::write()'],['../classaudio__tools_1_1_output_mixer.html#a69fce743755f71ed4b89417b0a8f3408',1,'audio_tools::OutputMixer::write(int idx, const uint8_t *buffer_c, size_t bytes)'],['../classaudio__tools_1_1_output_mixer.html#a91c8fc5c52681e7c3fae7f0fa4c8b3ed',1,'audio_tools::OutputMixer::write(const uint8_t *buffer_c, size_t bytes) override'],['../classaudio__tools_1_1_csv_output.html#a016bb39af201e717c1975551b7ecc1b3',1,'audio_tools::CsvOutput::write()'],['../classaudio__tools_1_1_encoder_base64.html#a109253af7e76210d9e79971cbaf774b6',1,'audio_tools::EncoderBase64::write()'],['../classaudio__tools_1_1_m_p3_decoder_helix.html#ac4a3ffc04adff8a2d008116bbd5150a4',1,'audio_tools::MP3DecoderHelix::write()'],['../classaudio__tools_1_1_encoder_l8.html#ac9df001cacfb1816fb8f2cf871450c4a',1,'audio_tools::EncoderL8::write()'],['../classaudio__tools_1_1_encoder_l16.html#a1b29912258e11751cfa24707a4e328ca',1,'audio_tools::EncoderL16::write()'],['../classaudio__tools_1_1_decoder_helix.html#a2685d88d9d964c749bce462858634b6e',1,'audio_tools::DecoderHelix::write()'],['../classaudio__tools_1_1_encoder_float.html#a1b29912258e11751cfa24707a4e328ca',1,'audio_tools::EncoderFloat::write()'],['../classaudio__tools_1_1_decoder_float.html#aeb37cdb728cff1e60e8d7309d8baa08a',1,'audio_tools::DecoderFloat::write()'],['../classaudio__tools_1_1_f_l_a_c_encoder.html#a1b29912258e11751cfa24707a4e328ca',1,'audio_tools::FLACEncoder::write()'],['../classaudio__tools_1_1_encoder_basic.html#a1b29912258e11751cfa24707a4e328ca',1,'audio_tools::EncoderBasic::write()'],['../classaudio__tools_1_1_buffered_task_stream.html#a016bb39af201e717c1975551b7ecc1b3',1,'audio_tools::BufferedTaskStream::write()'],['../classaudio__tools_1_1_a_d_t_s_decoder.html#a1a770cfd1c8d336bdf8eaea18028db6d',1,'audio_tools::ADTSDecoder::write()'],['../classaudio__tools_1_1_a_a_c_decoder_helix.html#a11f4323fb39ca0ba4a703465ae04e542',1,'audio_tools::AACDecoderHelix::write()'],['../classaudio__tools_1_1_a_a_c_decoder_f_a_a_d.html#ade6ec60e71760083752b4949e68b59c9',1,'audio_tools::AACDecoderFAAD::write()'],['../classaudio__tools_1_1_encoded_audio_output.html#a016bb39af201e717c1975551b7ecc1b3',1,'audio_tools::EncodedAudioOutput::write()'],['../classaudio__tools_1_1_analog_driver_m_b_e_d.html#a360ffe5435df7f910720c0f3faa04dee',1,'audio_tools::AnalogDriverMBED::write()'],['../classaudio__tools_1_1_analog_driver_e_s_p32_v1.html#a360ffe5435df7f910720c0f3faa04dee',1,'audio_tools::AnalogDriverESP32V1::write()'],['../classaudio__tools_1_1_analog_driver_e_s_p32.html#a360ffe5435df7f910720c0f3faa04dee',1,'audio_tools::AnalogDriverESP32::write()'],['../classaudio__tools_1_1_analog_audio_stream.html#a360ffe5435df7f910720c0f3faa04dee',1,'audio_tools::AnalogAudioStream::write()'],['../classaudio__tools_1_1_audio_effect_stream_t.html#af39b27e52134485635e8d670c47ab365',1,'audio_tools::AudioEffectStreamT::write()'],['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#a2685d88d9d964c749bce462858634b6e',1,'audio_tools::MP3DecoderMAD::write()'],['../classaudio__tools_1_1_i2_s_stream.html#a2ea68b231c423a554ea84d14f88e271e',1,'audio_tools::I2SStream::write()'],['../classaudio__tools_1_1_buffered_task_stream.html#aaf33c44b7e9ab693bc5e2f5f501f4747',1,'audio_tools::BufferedTaskStream::write()'],['../classaudio__tools_1_1_http_request.html#af1940d609c13ffaee3c71a906fbac31f',1,'audio_tools::HttpRequest::write()'],['../classaudio__tools_1_1_http_header.html#a85a50bfb440e119c8740b9f37334a401',1,'audio_tools::HttpHeader::write()'],['../classaudio__tools_1_1_variable_speed_ring_buffer.html#a9f7e466737f4b476929238c84dd6e923',1,'audio_tools::VariableSpeedRingBuffer::write()'],['../classaudio__tools_1_1_variable_speed_ring_buffer180.html#a9f7e466737f4b476929238c84dd6e923',1,'audio_tools::VariableSpeedRingBuffer180::write()'],['../classaudio__tools_1_1_variable_speed_ring_buffer_simple.html#a9f7e466737f4b476929238c84dd6e923',1,'audio_tools::VariableSpeedRingBufferSimple::write()'],['../classaudio__tools_1_1_ogg_container_encoder.html#a1b29912258e11751cfa24707a4e328ca',1,'audio_tools::OggContainerEncoder::write()'],['../classaudio__tools_1_1_ogg_container_output.html#a59bfbf3ae12454d43d363e60e0e98824',1,'audio_tools::OggContainerOutput::write()'],['../classaudio__tools_1_1_container_m_p4.html#af1ee46b5654a0a16612efb1a89d44d0f',1,'audio_tools::ContainerMP4::write()'],['../classaudio__tools_1_1_binary_container_encoder.html#a2685d88d9d964c749bce462858634b6e',1,'audio_tools::BinaryContainerEncoder::write()'],['../classaudio__tools_1_1_w_a_v_encoder.html#a1b29912258e11751cfa24707a4e328ca',1,'audio_tools::WAVEncoder::write()'],['../classaudio__tools_1_1_w_a_v_header.html#ac5337a69587f5346c0cd64349b2add13',1,'audio_tools::WAVHeader::write()'],['../classaudio__tools_1_1_opus_audio_encoder.html#ac9df001cacfb1816fb8f2cf871450c4a',1,'audio_tools::OpusAudioEncoder::write()'],['../classaudio__tools_1_1_m_p3_decoder_mini.html#a2685d88d9d964c749bce462858634b6e',1,'audio_tools::MP3DecoderMini::write()'],['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#a706ebbcf51b12fecae232566409223ad',1,'audio_tools::MP3DecoderMAD::write()']]],
+ ['write1_2735',['write1',['../classaudio__tools_1_1_tf_lite_micro_speach_writer.html#aa0216b27084c7453b3587e43e3fdb3fc',1,'audio_tools::TfLiteMicroSpeachWriter']]],
+ ['write_5fcallback_2736',['write_callback',['../classaudio__tools_1_1_f_l_a_c_decoder.html#ad65b9acb1c0c9401aacf5e711c2c6cf7',1,'audio_tools::FLACDecoder']]],
+ ['writearray_2737',['writeArray',['../classaudio__tools_1_1_ring_buffer_file.html#aad1958ec38b63a35ddc8209d646f1ed0',1,'audio_tools::RingBufferFile::writeArray()'],['../classaudio__tools_1_1_base_buffer.html#a2b6c561aac2af64aafac1946b6e46393',1,'audio_tools::BaseBuffer::writeArray(const T data[], int len)']]],
+ ['writearrayoverwrite_2738',['writeArrayOverwrite',['../classaudio__tools_1_1_base_buffer.html#a4d3100be7fa69e3ddd9896141f143c99',1,'audio_tools::BaseBuffer']]],
+ ['writeaudio_2739',['writeAudio',['../classaudio__tools_1_1_video_audio_sync.html#aa689e59e312ea8466171526e60d85f9e',1,'audio_tools::VideoAudioSync::writeAudio()'],['../classaudio__tools_1_1_video_audio_buffered_sync.html#ac3cf31a4852aa3d77849a3b64904083a',1,'audio_tools::VideoAudioBufferedSync::writeAudio()']]],
+ ['writebuffer_2740',['writeBuffer',['../classaudio__tools_1_1_analog_driver_m_b_e_d.html#ae8b9b72550fdea4fd2fa6c8c2c9cb7f9',1,'audio_tools::AnalogDriverMBED']]],
+ ['writebytes_2741',['writeBytes',['../classaudio__tools_1_1_i2_s_driver_e_s_p32.html#ae2a2bf0126c0c1fd4baa01f858ffd4d0',1,'audio_tools::I2SDriverESP32::writeBytes()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#ae2a2bf0126c0c1fd4baa01f858ffd4d0',1,'audio_tools::I2SDriverESP32V1::writeBytes()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#ae2a2bf0126c0c1fd4baa01f858ffd4d0',1,'audio_tools::I2SDriverESP8266::writeBytes()'],['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#ae2a2bf0126c0c1fd4baa01f858ffd4d0',1,'audio_tools::I2SDriverNanoBLE::writeBytes()'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#ae2a2bf0126c0c1fd4baa01f858ffd4d0',1,'audio_tools::I2SDriverSTM32::writeBytes()']]],
+ ['writedata_2742',['writeData',['../classaudio__tools_1_1_a_p_t_x_decoder.html#afcfdf8cac8adf3cecd498347d2fbcc61',1,'audio_tools::APTXDecoder']]],
+ ['writeexpandchannel_2743',['writeExpandChannel',['../classaudio__tools_1_1_i2_s_driver_e_s_p32.html#a02fbc21599be69326c5e97c693978adc',1,'audio_tools::I2SDriverESP32']]],
+ ['writeext_2744',['writeExt',['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#a99a8f1db5a1afb834903480ab1e6913c',1,'audio_tools::I2SDriverESP8266']]],
+ ['writefromreceive_2745',['writeFromReceive',['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#a79908b9928cf48bb309f19dbdf2fa4f9',1,'audio_tools::I2SDriverSTM32']]],
+ ['writeheader_2746',['writeHeader',['../classaudio__tools_1_1_w_a_v_header.html#ac012624c961a3cdd2f76933fed3c2f65',1,'audio_tools::WAVHeader']]],
+ ['writemeta_2747',['writeMeta',['../classaudio__tools_1_1_binary_container_encoder.html#a43a30da913185727325494f8d559f939',1,'audio_tools::BinaryContainerEncoder']]],
+ ['writesamples_2748',['writeSamples',['../namespaceaudio__tools.html#ae4bf1846916254f6051fdf1437159163',1,'audio_tools']]],
+ ['writesilence_2749',['writeSilence',['../classaudio__tools_1_1_audio_output.html#ad89418aeb557f65a8f1a0aed755633b1',1,'audio_tools::AudioOutput::writeSilence()'],['../classaudio__tools_1_1_audio_stream.html#ad89418aeb557f65a8f1a0aed755633b1',1,'audio_tools::AudioStream::writeSilence()']]],
+ ['writet_2750',['writeT',['../classaudio__tools_1_1_faust_stream.html#ac4da9f76fd157970e06fda582c52008a',1,'audio_tools::FaustStream']]]
];
diff --git a/search/functions_17.js b/search/functions_17.js
index b9b1bd49f3..b28c325c7e 100644
--- a/search/functions_17.js
+++ b/search/functions_17.js
@@ -1,28 +1,28 @@
var searchData=
[
- ['_7ea2dpstream_2746',['~A2DPStream',['../classaudio__tools_1_1_a2_d_p_stream.html#ab0d564de999c4f749ce7a04e1e6eecb1',1,'audio_tools::A2DPStream']]],
- ['_7eaacdecoderhelix_2747',['~AACDecoderHelix',['../classaudio__tools_1_1_a_a_c_decoder_helix.html#ab44140b0944b1ad9ebea7310786b3668',1,'audio_tools::AACDecoderHelix']]],
- ['_7eanalogaudiostream_2748',['~AnalogAudioStream',['../classaudio__tools_1_1_analog_audio_stream.html#aba931b0caac2fb7d903fc6ed41dedf55',1,'audio_tools::AnalogAudioStream']]],
- ['_7eanalogdriveresp32_2749',['~AnalogDriverESP32',['../classaudio__tools_1_1_analog_driver_e_s_p32.html#ad6adf8a8f39c09edf7a0a8b2564e1205',1,'audio_tools::AnalogDriverESP32']]],
- ['_7eanalogdriveresp32v1_2750',['~AnalogDriverESP32V1',['../classaudio__tools_1_1_analog_driver_e_s_p32_v1.html#a068c49059c57ee4498fd4adde16a0ea1',1,'audio_tools::AnalogDriverESP32V1']]],
- ['_7eanalogdrivermbed_2751',['~AnalogDriverMBED',['../classaudio__tools_1_1_analog_driver_m_b_e_d.html#aa244364ffea05bd06605752fc0cee9f7',1,'audio_tools::AnalogDriverMBED']]],
- ['_7eaudioeffects_2752',['~AudioEffects',['../classaudio__tools_1_1_audio_effects.html#a50360ab6af0458c4e577963fe4c8a72c',1,'audio_tools::AudioEffects']]],
- ['_7eaudioencoderserver_2753',['~AudioEncoderServer',['../classaudio__tools_1_1_audio_encoder_server.html#a196da6fe5b8ac97f4796bcd4770254f0',1,'audio_tools::AudioEncoderServer']]],
- ['_7eaudioplayer_2754',['~AudioPlayer',['../classaudio__tools_1_1_audio_player.html#aed4b99eee8ff173df248014fb14774c3',1,'audio_tools::AudioPlayer']]],
- ['_7eaudiosourcesdfat_2755',['~AudioSourceSDFAT',['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a97820d8eb65564cb3425f94f52083df5',1,'audio_tools::AudioSourceSDFAT']]],
- ['_7eaudiowavserver_2756',['~AudioWAVServer',['../classaudio__tools_1_1_audio_w_a_v_server.html#a9f9c9fbcb9d3d39671b3ae841ea9fa8b',1,'audio_tools::AudioWAVServer']]],
- ['_7econverternchannels_2757',['~ConverterNChannels',['../classaudio__tools_1_1_converter_n_channels.html#aafc1c7ee920b787960f0677cf38f4901',1,'audio_tools::ConverterNChannels']]],
- ['_7edelayeffectbase_2758',['~DelayEffectBase',['../classaudio__tools_1_1_delay_effect_base.html#a11662b2fb04d28db2e11ba6bf687611d',1,'audio_tools::DelayEffectBase']]],
- ['_7eenvelopefilter_2759',['~EnvelopeFilter',['../classaudio__tools_1_1_envelope_filter.html#a04db3a4ed0c377d43fc7224b3ee55813',1,'audio_tools::EnvelopeFilter']]],
- ['_7efiltereddelay_2760',['~FilteredDelay',['../classaudio__tools_1_1_filtered_delay.html#a093af9a97e9a396c45b904d9fce29525',1,'audio_tools::FilteredDelay']]],
- ['_7efiltereffectbase_2761',['~FilterEffectBase',['../classaudio__tools_1_1_filter_effect_base.html#aa6c9f9d32021f3d65952a4524df4b04a',1,'audio_tools::FilterEffectBase']]],
- ['_7emodulationbaseclass_2762',['~ModulationBaseClass',['../classaudio__tools_1_1_modulation_base_class.html#a8a4682a3a4fc0e59545d246827aff355',1,'audio_tools::ModulationBaseClass']]],
- ['_7emp3decoderhelix_2763',['~MP3DecoderHelix',['../classaudio__tools_1_1_m_p3_decoder_helix.html#a4e3ff218051614b352b28ff3ccf8703a',1,'audio_tools::MP3DecoderHelix']]],
- ['_7emp3decodermini_2764',['~MP3DecoderMini',['../classaudio__tools_1_1_m_p3_decoder_mini.html#a8e661f75a67450958a20f7436a871109',1,'audio_tools::MP3DecoderMini']]],
- ['_7esimpledelay_2765',['~SimpleDelay',['../classaudio__tools_1_1_simple_delay.html#a0f8d575798554a675fda4a7393a8af9a',1,'audio_tools::SimpleDelay']]],
- ['_7esimpleflanger_2766',['~SimpleFlanger',['../classaudio__tools_1_1_simple_flanger.html#a349bd03631de2dfcb14e5cada67bbf11',1,'audio_tools::SimpleFlanger']]],
- ['_7esimplelpf_2767',['~SimpleLPF',['../classaudio__tools_1_1_simple_l_p_f.html#a1a09261340aeebd7ce6fdf658e6acc0a',1,'audio_tools::SimpleLPF']]],
- ['_7espdifoutput_2768',['~SPDIFOutput',['../classaudio__tools_1_1_s_p_d_i_f_output.html#a56be726241f8d4665f9521568b6776da',1,'audio_tools::SPDIFOutput']]],
- ['_7evector_2769',['~Vector',['../classaudio__tools_1_1_vector.html#a33fc4934cb870683ae08af71594844c7',1,'audio_tools::Vector']]],
- ['_7evorbisdecoder_2770',['~VorbisDecoder',['../classaudio__tools_1_1_vorbis_decoder.html#a033ec40ab1f251adba6a061cf093772a',1,'audio_tools::VorbisDecoder']]]
+ ['_7ea2dpstream_2751',['~A2DPStream',['../classaudio__tools_1_1_a2_d_p_stream.html#ab0d564de999c4f749ce7a04e1e6eecb1',1,'audio_tools::A2DPStream']]],
+ ['_7eaacdecoderhelix_2752',['~AACDecoderHelix',['../classaudio__tools_1_1_a_a_c_decoder_helix.html#ab44140b0944b1ad9ebea7310786b3668',1,'audio_tools::AACDecoderHelix']]],
+ ['_7eanalogaudiostream_2753',['~AnalogAudioStream',['../classaudio__tools_1_1_analog_audio_stream.html#aba931b0caac2fb7d903fc6ed41dedf55',1,'audio_tools::AnalogAudioStream']]],
+ ['_7eanalogdriveresp32_2754',['~AnalogDriverESP32',['../classaudio__tools_1_1_analog_driver_e_s_p32.html#ad6adf8a8f39c09edf7a0a8b2564e1205',1,'audio_tools::AnalogDriverESP32']]],
+ ['_7eanalogdriveresp32v1_2755',['~AnalogDriverESP32V1',['../classaudio__tools_1_1_analog_driver_e_s_p32_v1.html#a068c49059c57ee4498fd4adde16a0ea1',1,'audio_tools::AnalogDriverESP32V1']]],
+ ['_7eanalogdrivermbed_2756',['~AnalogDriverMBED',['../classaudio__tools_1_1_analog_driver_m_b_e_d.html#aa244364ffea05bd06605752fc0cee9f7',1,'audio_tools::AnalogDriverMBED']]],
+ ['_7eaudioeffects_2757',['~AudioEffects',['../classaudio__tools_1_1_audio_effects.html#a50360ab6af0458c4e577963fe4c8a72c',1,'audio_tools::AudioEffects']]],
+ ['_7eaudioencoderserver_2758',['~AudioEncoderServer',['../classaudio__tools_1_1_audio_encoder_server.html#a196da6fe5b8ac97f4796bcd4770254f0',1,'audio_tools::AudioEncoderServer']]],
+ ['_7eaudioplayer_2759',['~AudioPlayer',['../classaudio__tools_1_1_audio_player.html#aed4b99eee8ff173df248014fb14774c3',1,'audio_tools::AudioPlayer']]],
+ ['_7eaudiosourcesdfat_2760',['~AudioSourceSDFAT',['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a97820d8eb65564cb3425f94f52083df5',1,'audio_tools::AudioSourceSDFAT']]],
+ ['_7eaudiowavserver_2761',['~AudioWAVServer',['../classaudio__tools_1_1_audio_w_a_v_server.html#a9f9c9fbcb9d3d39671b3ae841ea9fa8b',1,'audio_tools::AudioWAVServer']]],
+ ['_7econverternchannels_2762',['~ConverterNChannels',['../classaudio__tools_1_1_converter_n_channels.html#aafc1c7ee920b787960f0677cf38f4901',1,'audio_tools::ConverterNChannels']]],
+ ['_7edelayeffectbase_2763',['~DelayEffectBase',['../classaudio__tools_1_1_delay_effect_base.html#a11662b2fb04d28db2e11ba6bf687611d',1,'audio_tools::DelayEffectBase']]],
+ ['_7eenvelopefilter_2764',['~EnvelopeFilter',['../classaudio__tools_1_1_envelope_filter.html#a04db3a4ed0c377d43fc7224b3ee55813',1,'audio_tools::EnvelopeFilter']]],
+ ['_7efiltereddelay_2765',['~FilteredDelay',['../classaudio__tools_1_1_filtered_delay.html#a093af9a97e9a396c45b904d9fce29525',1,'audio_tools::FilteredDelay']]],
+ ['_7efiltereffectbase_2766',['~FilterEffectBase',['../classaudio__tools_1_1_filter_effect_base.html#aa6c9f9d32021f3d65952a4524df4b04a',1,'audio_tools::FilterEffectBase']]],
+ ['_7emodulationbaseclass_2767',['~ModulationBaseClass',['../classaudio__tools_1_1_modulation_base_class.html#a8a4682a3a4fc0e59545d246827aff355',1,'audio_tools::ModulationBaseClass']]],
+ ['_7emp3decoderhelix_2768',['~MP3DecoderHelix',['../classaudio__tools_1_1_m_p3_decoder_helix.html#a4e3ff218051614b352b28ff3ccf8703a',1,'audio_tools::MP3DecoderHelix']]],
+ ['_7emp3decodermini_2769',['~MP3DecoderMini',['../classaudio__tools_1_1_m_p3_decoder_mini.html#a8e661f75a67450958a20f7436a871109',1,'audio_tools::MP3DecoderMini']]],
+ ['_7esimpledelay_2770',['~SimpleDelay',['../classaudio__tools_1_1_simple_delay.html#a0f8d575798554a675fda4a7393a8af9a',1,'audio_tools::SimpleDelay']]],
+ ['_7esimpleflanger_2771',['~SimpleFlanger',['../classaudio__tools_1_1_simple_flanger.html#a349bd03631de2dfcb14e5cada67bbf11',1,'audio_tools::SimpleFlanger']]],
+ ['_7esimplelpf_2772',['~SimpleLPF',['../classaudio__tools_1_1_simple_l_p_f.html#a1a09261340aeebd7ce6fdf658e6acc0a',1,'audio_tools::SimpleLPF']]],
+ ['_7espdifoutput_2773',['~SPDIFOutput',['../classaudio__tools_1_1_s_p_d_i_f_output.html#a56be726241f8d4665f9521568b6776da',1,'audio_tools::SPDIFOutput']]],
+ ['_7evector_2774',['~Vector',['../classaudio__tools_1_1_vector.html#a33fc4934cb870683ae08af71594844c7',1,'audio_tools::Vector']]],
+ ['_7evorbisdecoder_2775',['~VorbisDecoder',['../classaudio__tools_1_1_vorbis_decoder.html#a033ec40ab1f251adba6a061cf093772a',1,'audio_tools::VorbisDecoder']]]
];
diff --git a/search/functions_2.js b/search/functions_2.js
index 25c6369d86..6aca71273b 100644
--- a/search/functions_2.js
+++ b/search/functions_2.js
@@ -1,12 +1,12 @@
var searchData=
[
- ['balance_2088',['balance',['../classaudio__tools_1_1_v_s1053_stream.html#a179c2cf71d02cfb726cbfbbec0bd8699',1,'audio_tools::VS1053Stream']]],
- ['begin_2089',['begin',['../classaudio__tools_1_1_window_function.html#a838612f9ae4330b86d40ebbd7018b8a3',1,'audio_tools::WindowFunction::begin()'],['../classaudio__tools_1_1_meta_data_output.html#a9348a7795c13e8d6437b2a641f3a8320',1,'audio_tools::MetaDataOutput::begin()'],['../classaudio__tools_1_1_buffered_window.html#a3546c7cbf10b15df2f9e4db1e3bbad16',1,'audio_tools::BufferedWindow::begin()'],['../classaudio__tools_1_1_l_e_d_output.html#aab6570fa867d03509c8437e02f0f4e1d',1,'audio_tools::LEDOutput::begin()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::LEDOutputUnoR4::begin()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a3d9e493def31bc795d1b9b193ce0bba3',1,'audio_tools::LEDOutputUnoR4::begin(LEDOutputUnoR4Config config)'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceSDFAT::begin()'],['../classaudio__tools_1_1_maximilian.html#afd420696e82e3c9725541a0dbab9c767',1,'audio_tools::Maximilian::begin()'],['../classaudio__tools_1_1_memory_manager.html#a82d0ab6c73ec481b35d04834df57aeed',1,'audio_tools::MemoryManager::begin()'],['../classaudio__tools_1_1_tf_lite_micro_speech_recognize_commands.html#a95c67a7619c06b54011d13b6da2f1e52',1,'audio_tools::TfLiteMicroSpeechRecognizeCommands::begin()'],['../classaudio__tools_1_1_tf_lite_micro_speach_writer.html#ac2c31d5df91d0199ef6cebdf5d5c09cd',1,'audio_tools::TfLiteMicroSpeachWriter::begin()'],['../classaudio__tools_1_1_tf_lite_audio_stream.html#a64cc02fe86cc5430e1f27298ec99a1b1',1,'audio_tools::TfLiteAudioStream::begin()'],['../classaudio__tools_1_1_v_s1053_stream.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::VS1053Stream::begin()'],['../classaudio__tools_1_1_v_s1053_stream.html#aea4a6cd1dd0e1bafd65f482ff3195734',1,'audio_tools::VS1053Stream::begin(VS1053Config cfg)'],['../classaudio__tools_1_1_w_m8960_stream.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::WM8960Stream::begin()'],['../classaudio__tools_1_1_w_m8960_stream.html#a87ca9efc5d81c756053820733e88b184',1,'audio_tools::WM8960Stream::begin(WM8960Config config)'],['../classaudio__tools_1_1_mozzi_stream.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MozziStream::begin()'],['../classaudio__tools_1_1_u_d_p_stream.html#a8b281c48f356477aa8256b9d030e0b2e',1,'audio_tools::UDPStream::begin(uint16_t port, uint16_t port_ext=0)'],['../classaudio__tools_1_1_u_d_p_stream.html#a6996736f780f803e5526a83c0c26ba69',1,'audio_tools::UDPStream::begin(IPAddress a, uint16_t port)'],['../classaudio__tools_1_1_e_s_p_now_stream.html#ad3f942324662d935f8a90233ed43a252',1,'audio_tools::ESPNowStream::begin(ESPNowStreamConfig cfg)'],['../classaudio__tools_1_1_e_s_p_now_stream.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::ESPNowStream::begin()'],['../classaudio__tools_1_1_s_t_k_generator.html#af99303e9bfe78c84f1abd84376477ec7',1,'audio_tools::STKGenerator::begin()'],['../classaudio__tools_1_1_audio_source_s_t_d.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceSTD::begin()'],['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceSPIFFS::begin()'],['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceSDMMC::begin()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceSDFAT::begin()'],['../classaudio__tools_1_1_audio_source_s_d.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceSD::begin()'],['../classaudio__tools_1_1_audio_source_little_f_s.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceLittleFS::begin()'],['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceIdxSDMMC::begin()'],['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceIdxSDFAT::begin()'],['../classaudio__tools_1_1_audio_source_idx_s_d.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceIdxSD::begin()'],['../classaudio__tools_1_1_audio_w_a_v_server_ex.html#a01ec5d4dc2d747bed66224dbc4178741',1,'audio_tools::AudioWAVServerEx::begin()'],['../classaudio__tools_1_1_analog_audio_stream.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::AnalogAudioStream::begin()'],['../classaudio__tools_1_1_queue_stream.html#a4d2a8f208d69989c8676b0c632c9ea5c',1,'audio_tools::QueueStream::begin()'],['../classaudio__tools_1_1_audio_source.html#aaf893c33f3c041e289a12c153dcc9789',1,'audio_tools::AudioSource::begin()'],['../classaudio__tools_1_1_audio_source_callback.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceCallback::begin()'],['../classaudio__tools_1_1_audio_source_u_r_l.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceURL::begin()'],['../classaudio__tools_1_1_s_p_d_i_f_output.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::SPDIFOutput::begin()'],['../classaudio__tools_1_1_s_p_d_i_f_output.html#aa79ba5bd7f6bfbf5364e994427b5f9a8',1,'audio_tools::SPDIFOutput::begin(SPDIFConfig config)'],['../classaudio__tools_1_1_dynamic_memory_stream.html#a4d2a8f208d69989c8676b0c632c9ea5c',1,'audio_tools::DynamicMemoryStream::begin()'],['../classaudio__tools_1_1_generated_sound_stream.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::GeneratedSoundStream::begin() override'],['../classaudio__tools_1_1_generated_sound_stream.html#af99303e9bfe78c84f1abd84376477ec7',1,'audio_tools::GeneratedSoundStream::begin(AudioInfo cfg)'],['../classaudio__tools_1_1_audio_player.html#aa83ff9b2ca349dc7352f9904d883a5e0',1,'audio_tools::AudioPlayer::begin()'],['../classaudio__tools_1_1_progress_stream.html#a000a10e426384c9aa5876979cd4d5be9',1,'audio_tools::ProgressStream::begin()'],['../classaudio__tools_1_1_timer_callback_audio_stream.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::TimerCallbackAudioStream::begin()'],['../classaudio__tools_1_1_transformation_reader.html#a122055b2ed7a47728ee984d173696ba3',1,'audio_tools::TransformationReader::begin()'],['../classaudio__tools_1_1_stream_copy_t.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::StreamCopyT::begin()'],['../classaudio__tools_1_1_stream_copy_t.html#aac230d8a4cf8cce0396d3723324c57f3',1,'audio_tools::StreamCopyT::begin(Print &to, Stream &from)'],['../classaudio__tools_1_1_stream_copy_t.html#af50f2b897e67c05dd9602ec494409d4a',1,'audio_tools::StreamCopyT::begin(Print &to, AudioStream &from)'],['../classaudio__tools_1_1_volume_stream.html#a768231c4c54c56db34a0d3a1b8a391bd',1,'audio_tools::VolumeStream::begin()'],['../classaudio__tools_1_1_meta_data_output.html#a92b1c95465e92012367bc96996880413',1,'audio_tools::MetaDataOutput::begin()'],['../classaudio__tools_1_1_on_off_output.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::OnOffOutput::begin()'],['../classaudio__tools_1_1_output_mixer.html#a837c24b86686e363ee3fb1428385c073',1,'audio_tools::OutputMixer::begin()'],['../classaudio__tools_1_1_csv_output.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::CsvOutput::begin() override'],['../classaudio__tools_1_1_csv_output.html#a83c4fcc607172ab6cb0e8a837133e2c9',1,'audio_tools::CsvOutput::begin(int channels)'],['../classaudio__tools_1_1_csv_output.html#ac70f7349fc3915c58de8f2f5493422dc',1,'audio_tools::CsvOutput::begin(AudioInfo info) override'],['../classaudio__tools_1_1_timer_alarm_repeating_driver_s_t_m32.html#aef983045eff2dc8f8ea76f40aa095cca',1,'audio_tools::TimerAlarmRepeatingDriverSTM32::begin()'],['../classaudio__tools_1_1_timer_alarm_repeating_driver_renesas.html#abfdcebf73e7c4974e4f5b6401bce3020',1,'audio_tools::TimerAlarmRepeatingDriverRenesas::begin()'],['../classaudio__tools_1_1_timer_alarm_repeating_driver_m_b_e_d.html#aef983045eff2dc8f8ea76f40aa095cca',1,'audio_tools::TimerAlarmRepeatingDriverMBED::begin()'],['../classaudio__tools_1_1_timer_alarm_repeating_driver_e_s_p8266.html#aef983045eff2dc8f8ea76f40aa095cca',1,'audio_tools::TimerAlarmRepeatingDriverESP8266::begin()'],['../classaudio__tools_1_1_timer_alarm_repeating_driver_a_v_r.html#aef983045eff2dc8f8ea76f40aa095cca',1,'audio_tools::TimerAlarmRepeatingDriverAVR::begin()'],['../classaudio__tools_1_1_p_w_m_audio_output.html#ab90844720b1d1eb48de817b0a49f3b30',1,'audio_tools::PWMAudioOutput::begin()'],['../classaudio__tools_1_1_meta_data_i_d3_v2.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MetaDataID3V2::begin()'],['../classaudio__tools_1_1_meta_data_i_d3_v1.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MetaDataID3V1::begin()'],['../classaudio__tools_1_1_meta_data_i_c_y.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::MetaDataICY::begin()'],['../classaudio__tools_1_1_meta_data_filter.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MetaDataFilter::begin()'],['../classaudio__tools_1_1_m_p3_encoder_l_a_m_e.html#aa012465253aa64aa70a44d07a443e592',1,'audio_tools::MP3EncoderLAME::begin()'],['../classaudio__tools_1_1_encoder_float.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::EncoderFloat::begin() override'],['../classaudio__tools_1_1_encoder_float.html#abff6eaabd9829e911a1dbf8850192f05',1,'audio_tools::EncoderFloat::begin(Print &out)'],['../classaudio__tools_1_1_decoder_helix.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::DecoderHelix::begin()'],['../classaudio__tools_1_1_encoder_l16.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::EncoderL16::begin() override'],['../classaudio__tools_1_1_encoder_l16.html#abff6eaabd9829e911a1dbf8850192f05',1,'audio_tools::EncoderL16::begin(Print &out)'],['../classaudio__tools_1_1_encoder_l8.html#a7c3e14d99bd3dc0e3670d6956dafcaf2',1,'audio_tools::EncoderL8::begin() override'],['../classaudio__tools_1_1_encoder_l8.html#abff6eaabd9829e911a1dbf8850192f05',1,'audio_tools::EncoderL8::begin(Print &out)'],['../classaudio__tools_1_1_m_p3_decoder_helix.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MP3DecoderHelix::begin()'],['../classaudio__tools_1_1_f_l_a_c_encoder.html#abff6eaabd9829e911a1dbf8850192f05',1,'audio_tools::FLACEncoder::begin()'],['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MP3DecoderMAD::begin()'],['../classaudio__tools_1_1_m_p3_decoder_mini.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MP3DecoderMini::begin()'],['../classaudio__tools_1_1_opus_audio_encoder.html#a7c3e14d99bd3dc0e3670d6956dafcaf2',1,'audio_tools::OpusAudioEncoder::begin()'],['../classaudio__tools_1_1_s_b_c_encoder.html#ae011a2d42c0a1fffd980430371394512',1,'audio_tools::SBCEncoder::begin(AudioInfo bi)'],['../classaudio__tools_1_1_s_b_c_encoder.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::SBCEncoder::begin()'],['../classaudio__tools_1_1_vorbis_decoder.html#a7c3e14d99bd3dc0e3670d6956dafcaf2',1,'audio_tools::VorbisDecoder::begin()'],['../classaudio__tools_1_1_w_a_v_encoder.html#a70e0bdc6c2f9b03b327778b866b1215b',1,'audio_tools::WAVEncoder::begin()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#ab0ae7809bb6be9afc89dee67cdc72db4',1,'audio_tools::AudioFFTBase::begin()'],['../classaudio__tools_1_1_f_l_a_c_encoder.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::FLACEncoder::begin()'],['../classaudio__tools_1_1_f_l_a_c_decoder.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::FLACDecoder::begin()'],['../classaudio__tools_1_1_encoder_basic.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::EncoderBasic::begin()'],['../classaudio__tools_1_1_encoder_base64.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::EncoderBase64::begin()'],['../classaudio__tools_1_1_a_a_c_decoder_helix.html#a7c3e14d99bd3dc0e3670d6956dafcaf2',1,'audio_tools::AACDecoderHelix::begin()'],['../classaudio__tools_1_1_a_a_c_encoder_f_d_k.html#a9a7848e744108b3a83796af0a086c322',1,'audio_tools::AACEncoderFDK::begin(int input_channels=2, int input_sample_rate=44100, int input_bits_per_sample=16)'],['../classaudio__tools_1_1_a_a_c_encoder_f_d_k.html#a6c23593971c66b1fee16958a3ad1b0a6',1,'audio_tools::AACEncoderFDK::begin(AudioInfo info)'],['../classaudio__tools_1_1_a_a_c_decoder_f_a_a_d.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::AACDecoderFAAD::begin()'],['../classaudio__tools_1_1_encoded_audio_output.html#afc6a65076a1246faeb6415b2811bbb35',1,'audio_tools::EncodedAudioOutput::begin(AudioInfo cfg)'],['../classaudio__tools_1_1_encoded_audio_output.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::EncodedAudioOutput::begin() override'],['../classaudio__tools_1_1_streaming_decoder.html#aaf893c33f3c041e289a12c153dcc9789',1,'audio_tools::StreamingDecoder::begin()'],['../classaudio__tools_1_1_analog_driver_m_b_e_d.html#a5b57d1fefbbb011e8e8672dcc6750895',1,'audio_tools::AnalogDriverMBED::begin()'],['../classaudio__tools_1_1_analog_driver_e_s_p32_v1.html#a8d98ae19dd79f27ebbe0f373cb1583a5',1,'audio_tools::AnalogDriverESP32V1::begin()'],['../classaudio__tools_1_1_analog_driver_e_s_p32.html#a1a6736486fe8e0df47e3430799bf2498',1,'audio_tools::AnalogDriverESP32::begin()'],['../classaudio__tools_1_1_analog_audio_stream.html#a5b57d1fefbbb011e8e8672dcc6750895',1,'audio_tools::AnalogAudioStream::begin()'],['../classaudio__tools_1_1_i2_s_stream.html#ab5eefc9d5f5c0ebd0b205d09985de96c',1,'audio_tools::I2SStream::begin()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#af260c77cb6124c2c07117a870ce06c0c',1,'audio_tools::I2SDriverESP8266::begin(RxTxMode mode=TX_MODE)'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#ab5eefc9d5f5c0ebd0b205d09985de96c',1,'audio_tools::I2SDriverESP8266::begin(I2SConfig cfg)'],['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#af260c77cb6124c2c07117a870ce06c0c',1,'audio_tools::I2SDriverNanoBLE::begin(RxTxMode mode=TX_MODE)'],['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#ab5eefc9d5f5c0ebd0b205d09985de96c',1,'audio_tools::I2SDriverNanoBLE::begin(I2SConfig cfg)'],['../classaudio__tools_1_1_i2_s_driver_s_a_m_d.html#ab88584f8eaec1d79f5ee7e3ff56a8b5c',1,'audio_tools::I2SDriverSAMD::begin(RxTxMode mode)'],['../classaudio__tools_1_1_i2_s_driver_s_a_m_d.html#ab5eefc9d5f5c0ebd0b205d09985de96c',1,'audio_tools::I2SDriverSAMD::begin(I2SConfig cfg)'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#af260c77cb6124c2c07117a870ce06c0c',1,'audio_tools::I2SDriverSTM32::begin(RxTxMode mode=TX_MODE)'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#ab5eefc9d5f5c0ebd0b205d09985de96c',1,'audio_tools::I2SDriverSTM32::begin(I2SConfig cfg)'],['../classaudio__tools_1_1_container_m_p4.html#a7c3e14d99bd3dc0e3670d6956dafcaf2',1,'audio_tools::ContainerMP4::begin()'],['../classaudio__tools_1_1_a2_d_p_stream.html#a98f971b078dd42cc9f2912b236aeaf93',1,'audio_tools::A2DPStream::begin(RxTxMode mode, const char *name)'],['../classaudio__tools_1_1_a2_d_p_stream.html#aee349d45a33f77500a1d59928339d8f2',1,'audio_tools::A2DPStream::begin(A2DPConfig cfg)'],['../class_audio_e_s_p32_u_l_p.html#af1a0fe2d8421c464e2b0d0fe10690fb1',1,'AudioESP32ULP::begin()'],['../classaudio__tools_1_1_audio_output_with_callback.html#a50f45551c10ca30a0bc7f447e70188b1',1,'audio_tools::AudioOutputWithCallback::begin()'],['../classaudio__tools_1_1_faust_stream.html#af99303e9bfe78c84f1abd84376477ec7',1,'audio_tools::FaustStream::begin()'],['../classdsp__memory__manager.html#a7ee293e5f1dab88ca6cbce71cecaf750',1,'dsp_memory_manager::begin()'],['../classaudio__tools_1_1_audio_kit_stream.html#add4d8aad406c704d324345231e74f43a',1,'audio_tools::AudioKitStream::begin()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#ab5eefc9d5f5c0ebd0b205d09985de96c',1,'audio_tools::I2SDriverESP32V1::begin()'],['../classaudio__tools_1_1_w_a_v_encoder.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::WAVEncoder::begin()'],['../classaudio__tools_1_1_ogg_container_output.html#a4d2a8f208d69989c8676b0c632c9ea5c',1,'audio_tools::OggContainerOutput::begin()'],['../classaudio__tools_1_1_ogg_container_encoder.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::OggContainerEncoder::begin()'],['../classaudio__tools_1_1_generator_from_array.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::GeneratorFromArray::begin()'],['../classaudio__tools_1_1_generator_fixed_value.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::GeneratorFixedValue::begin()'],['../classaudio__tools_1_1_abstract_synthesizer_channel.html#aa7d2399ca5312676ceccaa270ba23e4c',1,'audio_tools::AbstractSynthesizerChannel::begin()'],['../classaudio__tools_1_1_default_synthesizer_channel.html#a26228c844a1066f1c3694831b6a5a8c5',1,'audio_tools::DefaultSynthesizerChannel::begin()'],['../classaudio__tools_1_1_audio_server.html#aa0b24dec6c29a164f14e4b24128621be',1,'audio_tools::AudioServer::begin(Stream &in, const char *contentType)'],['../classaudio__tools_1_1_audio_server.html#afe2c3d60d32a1f2cd8891c8bd7665b04',1,'audio_tools::AudioServer::begin(AudioServerDataCallback cb, const char *contentType)'],['../classaudio__tools_1_1_audio_encoder_server.html#ac2f0cdf2ba37d9f06d9485464abdaaf9',1,'audio_tools::AudioEncoderServer::begin(Stream &in, int sample_rate, int channels, int bits_per_sample=16, BaseConverter *converter=nullptr)'],['../classaudio__tools_1_1_audio_encoder_server.html#addba6829c68c6922c57aa28b0988282c',1,'audio_tools::AudioEncoderServer::begin(Stream &in, AudioInfo info, BaseConverter *converter=nullptr)'],['../classaudio__tools_1_1_audio_encoder_server.html#ab9451a7fc70f87638035c65ce8a4dd87',1,'audio_tools::AudioEncoderServer::begin(AudioServerDataCallback cb, int sample_rate, int channels, int bits_per_sample=16)'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#ab88584f8eaec1d79f5ee7e3ff56a8b5c',1,'audio_tools::I2SDriverESP32V1::begin(RxTxMode mode)'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::I2SDriverESP32V1::begin()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#aea50aa7329ae4f65a90c84b9d6e7fe7f',1,'audio_tools::I2SDriverESP32V1::begin(I2SConfig cfg, int txPin, int rxPin)']]],
- ['blocksize_2090',['blockSize',['../classaudio__tools_1_1_a_d_p_c_m_encoder.html#acce57d9e9018d5ce183ede161c776b6d',1,'audio_tools::ADPCMEncoder']]],
- ['boost_2091',['Boost',['../classaudio__tools_1_1_boost.html#af191c4af195d48e13b647f34007e9c22',1,'audio_tools::Boost']]],
- ['bufferrefill_2092',['bufferRefill',['../classaudio__tools_1_1_u_r_l_loader.html#a034016f1f7bf5783f75913f7730c9693',1,'audio_tools::URLLoader']]],
- ['buffersize_2093',['bufferSize',['../classaudio__tools_1_1_stream_copy_t.html#ab30bc84f9ea0a116951f3ad2a281c54f',1,'audio_tools::StreamCopyT']]],
- ['bytefactor_2094',['byteFactor',['../classaudio__tools_1_1_format_converter_stream.html#a7ed464c23066e6abb70174360d2acc6c',1,'audio_tools::FormatConverterStream']]],
- ['bytescompressed_2095',['bytesCompressed',['../classaudio__tools_1_1_s_b_c_decoder.html#a3511918f60a4c3f0135dc79573c5a502',1,'audio_tools::SBCDecoder']]],
- ['bytespersecond_2096',['bytesPerSecond',['../classaudio__tools_1_1_timed_stream.html#af8e4bd4a3ed944b9b3d49001690aeb85',1,'audio_tools::TimedStream::bytesPerSecond()'],['../classaudio__tools_1_1_measuring_stream.html#af8e4bd4a3ed944b9b3d49001690aeb85',1,'audio_tools::MeasuringStream::bytesPerSecond()']]]
+ ['balance_2092',['balance',['../classaudio__tools_1_1_v_s1053_stream.html#a179c2cf71d02cfb726cbfbbec0bd8699',1,'audio_tools::VS1053Stream']]],
+ ['begin_2093',['begin',['../classaudio__tools_1_1_u_d_p_stream.html#a8b281c48f356477aa8256b9d030e0b2e',1,'audio_tools::UDPStream::begin()'],['../classaudio__tools_1_1_w_m8960_stream.html#a87ca9efc5d81c756053820733e88b184',1,'audio_tools::WM8960Stream::begin()'],['../classaudio__tools_1_1_window_function.html#a838612f9ae4330b86d40ebbd7018b8a3',1,'audio_tools::WindowFunction::begin()'],['../classaudio__tools_1_1_buffered_window.html#a3546c7cbf10b15df2f9e4db1e3bbad16',1,'audio_tools::BufferedWindow::begin()'],['../classaudio__tools_1_1_l_e_d_output.html#aab6570fa867d03509c8437e02f0f4e1d',1,'audio_tools::LEDOutput::begin()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::LEDOutputUnoR4::begin()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a3d9e493def31bc795d1b9b193ce0bba3',1,'audio_tools::LEDOutputUnoR4::begin(LEDOutputUnoR4Config config)'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceSDFAT::begin()'],['../classaudio__tools_1_1_maximilian.html#afd420696e82e3c9725541a0dbab9c767',1,'audio_tools::Maximilian::begin()'],['../classaudio__tools_1_1_memory_manager.html#a82d0ab6c73ec481b35d04834df57aeed',1,'audio_tools::MemoryManager::begin()'],['../classaudio__tools_1_1_tf_lite_micro_speech_recognize_commands.html#a95c67a7619c06b54011d13b6da2f1e52',1,'audio_tools::TfLiteMicroSpeechRecognizeCommands::begin()'],['../classaudio__tools_1_1_tf_lite_micro_speach_writer.html#ac2c31d5df91d0199ef6cebdf5d5c09cd',1,'audio_tools::TfLiteMicroSpeachWriter::begin()'],['../classaudio__tools_1_1_tf_lite_audio_stream.html#a64cc02fe86cc5430e1f27298ec99a1b1',1,'audio_tools::TfLiteAudioStream::begin()'],['../classaudio__tools_1_1_v_s1053_stream.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::VS1053Stream::begin()'],['../classaudio__tools_1_1_v_s1053_stream.html#aea4a6cd1dd0e1bafd65f482ff3195734',1,'audio_tools::VS1053Stream::begin(VS1053Config cfg)'],['../classaudio__tools_1_1_w_m8960_stream.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::WM8960Stream::begin()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#ab0ae7809bb6be9afc89dee67cdc72db4',1,'audio_tools::AudioFFTBase::begin()'],['../classaudio__tools_1_1_audio_source_s_d.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceSD::begin()'],['../classaudio__tools_1_1_analog_audio_stream.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::AnalogAudioStream::begin()'],['../classaudio__tools_1_1_audio_kit_stream.html#add4d8aad406c704d324345231e74f43a',1,'audio_tools::AudioKitStream::begin()'],['../classaudio__tools_1_1_mozzi_stream.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MozziStream::begin()'],['../classaudio__tools_1_1_audio_w_a_v_server_ex.html#a01ec5d4dc2d747bed66224dbc4178741',1,'audio_tools::AudioWAVServerEx::begin()'],['../classaudio__tools_1_1_audio_source_idx_s_d.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceIdxSD::begin()'],['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceIdxSDFAT::begin()'],['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceIdxSDMMC::begin()'],['../classaudio__tools_1_1_audio_source_little_f_s.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceLittleFS::begin()'],['../classaudio__tools_1_1_u_d_p_stream.html#a6996736f780f803e5526a83c0c26ba69',1,'audio_tools::UDPStream::begin()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceSDFAT::begin()'],['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceSDMMC::begin()'],['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceSPIFFS::begin()'],['../classaudio__tools_1_1_audio_source_s_t_d.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceSTD::begin()'],['../classaudio__tools_1_1_s_t_k_generator.html#af99303e9bfe78c84f1abd84376477ec7',1,'audio_tools::STKGenerator::begin()'],['../classaudio__tools_1_1_e_s_p_now_stream.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::ESPNowStream::begin()'],['../classaudio__tools_1_1_e_s_p_now_stream.html#ad3f942324662d935f8a90233ed43a252',1,'audio_tools::ESPNowStream::begin(ESPNowStreamConfig cfg)'],['../classaudio__tools_1_1_queue_stream.html#a4d2a8f208d69989c8676b0c632c9ea5c',1,'audio_tools::QueueStream::begin()'],['../classaudio__tools_1_1_audio_source.html#aaf893c33f3c041e289a12c153dcc9789',1,'audio_tools::AudioSource::begin()'],['../classaudio__tools_1_1_audio_source_callback.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceCallback::begin()'],['../classaudio__tools_1_1_audio_source_u_r_l.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::AudioSourceURL::begin()'],['../classaudio__tools_1_1_s_p_d_i_f_output.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::SPDIFOutput::begin()'],['../classaudio__tools_1_1_s_p_d_i_f_output.html#aa79ba5bd7f6bfbf5364e994427b5f9a8',1,'audio_tools::SPDIFOutput::begin(SPDIFConfig config)'],['../classaudio__tools_1_1_dynamic_memory_stream.html#a4d2a8f208d69989c8676b0c632c9ea5c',1,'audio_tools::DynamicMemoryStream::begin()'],['../classaudio__tools_1_1_generated_sound_stream.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::GeneratedSoundStream::begin() override'],['../classaudio__tools_1_1_generated_sound_stream.html#af99303e9bfe78c84f1abd84376477ec7',1,'audio_tools::GeneratedSoundStream::begin(AudioInfo cfg)'],['../classaudio__tools_1_1_audio_player.html#aa83ff9b2ca349dc7352f9904d883a5e0',1,'audio_tools::AudioPlayer::begin()'],['../classaudio__tools_1_1_progress_stream.html#a000a10e426384c9aa5876979cd4d5be9',1,'audio_tools::ProgressStream::begin()'],['../classaudio__tools_1_1_timer_callback_audio_stream.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::TimerCallbackAudioStream::begin()'],['../classaudio__tools_1_1_transformation_reader.html#a122055b2ed7a47728ee984d173696ba3',1,'audio_tools::TransformationReader::begin()'],['../classaudio__tools_1_1_stream_copy_t.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::StreamCopyT::begin()'],['../classaudio__tools_1_1_stream_copy_t.html#aac230d8a4cf8cce0396d3723324c57f3',1,'audio_tools::StreamCopyT::begin(Print &to, Stream &from)'],['../classaudio__tools_1_1_stream_copy_t.html#af50f2b897e67c05dd9602ec494409d4a',1,'audio_tools::StreamCopyT::begin(Print &to, AudioStream &from)'],['../classaudio__tools_1_1_volume_stream.html#a768231c4c54c56db34a0d3a1b8a391bd',1,'audio_tools::VolumeStream::begin()'],['../classaudio__tools_1_1_timer_alarm_repeating_driver_m_b_e_d.html#aef983045eff2dc8f8ea76f40aa095cca',1,'audio_tools::TimerAlarmRepeatingDriverMBED::begin()'],['../classaudio__tools_1_1_meta_data_output.html#a92b1c95465e92012367bc96996880413',1,'audio_tools::MetaDataOutput::begin()'],['../classaudio__tools_1_1_meta_data_filter.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MetaDataFilter::begin()'],['../classaudio__tools_1_1_meta_data_i_c_y.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::MetaDataICY::begin()'],['../classaudio__tools_1_1_meta_data_i_d3_v1.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MetaDataID3V1::begin()'],['../classaudio__tools_1_1_meta_data_i_d3_v2.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MetaDataID3V2::begin()'],['../classaudio__tools_1_1_p_w_m_audio_output.html#ab90844720b1d1eb48de817b0a49f3b30',1,'audio_tools::PWMAudioOutput::begin()'],['../classaudio__tools_1_1_timer_alarm_repeating_driver_a_v_r.html#aef983045eff2dc8f8ea76f40aa095cca',1,'audio_tools::TimerAlarmRepeatingDriverAVR::begin()'],['../classaudio__tools_1_1_timer_alarm_repeating_driver_e_s_p8266.html#aef983045eff2dc8f8ea76f40aa095cca',1,'audio_tools::TimerAlarmRepeatingDriverESP8266::begin()'],['../classaudio__tools_1_1_meta_data_output.html#a9348a7795c13e8d6437b2a641f3a8320',1,'audio_tools::MetaDataOutput::begin()'],['../classaudio__tools_1_1_timer_alarm_repeating_driver_renesas.html#abfdcebf73e7c4974e4f5b6401bce3020',1,'audio_tools::TimerAlarmRepeatingDriverRenesas::begin()'],['../classaudio__tools_1_1_timer_alarm_repeating_driver_s_t_m32.html#aef983045eff2dc8f8ea76f40aa095cca',1,'audio_tools::TimerAlarmRepeatingDriverSTM32::begin()'],['../classaudio__tools_1_1_csv_output.html#ac70f7349fc3915c58de8f2f5493422dc',1,'audio_tools::CsvOutput::begin(AudioInfo info) override'],['../classaudio__tools_1_1_csv_output.html#a83c4fcc607172ab6cb0e8a837133e2c9',1,'audio_tools::CsvOutput::begin(int channels)'],['../classaudio__tools_1_1_csv_output.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::CsvOutput::begin() override'],['../classaudio__tools_1_1_output_mixer.html#a837c24b86686e363ee3fb1428385c073',1,'audio_tools::OutputMixer::begin()'],['../classaudio__tools_1_1_on_off_output.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::OnOffOutput::begin()'],['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MP3DecoderMAD::begin()'],['../classaudio__tools_1_1_encoder_float.html#abff6eaabd9829e911a1dbf8850192f05',1,'audio_tools::EncoderFloat::begin()'],['../classaudio__tools_1_1_decoder_helix.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::DecoderHelix::begin()'],['../classaudio__tools_1_1_encoder_l16.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::EncoderL16::begin() override'],['../classaudio__tools_1_1_encoder_l16.html#abff6eaabd9829e911a1dbf8850192f05',1,'audio_tools::EncoderL16::begin(Print &out)'],['../classaudio__tools_1_1_encoder_l8.html#a7c3e14d99bd3dc0e3670d6956dafcaf2',1,'audio_tools::EncoderL8::begin() override'],['../classaudio__tools_1_1_encoder_l8.html#abff6eaabd9829e911a1dbf8850192f05',1,'audio_tools::EncoderL8::begin(Print &out)'],['../classaudio__tools_1_1_m_p3_decoder_helix.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MP3DecoderHelix::begin()'],['../classaudio__tools_1_1_m_p3_encoder_l_a_m_e.html#aa012465253aa64aa70a44d07a443e592',1,'audio_tools::MP3EncoderLAME::begin()'],['../classaudio__tools_1_1_encoder_float.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::EncoderFloat::begin()'],['../classaudio__tools_1_1_m_p3_decoder_mini.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::MP3DecoderMini::begin()'],['../classaudio__tools_1_1_opus_audio_encoder.html#a7c3e14d99bd3dc0e3670d6956dafcaf2',1,'audio_tools::OpusAudioEncoder::begin()'],['../classaudio__tools_1_1_s_b_c_encoder.html#ae011a2d42c0a1fffd980430371394512',1,'audio_tools::SBCEncoder::begin(AudioInfo bi)'],['../classaudio__tools_1_1_s_b_c_encoder.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::SBCEncoder::begin()'],['../classaudio__tools_1_1_vorbis_decoder.html#a7c3e14d99bd3dc0e3670d6956dafcaf2',1,'audio_tools::VorbisDecoder::begin()'],['../classaudio__tools_1_1_w_a_v_encoder.html#a70e0bdc6c2f9b03b327778b866b1215b',1,'audio_tools::WAVEncoder::begin(WAVAudioInfo ai)'],['../classaudio__tools_1_1_w_a_v_encoder.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::WAVEncoder::begin() override'],['../classaudio__tools_1_1_a_a_c_encoder_f_d_k.html#a6c23593971c66b1fee16958a3ad1b0a6',1,'audio_tools::AACEncoderFDK::begin()'],['../classaudio__tools_1_1_analog_audio_stream.html#a5b57d1fefbbb011e8e8672dcc6750895',1,'audio_tools::AnalogAudioStream::begin()'],['../classaudio__tools_1_1_analog_driver_e_s_p32.html#a1a6736486fe8e0df47e3430799bf2498',1,'audio_tools::AnalogDriverESP32::begin()'],['../classaudio__tools_1_1_analog_driver_e_s_p32_v1.html#a8d98ae19dd79f27ebbe0f373cb1583a5',1,'audio_tools::AnalogDriverESP32V1::begin()'],['../classaudio__tools_1_1_analog_driver_m_b_e_d.html#a5b57d1fefbbb011e8e8672dcc6750895',1,'audio_tools::AnalogDriverMBED::begin()'],['../classaudio__tools_1_1_streaming_decoder.html#aaf893c33f3c041e289a12c153dcc9789',1,'audio_tools::StreamingDecoder::begin()'],['../classaudio__tools_1_1_encoded_audio_output.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::EncodedAudioOutput::begin() override'],['../classaudio__tools_1_1_encoded_audio_output.html#afc6a65076a1246faeb6415b2811bbb35',1,'audio_tools::EncodedAudioOutput::begin(AudioInfo cfg)'],['../classaudio__tools_1_1_a_a_c_decoder_f_a_a_d.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::AACDecoderFAAD::begin()'],['../classaudio__tools_1_1_faust_stream.html#af99303e9bfe78c84f1abd84376477ec7',1,'audio_tools::FaustStream::begin()'],['../classaudio__tools_1_1_a_a_c_encoder_f_d_k.html#a9a7848e744108b3a83796af0a086c322',1,'audio_tools::AACEncoderFDK::begin()'],['../classaudio__tools_1_1_a_a_c_decoder_helix.html#a7c3e14d99bd3dc0e3670d6956dafcaf2',1,'audio_tools::AACDecoderHelix::begin()'],['../classaudio__tools_1_1_encoder_base64.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::EncoderBase64::begin()'],['../classaudio__tools_1_1_encoder_basic.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::EncoderBasic::begin()'],['../classaudio__tools_1_1_f_l_a_c_decoder.html#ab0bdf5cca484fb2ba637c39384b27fb2',1,'audio_tools::FLACDecoder::begin()'],['../classaudio__tools_1_1_f_l_a_c_encoder.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::FLACEncoder::begin() override'],['../classaudio__tools_1_1_f_l_a_c_encoder.html#abff6eaabd9829e911a1dbf8850192f05',1,'audio_tools::FLACEncoder::begin(Print &out)'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#af260c77cb6124c2c07117a870ce06c0c',1,'audio_tools::I2SDriverSTM32::begin()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#ab5eefc9d5f5c0ebd0b205d09985de96c',1,'audio_tools::I2SDriverESP32V1::begin(I2SConfig cfg)'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#aea50aa7329ae4f65a90c84b9d6e7fe7f',1,'audio_tools::I2SDriverESP32V1::begin(I2SConfig cfg, int txPin, int rxPin)'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#af260c77cb6124c2c07117a870ce06c0c',1,'audio_tools::I2SDriverESP8266::begin(RxTxMode mode=TX_MODE)'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#ab5eefc9d5f5c0ebd0b205d09985de96c',1,'audio_tools::I2SDriverESP8266::begin(I2SConfig cfg)'],['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#af260c77cb6124c2c07117a870ce06c0c',1,'audio_tools::I2SDriverNanoBLE::begin(RxTxMode mode=TX_MODE)'],['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#ab5eefc9d5f5c0ebd0b205d09985de96c',1,'audio_tools::I2SDriverNanoBLE::begin(I2SConfig cfg)'],['../classaudio__tools_1_1_i2_s_driver_s_a_m_d.html#ab88584f8eaec1d79f5ee7e3ff56a8b5c',1,'audio_tools::I2SDriverSAMD::begin(RxTxMode mode)'],['../classaudio__tools_1_1_i2_s_driver_s_a_m_d.html#ab5eefc9d5f5c0ebd0b205d09985de96c',1,'audio_tools::I2SDriverSAMD::begin(I2SConfig cfg)'],['../classaudio__tools_1_1_ogg_container_output.html#a4d2a8f208d69989c8676b0c632c9ea5c',1,'audio_tools::OggContainerOutput::begin()'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#ab5eefc9d5f5c0ebd0b205d09985de96c',1,'audio_tools::I2SDriverSTM32::begin()'],['../classaudio__tools_1_1_i2_s_stream.html#ab5eefc9d5f5c0ebd0b205d09985de96c',1,'audio_tools::I2SStream::begin()'],['../classaudio__tools_1_1_a2_d_p_stream.html#a98f971b078dd42cc9f2912b236aeaf93',1,'audio_tools::A2DPStream::begin(RxTxMode mode, const char *name)'],['../classaudio__tools_1_1_a2_d_p_stream.html#aee349d45a33f77500a1d59928339d8f2',1,'audio_tools::A2DPStream::begin(A2DPConfig cfg)'],['../class_audio_e_s_p32_u_l_p.html#af1a0fe2d8421c464e2b0d0fe10690fb1',1,'AudioESP32ULP::begin()'],['../classaudio__tools_1_1_audio_output_with_callback.html#a50f45551c10ca30a0bc7f447e70188b1',1,'audio_tools::AudioOutputWithCallback::begin()'],['../classdsp__memory__manager.html#a7ee293e5f1dab88ca6cbce71cecaf750',1,'dsp_memory_manager::begin()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#ab88584f8eaec1d79f5ee7e3ff56a8b5c',1,'audio_tools::I2SDriverESP32V1::begin()'],['../classaudio__tools_1_1_container_m_p4.html#a7c3e14d99bd3dc0e3670d6956dafcaf2',1,'audio_tools::ContainerMP4::begin()'],['../classaudio__tools_1_1_ogg_container_encoder.html#a862ecf2b78cdb7877f997db8393c9825',1,'audio_tools::OggContainerEncoder::begin()'],['../classaudio__tools_1_1_generator_from_array.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::GeneratorFromArray::begin()'],['../classaudio__tools_1_1_generator_fixed_value.html#acba365cc28eb702040c382646cfb0a7a',1,'audio_tools::GeneratorFixedValue::begin()'],['../classaudio__tools_1_1_abstract_synthesizer_channel.html#aa7d2399ca5312676ceccaa270ba23e4c',1,'audio_tools::AbstractSynthesizerChannel::begin()'],['../classaudio__tools_1_1_default_synthesizer_channel.html#a26228c844a1066f1c3694831b6a5a8c5',1,'audio_tools::DefaultSynthesizerChannel::begin()'],['../classaudio__tools_1_1_audio_server.html#aa0b24dec6c29a164f14e4b24128621be',1,'audio_tools::AudioServer::begin(Stream &in, const char *contentType)'],['../classaudio__tools_1_1_audio_server.html#afe2c3d60d32a1f2cd8891c8bd7665b04',1,'audio_tools::AudioServer::begin(AudioServerDataCallback cb, const char *contentType)'],['../classaudio__tools_1_1_audio_encoder_server.html#ac2f0cdf2ba37d9f06d9485464abdaaf9',1,'audio_tools::AudioEncoderServer::begin(Stream &in, int sample_rate, int channels, int bits_per_sample=16, BaseConverter *converter=nullptr)'],['../classaudio__tools_1_1_audio_encoder_server.html#addba6829c68c6922c57aa28b0988282c',1,'audio_tools::AudioEncoderServer::begin(Stream &in, AudioInfo info, BaseConverter *converter=nullptr)'],['../classaudio__tools_1_1_audio_encoder_server.html#ab9451a7fc70f87638035c65ce8a4dd87',1,'audio_tools::AudioEncoderServer::begin(AudioServerDataCallback cb, int sample_rate, int channels, int bits_per_sample=16)'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32.html#ab88584f8eaec1d79f5ee7e3ff56a8b5c',1,'audio_tools::I2SDriverESP32::begin(RxTxMode mode)'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::I2SDriverESP32::begin()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32.html#ab5eefc9d5f5c0ebd0b205d09985de96c',1,'audio_tools::I2SDriverESP32::begin(I2SConfig cfg)'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32.html#aea50aa7329ae4f65a90c84b9d6e7fe7f',1,'audio_tools::I2SDriverESP32::begin(I2SConfig cfg, int txPin, int rxPin)'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#a601fb7cf1fc15db50c71a826f084f934',1,'audio_tools::I2SDriverESP32V1::begin()']]],
+ ['blocksize_2094',['blockSize',['../classaudio__tools_1_1_a_d_p_c_m_encoder.html#acce57d9e9018d5ce183ede161c776b6d',1,'audio_tools::ADPCMEncoder']]],
+ ['boost_2095',['Boost',['../classaudio__tools_1_1_boost.html#af191c4af195d48e13b647f34007e9c22',1,'audio_tools::Boost']]],
+ ['bufferrefill_2096',['bufferRefill',['../classaudio__tools_1_1_u_r_l_loader.html#a034016f1f7bf5783f75913f7730c9693',1,'audio_tools::URLLoader']]],
+ ['buffersize_2097',['bufferSize',['../classaudio__tools_1_1_stream_copy_t.html#ab30bc84f9ea0a116951f3ad2a281c54f',1,'audio_tools::StreamCopyT']]],
+ ['bytefactor_2098',['byteFactor',['../classaudio__tools_1_1_format_converter_stream.html#a7ed464c23066e6abb70174360d2acc6c',1,'audio_tools::FormatConverterStream']]],
+ ['bytescompressed_2099',['bytesCompressed',['../classaudio__tools_1_1_s_b_c_decoder.html#a3511918f60a4c3f0135dc79573c5a502',1,'audio_tools::SBCDecoder']]],
+ ['bytespersecond_2100',['bytesPerSecond',['../classaudio__tools_1_1_timed_stream.html#af8e4bd4a3ed944b9b3d49001690aeb85',1,'audio_tools::TimedStream::bytesPerSecond()'],['../classaudio__tools_1_1_measuring_stream.html#af8e4bd4a3ed944b9b3d49001690aeb85',1,'audio_tools::MeasuringStream::bytesPerSecond()']]]
];
diff --git a/search/functions_3.js b/search/functions_3.js
index 90c1c57f3e..12a6e41749 100644
--- a/search/functions_3.js
+++ b/search/functions_3.js
@@ -1,40 +1,40 @@
var searchData=
[
- ['c_5fstr_2097',['c_str',['../classaudio__tools_1_1_str.html#a9ccdbd62a9a4ce6642622d748894728e',1,'audio_tools::Str']]],
- ['callback_2098',['callback',['../classaudio__tools_1_1_analog_driver_arduino.html#a1f6728aa34c4d7f0743160574e03d594',1,'audio_tools::AnalogDriverArduino']]],
- ['capgain_2099',['capGain',['../classaudio__tools_1_1_filtered_delay.html#aba58c32ee8fd49054fb97c1c795cb7d8',1,'audio_tools::FilteredDelay::capGain()'],['../classaudio__tools_1_1_simple_delay.html#aba58c32ee8fd49054fb97c1c795cb7d8',1,'audio_tools::SimpleDelay::capGain()'],['../classaudio__tools_1_1_simple_flanger.html#a85147a878d52eb0c3a470c49ba72e4e1',1,'audio_tools::SimpleFlanger::capGain()']]],
- ['categorycount_2100',['categoryCount',['../classaudio__tools_1_1_tf_lite_micro_speech_recognize_commands.html#a5fb61859ca170faada0149e7e2049c2f',1,'audio_tools::TfLiteMicroSpeechRecognizeCommands']]],
- ['changechebyicoefficients_2101',['changeChebyICoefficients',['../classaudio__tools_1_1_filter_effect_base.html#a76e95f634b46e4a944735c72e400ebda',1,'audio_tools::FilterEffectBase']]],
- ['chartdata_2102',['chartData',['../classaudio__tools_1_1_chart_t.html#aa971fc3eaeed0371b77e42d85eee47ae',1,'audio_tools::ChartT']]],
- ['checkchannels_2103',['checkChannels',['../classaudio__tools_1_1_faust_stream.html#a9c778631f8de9fd5597052dd20787c1f',1,'audio_tools::FaustStream']]],
- ['checkmemory_2104',['checkMemory',['../group__basic.html#ga5f52449b4daf5731c81d0c517f0da925',1,'AudioRuntime.h']]],
- ['checkprefix_2105',['checkPrefix',['../classaudio__tools_1_1_a_p_t_x_decoder.html#aa1d0071fc1874ec9e73acd7531392da1',1,'audio_tools::APTXDecoder']]],
- ['checksync_2106',['checkSync',['../classaudio__tools_1_1_a_p_t_x_decoder.html#a8efd65b90908ac90d8fc296512f3b06d',1,'audio_tools::APTXDecoder']]],
- ['clear_2107',['clear',['../classaudio__tools_1_1_str.html#aae048282c7011eedc2e0492f6421ea73',1,'audio_tools::Str::clear()'],['../classaudio__tools_1_1_base_buffer.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::BaseBuffer::clear()'],['../classaudio__tools_1_1_queue_stream.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::QueueStream::clear()'],['../classaudio__tools_1_1_buffered_stream.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::BufferedStream::clear()'],['../classaudio__tools_1_1_memory_stream.html#a0fcf92f2c5e39da0f593c093ea16d440',1,'audio_tools::MemoryStream::clear()'],['../classaudio__tools_1_1_volume_output.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::VolumeOutput::clear()'],['../classaudio__tools_1_1_http_header.html#a7c7d6f6063db2f53479f140616be5724',1,'audio_tools::HttpHeader::clear()'],['../structaudio__tools_1_1_m_p4_atom.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::MP4Atom::clear()'],['../classaudio__tools_1_1_audio_effect_common.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::AudioEffectCommon::clear()'],['../classaudio__tools_1_1_audio_effect_stream_t.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::AudioEffectStreamT::clear()'],['../classaudio__tools_1_1_u_r_l_stream.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::URLStream::clear()'],['../classaudio__tools_1_1_audio_effects.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::AudioEffects::clear()']]],
- ['cleararray_2108',['clearArray',['../classaudio__tools_1_1_single_buffer.html#af4a69505d7ab34d699fbc6157aef3bbe',1,'audio_tools::SingleBuffer::clearArray()'],['../classaudio__tools_1_1_base_buffer.html#a5e526a739923663ae76533d9ad9eb656',1,'audio_tools::BaseBuffer::clearArray()']]],
- ['clearmemory_2109',['clearMemory',['../classaudio__tools_1_1_filter_effect_base.html#abab10a47ad7db459c3e5df22b1dd9105',1,'audio_tools::FilterEffectBase']]],
- ['clearstream_2110',['clearStream',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a4bbe12ca3eea828ce375e3b95b941b12',1,'audio_tools::I2SDriverNanoBLE']]],
- ['clip_2111',['clip',['../classaudio__tools_1_1_number_converter.html#a53e24ee1ef10497b952363c147bbedc0',1,'audio_tools::NumberConverter::clip()'],['../classaudio__tools_1_1_audio_effect.html#af52bdd0b692ecf558d8bd97fac35bf6b',1,'audio_tools::AudioEffect::clip()']]],
- ['clipwave_2112',['clipWave',['../classaudio__tools_1_1_modulation_base_class.html#a356c93980a95afc0003df929cd432c6d',1,'audio_tools::ModulationBaseClass']]],
- ['codec_2113',['codec',['../classaudio__tools_1_1_h_l_s_stream.html#a77ec75aeb09c8eb5bc54f469029f3da3',1,'audio_tools::HLSStream']]],
- ['codesize_2114',['codeSize',['../classaudio__tools_1_1_s_b_c_encoder.html#a4acc2555ecc44e12e20eec6974631c70',1,'audio_tools::SBCEncoder']]],
- ['complexhandler_2115',['complexHandler',['../classaudio__tools_1_1_timer_alarm_repeating_driver_e_s_p8266.html#a0cc3eebc2a71f976983096a370487af3',1,'audio_tools::TimerAlarmRepeatingDriverESP8266']]],
- ['config_2116',['config',['../classaudio__tools_1_1_opus_ogg_decoder.html#a702c40d253c27d3b7203361e1f49fc43',1,'audio_tools::OpusOggDecoder::config()'],['../classaudio__tools_1_1_opus_audio_decoder.html#a702c40d253c27d3b7203361e1f49fc43',1,'audio_tools::OpusAudioDecoder::config()'],['../classaudio__tools_1_1_tf_lite_audio_stream.html#ad99fd151888361e48ab2b69b82cc8b86',1,'audio_tools::TfLiteAudioStream::config()'],['../classaudio__tools_1_1_tf_lite_audio_stream_base.html#a40f112d8a30e5084466a222e1fa981c9',1,'audio_tools::TfLiteAudioStreamBase::config()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#abdce6adc217a5bbe546410c3b46afee9',1,'audio_tools::LEDOutputUnoR4::config()'],['../classaudio__tools_1_1_l_e_d_output.html#aa4dd40c7c10f7adf35e3cfa26049206a',1,'audio_tools::LEDOutput::config()'],['../classaudio__tools_1_1_mozzi_generator.html#a496dcae19ba733a0511069f0c7fe8660',1,'audio_tools::MozziGenerator::config()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#ada9a4d4d794a8fbde0e18bec769655ca',1,'audio_tools::AudioFFTBase::config()'],['../classaudio__tools_1_1_i2_s_driver_s_a_m_d.html#a95eae20920cd36e37ffadbc2783de718',1,'audio_tools::I2SDriverSAMD::config()'],['../classaudio__tools_1_1_opus_audio_encoder.html#a450169e1dd55d42ad9be4232e6bc3f7e',1,'audio_tools::OpusAudioEncoder::config()'],['../classaudio__tools_1_1_opus_ogg_encoder.html#a450169e1dd55d42ad9be4232e6bc3f7e',1,'audio_tools::OpusOggEncoder::config()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#a95eae20920cd36e37ffadbc2783de718',1,'audio_tools::I2SDriverESP32V1::config()'],['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a95eae20920cd36e37ffadbc2783de718',1,'audio_tools::I2SDriverNanoBLE::config()'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#a95eae20920cd36e37ffadbc2783de718',1,'audio_tools::I2SDriverSTM32::config()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#a95eae20920cd36e37ffadbc2783de718',1,'audio_tools::I2SDriverESP8266::config()']]],
- ['configure_2117',['configure',['../classaudio__tools_1_1_a_a_c_decoder_f_d_k.html#ae6fd8edc1395f60442dba5e8738b24bf',1,'audio_tools::AACDecoderFDK']]],
- ['consume_2118',['consume',['../classaudio__tools_1_1_a_v_i_decoder.html#aba97c16a038da99ec61d3b3145513742',1,'audio_tools::AVIDecoder']]],
- ['consumesample_2119',['ConsumeSample',['../classaudio__tools_1_1_audio_output_with_callback.html#aa330cbf7c03b775167621cbdb24f79f0',1,'audio_tools::AudioOutputWithCallback']]],
- ['contains_2120',['contains',['../classaudio__tools_1_1_str.html#a72c701b627c222f397e4d2e38ab310b5',1,'audio_tools::Str']]],
- ['contenttype_2121',['contentType',['../classaudio__tools_1_1_h_l_s_parser.html#a90bfaf533d2e31333a61152b1681d40e',1,'audio_tools::HLSParser']]],
- ['convert_2122',['convert',['../classaudio__tools_1_1_number_converter.html#ad847c72f19ba5bcd8ab8e2f4e138c592',1,'audio_tools::NumberConverter::convert()'],['../classaudio__tools_1_1_fade.html#a43d670c57ac17e04543faa6e546c7007',1,'audio_tools::Fade::convert()']]],
- ['converternchannels_2123',['ConverterNChannels',['../classaudio__tools_1_1_converter_n_channels.html#adfb04e4efe202405fa2728dafc42a1fc',1,'audio_tools::ConverterNChannels']]],
- ['convertfloatbuffertoint_2124',['convertFloatBufferToInt',['../classaudio__tools_1_1_faust_stream.html#a9666116563bb180048bd43ce4b35b9d4',1,'audio_tools::FaustStream']]],
- ['convertintbuffertofloat_2125',['convertIntBufferToFloat',['../classaudio__tools_1_1_faust_stream.html#a9a705dabc6f28b5a343790a35d1b03b0',1,'audio_tools::FaustStream']]],
- ['copy_2126',['copy',['../classaudio__tools_1_1_stream_copy.html#aecb44a6d385121be2179187d45520331',1,'audio_tools::StreamCopy::copy()'],['../classaudio__tools_1_1_f_l_a_c_decoder.html#a68b01f6d74485da20c323b9c68d906fd',1,'audio_tools::FLACDecoder::copy()'],['../classaudio__tools_1_1_vorbis_decoder.html#a01e1a5adb76fa670d21a598eca436c5e',1,'audio_tools::VorbisDecoder::copy()'],['../classaudio__tools_1_1_audio_server.html#a68b01f6d74485da20c323b9c68d906fd',1,'audio_tools::AudioServer::copy()'],['../classaudio__tools_1_1_stream_copy.html#a226bbd7cd5d674fabacfb94711178728',1,'audio_tools::StreamCopy::copy()'],['../classaudio__tools_1_1_streaming_decoder.html#a09b4fd0a2bd2c7c07c01fd12ae456c98',1,'audio_tools::StreamingDecoder::copy()'],['../classaudio__tools_1_1_audio_server_ex.html#a72c4ecea0edfb6a9f9c05edc57b35c19',1,'audio_tools::AudioServerEx::copy()'],['../classaudio__tools_1_1_maximilian.html#aaa6c087511a52e64fc9ad92820c7c0a8',1,'audio_tools::Maximilian::copy()'],['../classaudio__tools_1_1_audio_player.html#af62138cf6d06e41ae7d0535e4ecdeeb2',1,'audio_tools::AudioPlayer::copy()'],['../classaudio__tools_1_1_stream_copy_t.html#aecb44a6d385121be2179187d45520331',1,'audio_tools::StreamCopyT::copy()']]],
- ['copyall_2127',['copyAll',['../classaudio__tools_1_1_stream_copy_t.html#a81c4dd3919c1824540306c995521c89a',1,'audio_tools::StreamCopyT']]],
- ['copyfrom_2128',['copyFrom',['../classaudio__tools_1_1_str_ext.html#a1990adb01593630f422dafbc812d98b5',1,'audio_tools::StrExt::copyFrom()'],['../structaudio__tools_1_1_audio_info.html#a029ace15f5ede8def0a6ab5c97a81b25',1,'audio_tools::AudioInfo::copyFrom()']]],
- ['copyms_2129',['copyMs',['../classaudio__tools_1_1_stream_copy_t.html#a0a5e6527d329e850fa0f18bcd7647871',1,'audio_tools::StreamCopyT']]],
- ['copyn_2130',['copyN',['../classaudio__tools_1_1_stream_copy_t.html#a674594d79037e62a14a91a5394496644',1,'audio_tools::StreamCopyT']]],
- ['count_2131',['count',['../classaudio__tools_1_1_str.html#a943139c86181bafa601216f68120fd9d',1,'audio_tools::Str']]],
- ['csvoutput_2132',['CsvOutput',['../classaudio__tools_1_1_csv_output.html#a8c7898b349ec81163c029c92f5925313',1,'audio_tools::CsvOutput']]],
- ['currentsamplerate_2133',['currentSampleRate',['../classaudio__tools_1_1_timer_callback_audio_stream.html#a2c71403874040c006bd209dda47933ef',1,'audio_tools::TimerCallbackAudioStream']]]
+ ['c_5fstr_2101',['c_str',['../classaudio__tools_1_1_str.html#a9ccdbd62a9a4ce6642622d748894728e',1,'audio_tools::Str']]],
+ ['callback_2102',['callback',['../classaudio__tools_1_1_analog_driver_arduino.html#a1f6728aa34c4d7f0743160574e03d594',1,'audio_tools::AnalogDriverArduino']]],
+ ['capgain_2103',['capGain',['../classaudio__tools_1_1_filtered_delay.html#aba58c32ee8fd49054fb97c1c795cb7d8',1,'audio_tools::FilteredDelay::capGain()'],['../classaudio__tools_1_1_simple_delay.html#aba58c32ee8fd49054fb97c1c795cb7d8',1,'audio_tools::SimpleDelay::capGain()'],['../classaudio__tools_1_1_simple_flanger.html#a85147a878d52eb0c3a470c49ba72e4e1',1,'audio_tools::SimpleFlanger::capGain()']]],
+ ['categorycount_2104',['categoryCount',['../classaudio__tools_1_1_tf_lite_micro_speech_recognize_commands.html#a5fb61859ca170faada0149e7e2049c2f',1,'audio_tools::TfLiteMicroSpeechRecognizeCommands']]],
+ ['changechebyicoefficients_2105',['changeChebyICoefficients',['../classaudio__tools_1_1_filter_effect_base.html#a76e95f634b46e4a944735c72e400ebda',1,'audio_tools::FilterEffectBase']]],
+ ['chartdata_2106',['chartData',['../classaudio__tools_1_1_chart_t.html#aa971fc3eaeed0371b77e42d85eee47ae',1,'audio_tools::ChartT']]],
+ ['checkchannels_2107',['checkChannels',['../classaudio__tools_1_1_faust_stream.html#a9c778631f8de9fd5597052dd20787c1f',1,'audio_tools::FaustStream']]],
+ ['checkmemory_2108',['checkMemory',['../group__basic.html#ga5f52449b4daf5731c81d0c517f0da925',1,'AudioRuntime.h']]],
+ ['checkprefix_2109',['checkPrefix',['../classaudio__tools_1_1_a_p_t_x_decoder.html#aa1d0071fc1874ec9e73acd7531392da1',1,'audio_tools::APTXDecoder']]],
+ ['checksync_2110',['checkSync',['../classaudio__tools_1_1_a_p_t_x_decoder.html#a8efd65b90908ac90d8fc296512f3b06d',1,'audio_tools::APTXDecoder']]],
+ ['clear_2111',['clear',['../classaudio__tools_1_1_str.html#aae048282c7011eedc2e0492f6421ea73',1,'audio_tools::Str::clear()'],['../classaudio__tools_1_1_base_buffer.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::BaseBuffer::clear()'],['../classaudio__tools_1_1_queue_stream.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::QueueStream::clear()'],['../classaudio__tools_1_1_buffered_stream.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::BufferedStream::clear()'],['../classaudio__tools_1_1_memory_stream.html#a0fcf92f2c5e39da0f593c093ea16d440',1,'audio_tools::MemoryStream::clear()'],['../classaudio__tools_1_1_volume_output.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::VolumeOutput::clear()'],['../classaudio__tools_1_1_http_header.html#a7c7d6f6063db2f53479f140616be5724',1,'audio_tools::HttpHeader::clear()'],['../structaudio__tools_1_1_m_p4_atom.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::MP4Atom::clear()'],['../classaudio__tools_1_1_audio_effect_common.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::AudioEffectCommon::clear()'],['../classaudio__tools_1_1_audio_effect_stream_t.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::AudioEffectStreamT::clear()'],['../classaudio__tools_1_1_u_r_l_stream.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::URLStream::clear()'],['../classaudio__tools_1_1_audio_effects.html#ac8bb3912a3ce86b15842e79d0b421204',1,'audio_tools::AudioEffects::clear()']]],
+ ['cleararray_2112',['clearArray',['../classaudio__tools_1_1_single_buffer.html#af4a69505d7ab34d699fbc6157aef3bbe',1,'audio_tools::SingleBuffer::clearArray()'],['../classaudio__tools_1_1_base_buffer.html#a5e526a739923663ae76533d9ad9eb656',1,'audio_tools::BaseBuffer::clearArray()']]],
+ ['clearmemory_2113',['clearMemory',['../classaudio__tools_1_1_filter_effect_base.html#abab10a47ad7db459c3e5df22b1dd9105',1,'audio_tools::FilterEffectBase']]],
+ ['clearstream_2114',['clearStream',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a4bbe12ca3eea828ce375e3b95b941b12',1,'audio_tools::I2SDriverNanoBLE']]],
+ ['clip_2115',['clip',['../classaudio__tools_1_1_number_converter.html#a53e24ee1ef10497b952363c147bbedc0',1,'audio_tools::NumberConverter::clip()'],['../classaudio__tools_1_1_audio_effect.html#af52bdd0b692ecf558d8bd97fac35bf6b',1,'audio_tools::AudioEffect::clip()']]],
+ ['clipwave_2116',['clipWave',['../classaudio__tools_1_1_modulation_base_class.html#a356c93980a95afc0003df929cd432c6d',1,'audio_tools::ModulationBaseClass']]],
+ ['codec_2117',['codec',['../classaudio__tools_1_1_h_l_s_stream.html#a77ec75aeb09c8eb5bc54f469029f3da3',1,'audio_tools::HLSStream']]],
+ ['codesize_2118',['codeSize',['../classaudio__tools_1_1_s_b_c_encoder.html#a4acc2555ecc44e12e20eec6974631c70',1,'audio_tools::SBCEncoder']]],
+ ['complexhandler_2119',['complexHandler',['../classaudio__tools_1_1_timer_alarm_repeating_driver_e_s_p8266.html#a0cc3eebc2a71f976983096a370487af3',1,'audio_tools::TimerAlarmRepeatingDriverESP8266']]],
+ ['config_2120',['config',['../classaudio__tools_1_1_opus_ogg_decoder.html#a702c40d253c27d3b7203361e1f49fc43',1,'audio_tools::OpusOggDecoder::config()'],['../classaudio__tools_1_1_opus_audio_decoder.html#a702c40d253c27d3b7203361e1f49fc43',1,'audio_tools::OpusAudioDecoder::config()'],['../classaudio__tools_1_1_tf_lite_audio_stream.html#ad99fd151888361e48ab2b69b82cc8b86',1,'audio_tools::TfLiteAudioStream::config()'],['../classaudio__tools_1_1_tf_lite_audio_stream_base.html#a40f112d8a30e5084466a222e1fa981c9',1,'audio_tools::TfLiteAudioStreamBase::config()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#abdce6adc217a5bbe546410c3b46afee9',1,'audio_tools::LEDOutputUnoR4::config()'],['../classaudio__tools_1_1_l_e_d_output.html#aa4dd40c7c10f7adf35e3cfa26049206a',1,'audio_tools::LEDOutput::config()'],['../classaudio__tools_1_1_mozzi_generator.html#a496dcae19ba733a0511069f0c7fe8660',1,'audio_tools::MozziGenerator::config()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#ada9a4d4d794a8fbde0e18bec769655ca',1,'audio_tools::AudioFFTBase::config()'],['../classaudio__tools_1_1_i2_s_driver_s_a_m_d.html#a95eae20920cd36e37ffadbc2783de718',1,'audio_tools::I2SDriverSAMD::config()'],['../classaudio__tools_1_1_opus_audio_encoder.html#a450169e1dd55d42ad9be4232e6bc3f7e',1,'audio_tools::OpusAudioEncoder::config()'],['../classaudio__tools_1_1_opus_ogg_encoder.html#a450169e1dd55d42ad9be4232e6bc3f7e',1,'audio_tools::OpusOggEncoder::config()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32.html#a95eae20920cd36e37ffadbc2783de718',1,'audio_tools::I2SDriverESP32::config()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#a95eae20920cd36e37ffadbc2783de718',1,'audio_tools::I2SDriverESP8266::config()'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#a95eae20920cd36e37ffadbc2783de718',1,'audio_tools::I2SDriverSTM32::config()'],['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a95eae20920cd36e37ffadbc2783de718',1,'audio_tools::I2SDriverNanoBLE::config()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#a95eae20920cd36e37ffadbc2783de718',1,'audio_tools::I2SDriverESP32V1::config()']]],
+ ['configure_2121',['configure',['../classaudio__tools_1_1_a_a_c_decoder_f_d_k.html#ae6fd8edc1395f60442dba5e8738b24bf',1,'audio_tools::AACDecoderFDK']]],
+ ['consume_2122',['consume',['../classaudio__tools_1_1_a_v_i_decoder.html#aba97c16a038da99ec61d3b3145513742',1,'audio_tools::AVIDecoder']]],
+ ['consumesample_2123',['ConsumeSample',['../classaudio__tools_1_1_audio_output_with_callback.html#aa330cbf7c03b775167621cbdb24f79f0',1,'audio_tools::AudioOutputWithCallback']]],
+ ['contains_2124',['contains',['../classaudio__tools_1_1_str.html#a72c701b627c222f397e4d2e38ab310b5',1,'audio_tools::Str']]],
+ ['contenttype_2125',['contentType',['../classaudio__tools_1_1_h_l_s_parser.html#a90bfaf533d2e31333a61152b1681d40e',1,'audio_tools::HLSParser']]],
+ ['convert_2126',['convert',['../classaudio__tools_1_1_number_converter.html#ad847c72f19ba5bcd8ab8e2f4e138c592',1,'audio_tools::NumberConverter::convert()'],['../classaudio__tools_1_1_fade.html#a43d670c57ac17e04543faa6e546c7007',1,'audio_tools::Fade::convert()']]],
+ ['converternchannels_2127',['ConverterNChannels',['../classaudio__tools_1_1_converter_n_channels.html#adfb04e4efe202405fa2728dafc42a1fc',1,'audio_tools::ConverterNChannels']]],
+ ['convertfloatbuffertoint_2128',['convertFloatBufferToInt',['../classaudio__tools_1_1_faust_stream.html#a9666116563bb180048bd43ce4b35b9d4',1,'audio_tools::FaustStream']]],
+ ['convertintbuffertofloat_2129',['convertIntBufferToFloat',['../classaudio__tools_1_1_faust_stream.html#a9a705dabc6f28b5a343790a35d1b03b0',1,'audio_tools::FaustStream']]],
+ ['copy_2130',['copy',['../classaudio__tools_1_1_stream_copy.html#a226bbd7cd5d674fabacfb94711178728',1,'audio_tools::StreamCopy::copy(BaseConverter &converter)'],['../classaudio__tools_1_1_stream_copy.html#aecb44a6d385121be2179187d45520331',1,'audio_tools::StreamCopy::copy()'],['../classaudio__tools_1_1_streaming_decoder.html#a09b4fd0a2bd2c7c07c01fd12ae456c98',1,'audio_tools::StreamingDecoder::copy()'],['../classaudio__tools_1_1_stream_copy_t.html#aecb44a6d385121be2179187d45520331',1,'audio_tools::StreamCopyT::copy()'],['../classaudio__tools_1_1_f_l_a_c_decoder.html#a68b01f6d74485da20c323b9c68d906fd',1,'audio_tools::FLACDecoder::copy()'],['../classaudio__tools_1_1_vorbis_decoder.html#a01e1a5adb76fa670d21a598eca436c5e',1,'audio_tools::VorbisDecoder::copy()'],['../classaudio__tools_1_1_audio_server.html#a68b01f6d74485da20c323b9c68d906fd',1,'audio_tools::AudioServer::copy()'],['../classaudio__tools_1_1_audio_server_ex.html#a72c4ecea0edfb6a9f9c05edc57b35c19',1,'audio_tools::AudioServerEx::copy()'],['../classaudio__tools_1_1_maximilian.html#aaa6c087511a52e64fc9ad92820c7c0a8',1,'audio_tools::Maximilian::copy()'],['../classaudio__tools_1_1_audio_player.html#af62138cf6d06e41ae7d0535e4ecdeeb2',1,'audio_tools::AudioPlayer::copy()']]],
+ ['copyall_2131',['copyAll',['../classaudio__tools_1_1_stream_copy_t.html#a81c4dd3919c1824540306c995521c89a',1,'audio_tools::StreamCopyT']]],
+ ['copyfrom_2132',['copyFrom',['../classaudio__tools_1_1_str_ext.html#a1990adb01593630f422dafbc812d98b5',1,'audio_tools::StrExt::copyFrom()'],['../structaudio__tools_1_1_audio_info.html#a029ace15f5ede8def0a6ab5c97a81b25',1,'audio_tools::AudioInfo::copyFrom()']]],
+ ['copyms_2133',['copyMs',['../classaudio__tools_1_1_stream_copy_t.html#a0a5e6527d329e850fa0f18bcd7647871',1,'audio_tools::StreamCopyT']]],
+ ['copyn_2134',['copyN',['../classaudio__tools_1_1_stream_copy_t.html#a674594d79037e62a14a91a5394496644',1,'audio_tools::StreamCopyT']]],
+ ['count_2135',['count',['../classaudio__tools_1_1_str.html#a943139c86181bafa601216f68120fd9d',1,'audio_tools::Str']]],
+ ['csvoutput_2136',['CsvOutput',['../classaudio__tools_1_1_csv_output.html#a8c7898b349ec81163c029c92f5925313',1,'audio_tools::CsvOutput']]],
+ ['currentsamplerate_2137',['currentSampleRate',['../classaudio__tools_1_1_timer_callback_audio_stream.html#a2c71403874040c006bd209dda47933ef',1,'audio_tools::TimerCallbackAudioStream']]]
];
diff --git a/search/functions_4.js b/search/functions_4.js
index 2baf20e52b..b921d2364d 100644
--- a/search/functions_4.js
+++ b/search/functions_4.js
@@ -1,35 +1,35 @@
var searchData=
[
- ['data_2134',['data',['../classaudio__tools_1_1_single_buffer.html#a1699472936b80a88d3fc8096975d21b2',1,'audio_tools::SingleBuffer::data()'],['../classaudio__tools_1_1_slice.html#a1699472936b80a88d3fc8096975d21b2',1,'audio_tools::Slice::data()']]],
- ['dataarray_2135',['dataArray',['../classaudio__tools_1_1_audio_espressif_f_f_t.html#a3ab68b0efd4737f9d467c0767efdeded',1,'audio_tools::AudioEspressifFFT::dataArray()'],['../classaudio__tools_1_1_audio_kiss_f_f_t.html#a43c6d95f5f877b6958d5625bb91593fb',1,'audio_tools::AudioKissFFT::dataArray()']]],
- ['datanode_2136',['DataNode',['../structaudio__tools_1_1_dynamic_memory_stream_1_1_data_node.html#a291f181d7085deac74711e35106a5ff4',1,'audio_tools::DynamicMemoryStream::DataNode']]],
- ['debounce_2137',['debounce',['../classaudio__tools_1_1_debouncer.html#add1855eb9494720e78650a34d4b209f9',1,'audio_tools::Debouncer']]],
- ['decimation_2138',['decimation',['../classaudio__tools_1_1_driver_p_w_m_base.html#ab384cb1f6477fbea20479be533e2c9ec',1,'audio_tools::DriverPWMBase::decimation()'],['../classaudio__tools_1_1_p_w_m_driver_renesas.html#ad156409972690be7326305843a75a137',1,'audio_tools::PWMDriverRenesas::decimation()']]],
- ['decode_2139',['decode',['../classaudio__tools_1_1_m_p3_decoder_mini.html#ae5f4be3ed9889ce9be7fcd69f0668e34',1,'audio_tools::MP3DecoderMini::decode()'],['../classaudio__tools_1_1_container_m_p4.html#adad9b4faff502c052c0d14005f33390b',1,'audio_tools::ContainerMP4::decode()']]],
- ['decodemetadata_2140',['decodeMetaData',['../classaudio__tools_1_1_audio_player.html#a061d2503580a033bd7c9e7edfc7df838',1,'audio_tools::AudioPlayer']]],
- ['decoder_2141',['decoder',['../classaudio__tools_1_1_encoded_audio_output.html#a11f7ddac5cfa81a408fd32a35875db47',1,'audio_tools::EncodedAudioOutput']]],
- ['decoderbase64_2142',['DecoderBase64',['../classaudio__tools_1_1_decoder_base64.html#a921e83cf581fdc1da5fd8523dd70ae39',1,'audio_tools::DecoderBase64::DecoderBase64()'],['../classaudio__tools_1_1_decoder_base64.html#abba0530ed589348b1efe110a116608c0',1,'audio_tools::DecoderBase64::DecoderBase64(Print &out)']]],
- ['decoderbasic_2143',['DecoderBasic',['../classaudio__tools_1_1_decoder_basic.html#a0c68abf5a699fc57eb5a97bb83197bef',1,'audio_tools::DecoderBasic::DecoderBasic()'],['../classaudio__tools_1_1_decoder_basic.html#a60208fd31bb7247372be8ebdf3b30778',1,'audio_tools::DecoderBasic::DecoderBasic(Print &out_stream, bool active=true)'],['../classaudio__tools_1_1_decoder_basic.html#af39b476160b6c64c6a7457896c58340e',1,'audio_tools::DecoderBasic::DecoderBasic(Print &out_stream, AudioInfoSupport &bi)']]],
- ['decoderfloat_2144',['DecoderFloat',['../classaudio__tools_1_1_decoder_float.html#a52ffd315745e877211eda5bcdba3aeba',1,'audio_tools::DecoderFloat::DecoderFloat()'],['../classaudio__tools_1_1_decoder_float.html#ab6d4f45f8982babb5244c20144b2a4f1',1,'audio_tools::DecoderFloat::DecoderFloat(Print &out_stream, bool active=true)'],['../classaudio__tools_1_1_decoder_float.html#a8ea88d37e15daae590c27c9f870ae146',1,'audio_tools::DecoderFloat::DecoderFloat(Print &out_stream, AudioInfoSupport &bi)']]],
- ['decoderl16_2145',['DecoderL16',['../classaudio__tools_1_1_decoder_l16.html#a9e40c832d9e74ba24703fea281b7b199',1,'audio_tools::DecoderL16::DecoderL16()'],['../classaudio__tools_1_1_decoder_l16.html#a832f915dec149398faaf60750df3e064',1,'audio_tools::DecoderL16::DecoderL16(Print &out_stream, AudioInfoSupport &bi)'],['../classaudio__tools_1_1_decoder_l16.html#a872f348018ac776926bfda76fbba5160',1,'audio_tools::DecoderL16::DecoderL16(Print &out_stream, bool active=true)']]],
- ['decoderl8_2146',['DecoderL8',['../classaudio__tools_1_1_decoder_l8.html#afe56dd630e1c6b569f2cf9ff1353ff7f',1,'audio_tools::DecoderL8::DecoderL8(bool isSigned=false)'],['../classaudio__tools_1_1_decoder_l8.html#a9b8fd0691c7d2d970f82313be5c74241',1,'audio_tools::DecoderL8::DecoderL8(Print &out_stream, bool active=true)'],['../classaudio__tools_1_1_decoder_l8.html#a1601a5fb7baa9f58dffbc5aa8ab1db8e',1,'audio_tools::DecoderL8::DecoderL8(Print &out_stream, AudioInfoSupport &bi)']]],
- ['default_5fdata_5fcallback_2147',['default_data_callback',['../classaudio__tools_1_1_container_m_p4.html#a999cf9e39e4f5ed3da49f68ee50e61b5',1,'audio_tools::ContainerMP4']]],
- ['default_5fis_5fheader_5fcallback_2148',['default_is_header_callback',['../classaudio__tools_1_1_container_m_p4.html#ac19a34fbe54daa32498f582f1f4b1778',1,'audio_tools::ContainerMP4']]],
- ['defaultconfig_2149',['defaultConfig',['../classaudio__tools_1_1_r_t_s_p_format_audio_tools.html#ad7bf7c93ebcce49daec84761d55b5587',1,'audio_tools::RTSPFormatAudioTools::defaultConfig()'],['../classaudio__tools_1_1_l_e_d_output.html#aaba1380b847be94f1cb6428ed68efb37',1,'audio_tools::LEDOutput::defaultConfig()'],['../classaudio__tools_1_1_r_t_s_p_format_opus.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::RTSPFormatOpus::defaultConfig()'],['../classaudio__tools_1_1_r_t_s_p_format_abt_x.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::RTSPFormatAbtX::defaultConfig()'],['../classaudio__tools_1_1_r_t_s_p_format_g_s_m.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::RTSPFormatGSM::defaultConfig()'],['../classaudio__tools_1_1_r_t_s_p_format_g711.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::RTSPFormatG711::defaultConfig()'],['../classaudio__tools_1_1_r_t_s_p_format_p_c_m.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::RTSPFormatPCM::defaultConfig()'],['../classaudio__tools_1_1_r_t_s_p_format_p_c_m8.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::RTSPFormatPCM8::defaultConfig()'],['../classaudio__tools_1_1_csv_output.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::CsvOutput::defaultConfig()'],['../classaudio__tools_1_1_s_p_d_i_f_output.html#a4c9c41e75e159fa1bd88ab194dae85f8',1,'audio_tools::SPDIFOutput::defaultConfig()'],['../classaudio__tools_1_1_timer_callback_audio_stream.html#a575242c29642bac1b68da9660ede35a1',1,'audio_tools::TimerCallbackAudioStream::defaultConfig()'],['../classaudio__tools_1_1_resample_stream.html#af52118d79bafb3eefdd7e6138f15b9e7',1,'audio_tools::ResampleStream::defaultConfig()'],['../classaudio__tools_1_1_s_t_k_generator.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::STKGenerator::defaultConfig()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#ab865c67526dd06c245d082b9cf5af561',1,'audio_tools::LEDOutputUnoR4::defaultConfig()'],['../classaudio__tools_1_1_analog_audio_stream.html#ac4b262f441e13eb8054c879d9dd57edd',1,'audio_tools::AnalogAudioStream::defaultConfig()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#a8336a067ed98f798b5fe70512aa161d5',1,'audio_tools::I2SDriverESP32V1::defaultConfig()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#a8336a067ed98f798b5fe70512aa161d5',1,'audio_tools::I2SDriverESP8266::defaultConfig()'],['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a8336a067ed98f798b5fe70512aa161d5',1,'audio_tools::I2SDriverNanoBLE::defaultConfig()'],['../classaudio__tools_1_1_i2_s_driver_s_a_m_d.html#a8336a067ed98f798b5fe70512aa161d5',1,'audio_tools::I2SDriverSAMD::defaultConfig()'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#a72661c546cdee7de3302d7d3fda10332',1,'audio_tools::I2SDriverSTM32::defaultConfig()'],['../classaudio__tools_1_1_i2_s_stream.html#a72661c546cdee7de3302d7d3fda10332',1,'audio_tools::I2SStream::defaultConfig()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#ae9a3bb7e3a6034fc0dd9249499701aff',1,'audio_tools::AudioFFTBase::defaultConfig()'],['../classaudio__tools_1_1_audio_kit_stream.html#a8e62ff0b232f96ea37ca156e2e6108c2',1,'audio_tools::AudioKitStream::defaultConfig()']]],
- ['defaultpwmaudiooutputcallback_2150',['defaultPWMAudioOutputCallback',['../classaudio__tools_1_1_p_w_m_driver_m_b_e_d.html#afba856d7d0cf53662bb1432aaaa69ddd',1,'audio_tools::PWMDriverMBED::defaultPWMAudioOutputCallback()'],['../classaudio__tools_1_1_p_w_m_driver_renesas.html#afba856d7d0cf53662bb1432aaaa69ddd',1,'audio_tools::PWMDriverRenesas::defaultPWMAudioOutputCallback()'],['../classaudio__tools_1_1_p_w_m_driver_s_t_m32.html#afba856d7d0cf53662bb1432aaaa69ddd',1,'audio_tools::PWMDriverSTM32::defaultPWMAudioOutputCallback()'],['../namespaceaudio__tools.html#a55868847c0ef334611f3ffa71a64619e',1,'audio_tools::defaultPWMAudioOutputCallback()']]],
- ['defaultsynthesizerchannel_2151',['DefaultSynthesizerChannel',['../classaudio__tools_1_1_default_synthesizer_channel.html#a17bc5cf42632c3b60d88ad9f017ceb6e',1,'audio_tools::DefaultSynthesizerChannel::DefaultSynthesizerChannel()=default'],['../classaudio__tools_1_1_default_synthesizer_channel.html#acbc0aecded2f64493e23bdf390501f51',1,'audio_tools::DefaultSynthesizerChannel::DefaultSynthesizerChannel(DefaultSynthesizerChannel &ch)=default']]],
- ['del_2152',['del',['../classaudio__tools_1_1_http_request.html#af8cd2e3982f338b00a0ec7e4b6733728',1,'audio_tools::HttpRequest']]],
- ['delay_2153',['Delay',['../classaudio__tools_1_1_delay.html#a08a40da972e55ecd4498328ba78b4eaf',1,'audio_tools::Delay']]],
- ['delay_2154',['delay',['../namespaceaudio__tools.html#a504241b61d3595ad9356f8fccef71c20',1,'audio_tools']]],
- ['delayeffectbase_2155',['DelayEffectBase',['../classaudio__tools_1_1_delay_effect_base.html#ade1e18b102a83c30f8b850bd3f17df9d',1,'audio_tools::DelayEffectBase']]],
- ['delaysample_2156',['delaySample',['../classaudio__tools_1_1_delay_effect_base.html#ac667f23b583721b9191a881fd25cc817',1,'audio_tools::DelayEffectBase']]],
- ['delayvideoframe_2157',['delayVideoFrame',['../classaudio__tools_1_1_video_audio_buffered_sync.html#ab185a032a2de20c9a22b393096dcee76',1,'audio_tools::VideoAudioBufferedSync::delayVideoFrame()'],['../classaudio__tools_1_1_video_audio_sync.html#a82d0d8428e0c5ffb4049739d01ac753a',1,'audio_tools::VideoAudioSync::delayVideoFrame()']]],
- ['deleteoldrecords_2158',['deleteOldRecords',['../classaudio__tools_1_1_tf_lite_micro_speech_recognize_commands.html#a311d1bc7b9336d5db6f2701831a22cce',1,'audio_tools::TfLiteMicroSpeechRecognizeCommands']]],
- ['delimiter_2159',['delimiter',['../classaudio__tools_1_1_csv_output.html#ab75ed2e3a626c991e9e225cb298e3609',1,'audio_tools::CsvOutput']]],
- ['destroy_2160',['destroy',['../classdsp__memory__manager.html#a105a00e96586f86c11e457b26ffa588f',1,'dsp_memory_manager']]],
- ['digitalread_2161',['digitalRead',['../_no_arduino_8h.html#ae1e3d979645a535a8ce49f935392d8bc',1,'NoArduino.h']]],
- ['display_2162',['display',['../classaudio__tools_1_1_l_e_d_output.html#a1e5b20fed15743656bb6d2e6a6ea6269',1,'audio_tools::LEDOutput::display()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a1e5b20fed15743656bb6d2e6a6ea6269',1,'audio_tools::LEDOutputUnoR4::display()']]],
- ['distortion_2163',['Distortion',['../classaudio__tools_1_1_distortion.html#a30cd5fedc5a0cda1b3a290f45ccb004d',1,'audio_tools::Distortion']]],
- ['doloop_2164',['doLoop',['../classaudio__tools_1_1_audio_server.html#abdd99e468f667b748b0c9bfd395163d7',1,'audio_tools::AudioServer']]],
- ['driver_2165',['driver',['../classaudio__tools_1_1_analog_audio_stream.html#ab8bcb0b11d13b5c5bc739c6f759bf8cc',1,'audio_tools::AnalogAudioStream::driver()'],['../classaudio__tools_1_1_i2_s_stream.html#a689451e34493ddc13d4f8456089df1a5',1,'audio_tools::I2SStream::driver()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#ad360e5c2be36d28d74715e70f31a9f98',1,'audio_tools::AudioFFTBase::driver()'],['../classaudio__tools_1_1_p_w_m_audio_output.html#a4abfe5871953c2b0a3c3fb64b56368c5',1,'audio_tools::PWMAudioOutput::driver()'],['../classaudio__tools_1_1_timer_alarm_repeating.html#a13ccc53ef2743d6add288d2d644f6bf3',1,'audio_tools::TimerAlarmRepeating::driver()']]]
+ ['data_2138',['data',['../classaudio__tools_1_1_single_buffer.html#a1699472936b80a88d3fc8096975d21b2',1,'audio_tools::SingleBuffer::data()'],['../classaudio__tools_1_1_slice.html#a1699472936b80a88d3fc8096975d21b2',1,'audio_tools::Slice::data()']]],
+ ['dataarray_2139',['dataArray',['../classaudio__tools_1_1_audio_kiss_f_f_t.html#a43c6d95f5f877b6958d5625bb91593fb',1,'audio_tools::AudioKissFFT::dataArray()'],['../classaudio__tools_1_1_audio_espressif_f_f_t.html#a3ab68b0efd4737f9d467c0767efdeded',1,'audio_tools::AudioEspressifFFT::dataArray()']]],
+ ['datanode_2140',['DataNode',['../structaudio__tools_1_1_dynamic_memory_stream_1_1_data_node.html#a291f181d7085deac74711e35106a5ff4',1,'audio_tools::DynamicMemoryStream::DataNode']]],
+ ['debounce_2141',['debounce',['../classaudio__tools_1_1_debouncer.html#add1855eb9494720e78650a34d4b209f9',1,'audio_tools::Debouncer']]],
+ ['decimation_2142',['decimation',['../classaudio__tools_1_1_driver_p_w_m_base.html#ab384cb1f6477fbea20479be533e2c9ec',1,'audio_tools::DriverPWMBase::decimation()'],['../classaudio__tools_1_1_p_w_m_driver_renesas.html#ad156409972690be7326305843a75a137',1,'audio_tools::PWMDriverRenesas::decimation()']]],
+ ['decode_2143',['decode',['../classaudio__tools_1_1_m_p3_decoder_mini.html#ae5f4be3ed9889ce9be7fcd69f0668e34',1,'audio_tools::MP3DecoderMini::decode()'],['../classaudio__tools_1_1_container_m_p4.html#adad9b4faff502c052c0d14005f33390b',1,'audio_tools::ContainerMP4::decode()']]],
+ ['decodemetadata_2144',['decodeMetaData',['../classaudio__tools_1_1_audio_player.html#a061d2503580a033bd7c9e7edfc7df838',1,'audio_tools::AudioPlayer']]],
+ ['decoder_2145',['decoder',['../classaudio__tools_1_1_encoded_audio_output.html#a11f7ddac5cfa81a408fd32a35875db47',1,'audio_tools::EncodedAudioOutput']]],
+ ['decoderbase64_2146',['DecoderBase64',['../classaudio__tools_1_1_decoder_base64.html#abba0530ed589348b1efe110a116608c0',1,'audio_tools::DecoderBase64::DecoderBase64(Print &out)'],['../classaudio__tools_1_1_decoder_base64.html#a921e83cf581fdc1da5fd8523dd70ae39',1,'audio_tools::DecoderBase64::DecoderBase64()']]],
+ ['decoderbasic_2147',['DecoderBasic',['../classaudio__tools_1_1_decoder_basic.html#a0c68abf5a699fc57eb5a97bb83197bef',1,'audio_tools::DecoderBasic::DecoderBasic()'],['../classaudio__tools_1_1_decoder_basic.html#a60208fd31bb7247372be8ebdf3b30778',1,'audio_tools::DecoderBasic::DecoderBasic(Print &out_stream, bool active=true)'],['../classaudio__tools_1_1_decoder_basic.html#af39b476160b6c64c6a7457896c58340e',1,'audio_tools::DecoderBasic::DecoderBasic(Print &out_stream, AudioInfoSupport &bi)']]],
+ ['decoderfloat_2148',['DecoderFloat',['../classaudio__tools_1_1_decoder_float.html#a52ffd315745e877211eda5bcdba3aeba',1,'audio_tools::DecoderFloat::DecoderFloat()'],['../classaudio__tools_1_1_decoder_float.html#ab6d4f45f8982babb5244c20144b2a4f1',1,'audio_tools::DecoderFloat::DecoderFloat(Print &out_stream, bool active=true)'],['../classaudio__tools_1_1_decoder_float.html#a8ea88d37e15daae590c27c9f870ae146',1,'audio_tools::DecoderFloat::DecoderFloat(Print &out_stream, AudioInfoSupport &bi)']]],
+ ['decoderl16_2149',['DecoderL16',['../classaudio__tools_1_1_decoder_l16.html#a832f915dec149398faaf60750df3e064',1,'audio_tools::DecoderL16::DecoderL16(Print &out_stream, AudioInfoSupport &bi)'],['../classaudio__tools_1_1_decoder_l16.html#a872f348018ac776926bfda76fbba5160',1,'audio_tools::DecoderL16::DecoderL16(Print &out_stream, bool active=true)'],['../classaudio__tools_1_1_decoder_l16.html#a9e40c832d9e74ba24703fea281b7b199',1,'audio_tools::DecoderL16::DecoderL16()']]],
+ ['decoderl8_2150',['DecoderL8',['../classaudio__tools_1_1_decoder_l8.html#afe56dd630e1c6b569f2cf9ff1353ff7f',1,'audio_tools::DecoderL8::DecoderL8(bool isSigned=false)'],['../classaudio__tools_1_1_decoder_l8.html#a9b8fd0691c7d2d970f82313be5c74241',1,'audio_tools::DecoderL8::DecoderL8(Print &out_stream, bool active=true)'],['../classaudio__tools_1_1_decoder_l8.html#a1601a5fb7baa9f58dffbc5aa8ab1db8e',1,'audio_tools::DecoderL8::DecoderL8(Print &out_stream, AudioInfoSupport &bi)']]],
+ ['default_5fdata_5fcallback_2151',['default_data_callback',['../classaudio__tools_1_1_container_m_p4.html#a999cf9e39e4f5ed3da49f68ee50e61b5',1,'audio_tools::ContainerMP4']]],
+ ['default_5fis_5fheader_5fcallback_2152',['default_is_header_callback',['../classaudio__tools_1_1_container_m_p4.html#ac19a34fbe54daa32498f582f1f4b1778',1,'audio_tools::ContainerMP4']]],
+ ['defaultconfig_2153',['defaultConfig',['../classaudio__tools_1_1_l_e_d_output.html#aaba1380b847be94f1cb6428ed68efb37',1,'audio_tools::LEDOutput::defaultConfig()'],['../classaudio__tools_1_1_r_t_s_p_format_audio_tools.html#ad7bf7c93ebcce49daec84761d55b5587',1,'audio_tools::RTSPFormatAudioTools::defaultConfig()'],['../classaudio__tools_1_1_r_t_s_p_format_opus.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::RTSPFormatOpus::defaultConfig()'],['../classaudio__tools_1_1_r_t_s_p_format_abt_x.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::RTSPFormatAbtX::defaultConfig()'],['../classaudio__tools_1_1_r_t_s_p_format_g_s_m.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::RTSPFormatGSM::defaultConfig()'],['../classaudio__tools_1_1_r_t_s_p_format_g711.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::RTSPFormatG711::defaultConfig()'],['../classaudio__tools_1_1_r_t_s_p_format_p_c_m.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::RTSPFormatPCM::defaultConfig()'],['../classaudio__tools_1_1_r_t_s_p_format_p_c_m8.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::RTSPFormatPCM8::defaultConfig()'],['../classaudio__tools_1_1_csv_output.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::CsvOutput::defaultConfig()'],['../classaudio__tools_1_1_s_p_d_i_f_output.html#a4c9c41e75e159fa1bd88ab194dae85f8',1,'audio_tools::SPDIFOutput::defaultConfig()'],['../classaudio__tools_1_1_timer_callback_audio_stream.html#a575242c29642bac1b68da9660ede35a1',1,'audio_tools::TimerCallbackAudioStream::defaultConfig()'],['../classaudio__tools_1_1_resample_stream.html#af52118d79bafb3eefdd7e6138f15b9e7',1,'audio_tools::ResampleStream::defaultConfig()'],['../classaudio__tools_1_1_s_t_k_generator.html#a80e4660b5bd60cf09803f81e3e443644',1,'audio_tools::STKGenerator::defaultConfig()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#ab865c67526dd06c245d082b9cf5af561',1,'audio_tools::LEDOutputUnoR4::defaultConfig()'],['../classaudio__tools_1_1_analog_audio_stream.html#ac4b262f441e13eb8054c879d9dd57edd',1,'audio_tools::AnalogAudioStream::defaultConfig()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32.html#a8336a067ed98f798b5fe70512aa161d5',1,'audio_tools::I2SDriverESP32::defaultConfig()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#a8336a067ed98f798b5fe70512aa161d5',1,'audio_tools::I2SDriverESP32V1::defaultConfig()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#a8336a067ed98f798b5fe70512aa161d5',1,'audio_tools::I2SDriverESP8266::defaultConfig()'],['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a8336a067ed98f798b5fe70512aa161d5',1,'audio_tools::I2SDriverNanoBLE::defaultConfig()'],['../classaudio__tools_1_1_i2_s_driver_s_a_m_d.html#a8336a067ed98f798b5fe70512aa161d5',1,'audio_tools::I2SDriverSAMD::defaultConfig()'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#a72661c546cdee7de3302d7d3fda10332',1,'audio_tools::I2SDriverSTM32::defaultConfig()'],['../classaudio__tools_1_1_i2_s_stream.html#a72661c546cdee7de3302d7d3fda10332',1,'audio_tools::I2SStream::defaultConfig()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#ae9a3bb7e3a6034fc0dd9249499701aff',1,'audio_tools::AudioFFTBase::defaultConfig()'],['../classaudio__tools_1_1_audio_kit_stream.html#a8e62ff0b232f96ea37ca156e2e6108c2',1,'audio_tools::AudioKitStream::defaultConfig()']]],
+ ['defaultpwmaudiooutputcallback_2154',['defaultPWMAudioOutputCallback',['../classaudio__tools_1_1_p_w_m_driver_m_b_e_d.html#afba856d7d0cf53662bb1432aaaa69ddd',1,'audio_tools::PWMDriverMBED::defaultPWMAudioOutputCallback()'],['../classaudio__tools_1_1_p_w_m_driver_renesas.html#afba856d7d0cf53662bb1432aaaa69ddd',1,'audio_tools::PWMDriverRenesas::defaultPWMAudioOutputCallback()'],['../classaudio__tools_1_1_p_w_m_driver_s_t_m32.html#afba856d7d0cf53662bb1432aaaa69ddd',1,'audio_tools::PWMDriverSTM32::defaultPWMAudioOutputCallback()'],['../namespaceaudio__tools.html#a55868847c0ef334611f3ffa71a64619e',1,'audio_tools::defaultPWMAudioOutputCallback()']]],
+ ['defaultsynthesizerchannel_2155',['DefaultSynthesizerChannel',['../classaudio__tools_1_1_default_synthesizer_channel.html#a17bc5cf42632c3b60d88ad9f017ceb6e',1,'audio_tools::DefaultSynthesizerChannel::DefaultSynthesizerChannel()=default'],['../classaudio__tools_1_1_default_synthesizer_channel.html#acbc0aecded2f64493e23bdf390501f51',1,'audio_tools::DefaultSynthesizerChannel::DefaultSynthesizerChannel(DefaultSynthesizerChannel &ch)=default']]],
+ ['del_2156',['del',['../classaudio__tools_1_1_http_request.html#af8cd2e3982f338b00a0ec7e4b6733728',1,'audio_tools::HttpRequest']]],
+ ['delay_2157',['Delay',['../classaudio__tools_1_1_delay.html#a08a40da972e55ecd4498328ba78b4eaf',1,'audio_tools::Delay']]],
+ ['delay_2158',['delay',['../namespaceaudio__tools.html#a504241b61d3595ad9356f8fccef71c20',1,'audio_tools']]],
+ ['delayeffectbase_2159',['DelayEffectBase',['../classaudio__tools_1_1_delay_effect_base.html#ade1e18b102a83c30f8b850bd3f17df9d',1,'audio_tools::DelayEffectBase']]],
+ ['delaysample_2160',['delaySample',['../classaudio__tools_1_1_delay_effect_base.html#ac667f23b583721b9191a881fd25cc817',1,'audio_tools::DelayEffectBase']]],
+ ['delayvideoframe_2161',['delayVideoFrame',['../classaudio__tools_1_1_video_audio_buffered_sync.html#ab185a032a2de20c9a22b393096dcee76',1,'audio_tools::VideoAudioBufferedSync::delayVideoFrame()'],['../classaudio__tools_1_1_video_audio_sync.html#a82d0d8428e0c5ffb4049739d01ac753a',1,'audio_tools::VideoAudioSync::delayVideoFrame()']]],
+ ['deleteoldrecords_2162',['deleteOldRecords',['../classaudio__tools_1_1_tf_lite_micro_speech_recognize_commands.html#a311d1bc7b9336d5db6f2701831a22cce',1,'audio_tools::TfLiteMicroSpeechRecognizeCommands']]],
+ ['delimiter_2163',['delimiter',['../classaudio__tools_1_1_csv_output.html#ab75ed2e3a626c991e9e225cb298e3609',1,'audio_tools::CsvOutput']]],
+ ['destroy_2164',['destroy',['../classdsp__memory__manager.html#a105a00e96586f86c11e457b26ffa588f',1,'dsp_memory_manager']]],
+ ['digitalread_2165',['digitalRead',['../_no_arduino_8h.html#ae1e3d979645a535a8ce49f935392d8bc',1,'NoArduino.h']]],
+ ['display_2166',['display',['../classaudio__tools_1_1_l_e_d_output.html#a1e5b20fed15743656bb6d2e6a6ea6269',1,'audio_tools::LEDOutput::display()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a1e5b20fed15743656bb6d2e6a6ea6269',1,'audio_tools::LEDOutputUnoR4::display()']]],
+ ['distortion_2167',['Distortion',['../classaudio__tools_1_1_distortion.html#a30cd5fedc5a0cda1b3a290f45ccb004d',1,'audio_tools::Distortion']]],
+ ['doloop_2168',['doLoop',['../classaudio__tools_1_1_audio_server.html#abdd99e468f667b748b0c9bfd395163d7',1,'audio_tools::AudioServer']]],
+ ['driver_2169',['driver',['../classaudio__tools_1_1_analog_audio_stream.html#ab8bcb0b11d13b5c5bc739c6f759bf8cc',1,'audio_tools::AnalogAudioStream::driver()'],['../classaudio__tools_1_1_i2_s_stream.html#a689451e34493ddc13d4f8456089df1a5',1,'audio_tools::I2SStream::driver()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#ad360e5c2be36d28d74715e70f31a9f98',1,'audio_tools::AudioFFTBase::driver()'],['../classaudio__tools_1_1_p_w_m_audio_output.html#a4abfe5871953c2b0a3c3fb64b56368c5',1,'audio_tools::PWMAudioOutput::driver()'],['../classaudio__tools_1_1_timer_alarm_repeating.html#a13ccc53ef2743d6add288d2d644f6bf3',1,'audio_tools::TimerAlarmRepeating::driver()']]]
];
diff --git a/search/functions_5.js b/search/functions_5.js
index 37c4e446d2..98e3df6064 100644
--- a/search/functions_5.js
+++ b/search/functions_5.js
@@ -1,18 +1,18 @@
var searchData=
[
- ['effectiveoutputsamplerate_2166',['effectiveOutputSampleRate',['../classaudio__tools_1_1_driver_p_w_m_base.html#a13eb726740a261b50f38fb0301812631',1,'audio_tools::DriverPWMBase::effectiveOutputSampleRate()'],['../classaudio__tools_1_1_analog_driver_arduino.html#a4aee67299e632d4905756d880e072a71',1,'audio_tools::AnalogDriverArduino::effectiveOutputSampleRate()']]],
- ['encoder_2167',['encoder',['../classaudio__tools_1_1_encoded_audio_output.html#a1772c3a009a751e5eceb43fedb0c6c43',1,'audio_tools::EncodedAudioOutput']]],
- ['encodingissupported_2168',['encodingIsSupported',['../classaudio__tools_1_1_meta_data_i_d3_v2.html#a418b7e3ade4f63e8fbf532a3ea86ee45',1,'audio_tools::MetaDataID3V2']]],
- ['end_2169',['end',['../classaudio__tools_1_1_w_m8960_stream.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::WM8960Stream::end()'],['../classaudio__tools_1_1_i_c_y_stream.html#ae827632720ddd6f3037ef1ee69aa3f41',1,'audio_tools::ICYStream::end()'],['../classaudio__tools_1_1_v_s1053_stream.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::VS1053Stream::end()'],['../classaudio__tools_1_1_e_s_p_now_stream.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::ESPNowStream::end()'],['../classaudio__tools_1_1_audio_kit_stream.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::AudioKitStream::end()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::AudioFFTBase::end()'],['../classdsp__memory__manager.html#adc34417a19a7b70626d19c41072d72a5',1,'dsp_memory_manager::end()'],['../classaudio__tools_1_1_faust_stream.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::FaustStream::end()'],['../classaudio__tools_1_1_i2_s_stream.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::I2SStream::end()'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::I2SDriverSTM32::end()'],['../classaudio__tools_1_1_i2_s_driver_s_a_m_d.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::I2SDriverSAMD::end()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::I2SDriverESP8266::end()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::I2SDriverESP32V1::end()'],['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::I2SDriverNanoBLE::end()'],['../classaudio__tools_1_1_meta_data_i_c_y.html#ae827632720ddd6f3037ef1ee69aa3f41',1,'audio_tools::MetaDataICY::end()'],['../classaudio__tools_1_1_meta_data_i_d3_v1.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::MetaDataID3V1::end()'],['../classaudio__tools_1_1_meta_data_i_d3_v2.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::MetaDataID3V2::end()'],['../classaudio__tools_1_1_timer_alarm_repeating_driver_renesas.html#af545ab12986d2fe462f1013c3bafb5f3',1,'audio_tools::TimerAlarmRepeatingDriverRenesas::end()'],['../classaudio__tools_1_1_output_mixer.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::OutputMixer::end()'],['../classaudio__tools_1_1_on_off_output.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::OnOffOutput::end()'],['../classaudio__tools_1_1_generated_sound_stream.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::GeneratedSoundStream::end()'],['../classaudio__tools_1_1_queue_stream.html#ae827632720ddd6f3037ef1ee69aa3f41',1,'audio_tools::QueueStream::end()'],['../classaudio__tools_1_1_input_mixer.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::InputMixer::end()'],['../classaudio__tools_1_1_input_merge.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::InputMerge::end()'],['../classaudio__tools_1_1_timer_callback_audio_stream.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::TimerCallbackAudioStream::end()'],['../classaudio__tools_1_1_last_sample_fader_t.html#a1891b4bec7e479ab636081eaae8a206d',1,'audio_tools::LastSampleFaderT::end()'],['../classaudio__tools_1_1_last_sample_fader.html#a1891b4bec7e479ab636081eaae8a206d',1,'audio_tools::LastSampleFader::end()'],['../classaudio__tools_1_1_stream_copy_t.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::StreamCopyT::end()'],['../classaudio__tools_1_1_h_l_s_parser.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::HLSParser::end()'],['../classaudio__tools_1_1_analog_audio_stream.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::AnalogAudioStream::end()'],['../classaudio__tools_1_1_analog_driver_e_s_p32.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::AnalogDriverESP32::end()'],['../classaudio__tools_1_1_analog_driver_e_s_p32_v1.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::AnalogDriverESP32V1::end()'],['../classaudio__tools_1_1_analog_driver_m_b_e_d.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::AnalogDriverMBED::end()'],['../classaudio__tools_1_1_streaming_decoder.html#aa540e86022c1f72380d1014d98f38f43',1,'audio_tools::StreamingDecoder::end()'],['../classaudio__tools_1_1_encoded_audio_output.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::EncodedAudioOutput::end()'],['../classaudio__tools_1_1_a_a_c_decoder_f_a_a_d.html#adc34417a19a7b70626d19c41072d72a5',1,'audio_tools::AACDecoderFAAD::end()'],['../classaudio__tools_1_1_a_a_c_decoder_helix.html#ae827632720ddd6f3037ef1ee69aa3f41',1,'audio_tools::AACDecoderHelix::end()'],['../classaudio__tools_1_1_encoder_base64.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::EncoderBase64::end()'],['../classaudio__tools_1_1_encoder_basic.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::EncoderBasic::end()'],['../classaudio__tools_1_1_f_l_a_c_decoder.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::FLACDecoder::end()'],['../classaudio__tools_1_1_f_l_a_c_encoder.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::FLACEncoder::end()'],['../classaudio__tools_1_1_encoder_float.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::EncoderFloat::end()'],['../classaudio__tools_1_1_decoder_helix.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::DecoderHelix::end()'],['../classaudio__tools_1_1_encoder_l8.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::EncoderL8::end()'],['../classaudio__tools_1_1_http_header.html#a37f5b0b22e759383dce4a78ddd05a3d4',1,'audio_tools::HttpHeader::end()'],['../classaudio__tools_1_1_sound_generator.html#adc34417a19a7b70626d19c41072d72a5',1,'audio_tools::SoundGenerator::end()'],['../classaudio__tools_1_1_ogg_container_encoder.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::OggContainerEncoder::end()'],['../classaudio__tools_1_1_ogg_container_output.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::OggContainerOutput::end()'],['../classaudio__tools_1_1_container_m_p4.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::ContainerMP4::end()'],['../classaudio__tools_1_1_w_a_v_encoder.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::WAVEncoder::end()'],['../classaudio__tools_1_1_s_b_c_encoder.html#adc34417a19a7b70626d19c41072d72a5',1,'audio_tools::SBCEncoder::end()'],['../classaudio__tools_1_1_opus_audio_encoder.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::OpusAudioEncoder::end()'],['../classaudio__tools_1_1_m_p3_decoder_mini.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::MP3DecoderMini::end()'],['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::MP3DecoderMAD::end()'],['../classaudio__tools_1_1_m_p3_decoder_helix.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::MP3DecoderHelix::end()'],['../classaudio__tools_1_1_encoder_l16.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::EncoderL16::end()'],['../classaudio__tools_1_1_vorbis_decoder.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::VorbisDecoder::end()']]],
- ['endframe_2170',['endFrame',['../classaudio__tools_1_1_jpeg_open_c_v.html#a6045acdc41b4fc3d1b3d55a6ec60eadb',1,'audio_tools::JpegOpenCV::endFrame()'],['../classaudio__tools_1_1_jpeg_t_f_t.html#a6045acdc41b4fc3d1b3d55a6ec60eadb',1,'audio_tools::JpegTFT::endFrame()']]],
- ['endswith_2171',['endsWith',['../classaudio__tools_1_1_str.html#a36ea1ac4ff77d39eeed580726d77316e',1,'audio_tools::Str']]],
- ['endswithignorecase_2172',['endsWithIgnoreCase',['../classaudio__tools_1_1_str.html#ad2398aedf2b539a7f37ae4c9130266ae',1,'audio_tools::Str']]],
- ['envelope_2173',['envelope',['../classaudio__tools_1_1_filter_effect_base.html#a7853ad48a9c41a7e1a9fd1294426b3e7',1,'audio_tools::FilterEffectBase']]],
- ['envelopefilter_2174',['EnvelopeFilter',['../classaudio__tools_1_1_envelope_filter.html#a9d9070a81ff12576f6b4aa853e7c5dd2',1,'audio_tools::EnvelopeFilter']]],
- ['equals_2175',['equals',['../classaudio__tools_1_1_str.html#a121dcd3a7cd975ef3aae9fe71ae7fa3c',1,'audio_tools::Str']]],
- ['equalsignorecase_2176',['equalsIgnoreCase',['../classaudio__tools_1_1_str.html#a4e7ea003fddd17648db4b62572e93b8d',1,'audio_tools::Str']]],
- ['error_5fcallback_2177',['error_callback',['../classaudio__tools_1_1_f_l_a_c_decoder.html#ae0a385215d06bca05d1212caa0d0fa23',1,'audio_tools::FLACDecoder']]],
- ['evaluate_2178',['evaluate',['../classaudio__tools_1_1_tf_lite_micro_speech_recognize_commands.html#a181badeaa9a17a4c8e58d54bf6f6e105',1,'audio_tools::TfLiteMicroSpeechRecognizeCommands']]],
- ['executecallback_2179',['executeCallback',['../classaudio__tools_1_1_i_c_y_url_setup.html#aa338f5db0a886ca8ebd39680c5566246',1,'audio_tools::ICYUrlSetup']]],
- ['exists_2180',['exists',['../class_u_i.html#a33e750cdf3390bcf14077e72fa3c3744',1,'UI']]]
+ ['effectiveoutputsamplerate_2170',['effectiveOutputSampleRate',['../classaudio__tools_1_1_driver_p_w_m_base.html#a13eb726740a261b50f38fb0301812631',1,'audio_tools::DriverPWMBase::effectiveOutputSampleRate()'],['../classaudio__tools_1_1_analog_driver_arduino.html#a4aee67299e632d4905756d880e072a71',1,'audio_tools::AnalogDriverArduino::effectiveOutputSampleRate()']]],
+ ['encoder_2171',['encoder',['../classaudio__tools_1_1_encoded_audio_output.html#a1772c3a009a751e5eceb43fedb0c6c43',1,'audio_tools::EncodedAudioOutput']]],
+ ['encodingissupported_2172',['encodingIsSupported',['../classaudio__tools_1_1_meta_data_i_d3_v2.html#a418b7e3ade4f63e8fbf532a3ea86ee45',1,'audio_tools::MetaDataID3V2']]],
+ ['end_2173',['end',['../classaudio__tools_1_1_v_s1053_stream.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::VS1053Stream::end()'],['../classaudio__tools_1_1_i_c_y_stream.html#ae827632720ddd6f3037ef1ee69aa3f41',1,'audio_tools::ICYStream::end()'],['../classaudio__tools_1_1_e_s_p_now_stream.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::ESPNowStream::end()'],['../classaudio__tools_1_1_audio_kit_stream.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::AudioKitStream::end()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::AudioFFTBase::end()'],['../classdsp__memory__manager.html#adc34417a19a7b70626d19c41072d72a5',1,'dsp_memory_manager::end()'],['../classaudio__tools_1_1_faust_stream.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::FaustStream::end()'],['../classaudio__tools_1_1_i2_s_stream.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::I2SStream::end()'],['../classaudio__tools_1_1_i2_s_driver_s_t_m32.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::I2SDriverSTM32::end()'],['../classaudio__tools_1_1_i2_s_driver_s_a_m_d.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::I2SDriverSAMD::end()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p8266.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::I2SDriverESP8266::end()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32_v1.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::I2SDriverESP32V1::end()'],['../classaudio__tools_1_1_i2_s_driver_e_s_p32.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::I2SDriverESP32::end()'],['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::I2SDriverNanoBLE::end()'],['../classaudio__tools_1_1_w_m8960_stream.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::WM8960Stream::end()'],['../classaudio__tools_1_1_meta_data_i_c_y.html#ae827632720ddd6f3037ef1ee69aa3f41',1,'audio_tools::MetaDataICY::end()'],['../classaudio__tools_1_1_meta_data_i_d3_v1.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::MetaDataID3V1::end()'],['../classaudio__tools_1_1_meta_data_i_d3_v2.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::MetaDataID3V2::end()'],['../classaudio__tools_1_1_timer_alarm_repeating_driver_renesas.html#af545ab12986d2fe462f1013c3bafb5f3',1,'audio_tools::TimerAlarmRepeatingDriverRenesas::end()'],['../classaudio__tools_1_1_output_mixer.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::OutputMixer::end()'],['../classaudio__tools_1_1_on_off_output.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::OnOffOutput::end()'],['../classaudio__tools_1_1_generated_sound_stream.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::GeneratedSoundStream::end()'],['../classaudio__tools_1_1_queue_stream.html#ae827632720ddd6f3037ef1ee69aa3f41',1,'audio_tools::QueueStream::end()'],['../classaudio__tools_1_1_input_mixer.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::InputMixer::end()'],['../classaudio__tools_1_1_input_merge.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::InputMerge::end()'],['../classaudio__tools_1_1_timer_callback_audio_stream.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::TimerCallbackAudioStream::end()'],['../classaudio__tools_1_1_last_sample_fader_t.html#a1891b4bec7e479ab636081eaae8a206d',1,'audio_tools::LastSampleFaderT::end()'],['../classaudio__tools_1_1_last_sample_fader.html#a1891b4bec7e479ab636081eaae8a206d',1,'audio_tools::LastSampleFader::end()'],['../classaudio__tools_1_1_stream_copy_t.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::StreamCopyT::end()'],['../classaudio__tools_1_1_h_l_s_parser.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::HLSParser::end()'],['../classaudio__tools_1_1_analog_audio_stream.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::AnalogAudioStream::end()'],['../classaudio__tools_1_1_analog_driver_e_s_p32.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::AnalogDriverESP32::end()'],['../classaudio__tools_1_1_analog_driver_e_s_p32_v1.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::AnalogDriverESP32V1::end()'],['../classaudio__tools_1_1_analog_driver_m_b_e_d.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::AnalogDriverMBED::end()'],['../classaudio__tools_1_1_streaming_decoder.html#aa540e86022c1f72380d1014d98f38f43',1,'audio_tools::StreamingDecoder::end()'],['../classaudio__tools_1_1_encoded_audio_output.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::EncodedAudioOutput::end()'],['../classaudio__tools_1_1_a_a_c_decoder_f_a_a_d.html#adc34417a19a7b70626d19c41072d72a5',1,'audio_tools::AACDecoderFAAD::end()'],['../classaudio__tools_1_1_a_a_c_decoder_helix.html#ae827632720ddd6f3037ef1ee69aa3f41',1,'audio_tools::AACDecoderHelix::end()'],['../classaudio__tools_1_1_encoder_base64.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::EncoderBase64::end()'],['../classaudio__tools_1_1_encoder_basic.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::EncoderBasic::end()'],['../classaudio__tools_1_1_f_l_a_c_decoder.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::FLACDecoder::end()'],['../classaudio__tools_1_1_f_l_a_c_encoder.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::FLACEncoder::end()'],['../classaudio__tools_1_1_encoder_float.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::EncoderFloat::end()'],['../classaudio__tools_1_1_decoder_helix.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::DecoderHelix::end()'],['../classaudio__tools_1_1_encoder_l8.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::EncoderL8::end()'],['../classaudio__tools_1_1_http_header.html#a37f5b0b22e759383dce4a78ddd05a3d4',1,'audio_tools::HttpHeader::end()'],['../classaudio__tools_1_1_sound_generator.html#adc34417a19a7b70626d19c41072d72a5',1,'audio_tools::SoundGenerator::end()'],['../classaudio__tools_1_1_ogg_container_encoder.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::OggContainerEncoder::end()'],['../classaudio__tools_1_1_ogg_container_output.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::OggContainerOutput::end()'],['../classaudio__tools_1_1_container_m_p4.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::ContainerMP4::end()'],['../classaudio__tools_1_1_w_a_v_encoder.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::WAVEncoder::end()'],['../classaudio__tools_1_1_s_b_c_encoder.html#adc34417a19a7b70626d19c41072d72a5',1,'audio_tools::SBCEncoder::end()'],['../classaudio__tools_1_1_opus_audio_encoder.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::OpusAudioEncoder::end()'],['../classaudio__tools_1_1_m_p3_decoder_mini.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::MP3DecoderMini::end()'],['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::MP3DecoderMAD::end()'],['../classaudio__tools_1_1_m_p3_decoder_helix.html#aaf81d3fdaf258088d7692fa70cece087',1,'audio_tools::MP3DecoderHelix::end()'],['../classaudio__tools_1_1_encoder_l16.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::EncoderL16::end()'],['../classaudio__tools_1_1_vorbis_decoder.html#a64e9fa75beda50a9e8400ee0d4e61984',1,'audio_tools::VorbisDecoder::end()']]],
+ ['endframe_2174',['endFrame',['../classaudio__tools_1_1_jpeg_open_c_v.html#a6045acdc41b4fc3d1b3d55a6ec60eadb',1,'audio_tools::JpegOpenCV::endFrame()'],['../classaudio__tools_1_1_jpeg_t_f_t.html#a6045acdc41b4fc3d1b3d55a6ec60eadb',1,'audio_tools::JpegTFT::endFrame()']]],
+ ['endswith_2175',['endsWith',['../classaudio__tools_1_1_str.html#a36ea1ac4ff77d39eeed580726d77316e',1,'audio_tools::Str']]],
+ ['endswithignorecase_2176',['endsWithIgnoreCase',['../classaudio__tools_1_1_str.html#ad2398aedf2b539a7f37ae4c9130266ae',1,'audio_tools::Str']]],
+ ['envelope_2177',['envelope',['../classaudio__tools_1_1_filter_effect_base.html#a7853ad48a9c41a7e1a9fd1294426b3e7',1,'audio_tools::FilterEffectBase']]],
+ ['envelopefilter_2178',['EnvelopeFilter',['../classaudio__tools_1_1_envelope_filter.html#a9d9070a81ff12576f6b4aa853e7c5dd2',1,'audio_tools::EnvelopeFilter']]],
+ ['equals_2179',['equals',['../classaudio__tools_1_1_str.html#a121dcd3a7cd975ef3aae9fe71ae7fa3c',1,'audio_tools::Str']]],
+ ['equalsignorecase_2180',['equalsIgnoreCase',['../classaudio__tools_1_1_str.html#a4e7ea003fddd17648db4b62572e93b8d',1,'audio_tools::Str']]],
+ ['error_5fcallback_2181',['error_callback',['../classaudio__tools_1_1_f_l_a_c_decoder.html#ae0a385215d06bca05d1212caa0d0fa23',1,'audio_tools::FLACDecoder']]],
+ ['evaluate_2182',['evaluate',['../classaudio__tools_1_1_tf_lite_micro_speech_recognize_commands.html#a181badeaa9a17a4c8e58d54bf6f6e105',1,'audio_tools::TfLiteMicroSpeechRecognizeCommands']]],
+ ['executecallback_2183',['executeCallback',['../classaudio__tools_1_1_i_c_y_url_setup.html#aa338f5db0a886ca8ebd39680c5566246',1,'audio_tools::ICYUrlSetup']]],
+ ['exists_2184',['exists',['../class_u_i.html#a33e750cdf3390bcf14077e72fa3c3744',1,'UI']]]
];
diff --git a/search/functions_6.js b/search/functions_6.js
index 216dd71172..db3a630032 100644
--- a/search/functions_6.js
+++ b/search/functions_6.js
@@ -1,28 +1,28 @@
var searchData=
[
- ['factor_2181',['factor',['../classaudio__tools_1_1_converter_scaler.html#aa5508d91dd2d2d117aa91578d0d2df9a',1,'audio_tools::ConverterScaler::factor()'],['../classaudio__tools_1_1_window_function.html#ac8161847fa3a2b56a5119bcf6964e1ff',1,'audio_tools::WindowFunction::factor()']]],
- ['fauststream_2182',['FaustStream',['../classaudio__tools_1_1_faust_stream.html#a87d378c81d61469e2b9780b1244ba140',1,'audio_tools::FaustStream::FaustStream(bool useSeparateOutputBuffer=true)'],['../classaudio__tools_1_1_faust_stream.html#a82221113a708cd20234ac05c1dcd8e0d',1,'audio_tools::FaustStream::FaustStream(Print &out, bool useSeparateOutputBuffer=true)']]],
- ['fftcallback_2183',['fftCallback',['../classaudio__tools_1_1_f_f_t_display.html#a7bdc13b501930dd228e4469fddfe7cdf',1,'audio_tools::FFTDisplay']]],
- ['fftdisplay_2184',['fftDisplay',['../classaudio__tools_1_1_l_e_d_output.html#a0c903e4f5408eee60896c234807c478b',1,'audio_tools::LEDOutput::fftDisplay()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a0c903e4f5408eee60896c234807c478b',1,'audio_tools::LEDOutputUnoR4::fftDisplay()']]],
- ['fftledoutput_2185',['fftLEDOutput',['../namespaceaudio__tools.html#a95b23c6de7556f7c41facc4fa6994c81',1,'audio_tools']]],
- ['fftledoutputunor4_2186',['fftLEDOutputUnoR4',['../namespaceaudio__tools.html#a31584fa887dbdd1545deb35f67d0e92a',1,'audio_tools']]],
- ['file_2187',['file',['../classaudio__tools_1_1_file_loop_t.html#a83cb66697faa40006801dea201bb7be5',1,'audio_tools::FileLoopT']]],
- ['filename_2188',['fileName',['../classaudio__tools_1_1_s_d_index.html#a4f4660f16bc1e2739434c45502e26db0',1,'audio_tools::SDIndex::fileName()'],['../classaudio__tools_1_1_s_d_direct.html#a4f4660f16bc1e2739434c45502e26db0',1,'audio_tools::SDDirect::fileName(FileT &file)']]],
- ['filenamepath_2189',['fileNamePath',['../classaudio__tools_1_1_s_d_direct.html#a4af7f4426e5bc375af02bc454ecb0dea',1,'audio_tools::SDDirect::fileNamePath()'],['../classaudio__tools_1_1_s_d_index.html#a4af7f4426e5bc375af02bc454ecb0dea',1,'audio_tools::SDIndex::fileNamePath()']]],
- ['filtereddelay_2190',['FilteredDelay',['../classaudio__tools_1_1_filtered_delay.html#a208abf3ff9a2bf2e9ce0ea2aa88d55f8',1,'audio_tools::FilteredDelay']]],
- ['filtereffectbase_2191',['FilterEffectBase',['../classaudio__tools_1_1_filter_effect_base.html#aa7c2b0d8390e793095079a28d111dd40',1,'audio_tools::FilterEffectBase']]],
- ['find_2192',['find',['../classaudio__tools_1_1_meta_data_filter.html#a6c5691819717efb0c6a96775b578b2e6',1,'audio_tools::MetaDataFilter']]],
- ['findeffect_2193',['findEffect',['../classaudio__tools_1_1_audio_effect_stream_t.html#ab74dd95287679b2bd45a7bb17fb05991',1,'audio_tools::AudioEffectStreamT::findEffect()'],['../classaudio__tools_1_1_audio_effect_common.html#ab74dd95287679b2bd45a7bb17fb05991',1,'audio_tools::AudioEffectCommon::findEffect()'],['../classaudio__tools_1_1_audio_effects.html#ab74dd95287679b2bd45a7bb17fb05991',1,'audio_tools::AudioEffects::findEffect()']]],
- ['findtag_2194',['findTag',['../classaudio__tools_1_1_meta_data_filter.html#aa5d50ca3ddc49de47baa1916c8862527',1,'audio_tools::MetaDataFilter::findTag()'],['../classaudio__tools_1_1_meta_data_i_d3_base.html#a6884754305d5834690f0d94a5be931d6',1,'audio_tools::MetaDataID3Base::findTag()']]],
- ['firstwrite_2195',['firstWrite',['../classaudio__tools_1_1_s_b_c_decoder.html#af56a4e53afd50b73ae5f26566118aa09',1,'audio_tools::SBCDecoder']]],
- ['float_5fto_5fhalf_2196',['float_to_half',['../classaudio__tools_1_1float16.html#ad8c8cf2d9621a737f43993cf29f4bbf9',1,'audio_tools::float16']]],
- ['floattostring_2197',['floatToString',['../classaudio__tools_1_1_str.html#a84ed111fd3a0268437c8e3cfe56cf1d6',1,'audio_tools::Str']]],
- ['flush_2198',['flush',['../classaudio__tools_1_1_buffered_task_stream.html#af654b48544c195ab99fe27e7bc3ed5fe',1,'audio_tools::BufferedTaskStream::flush()'],['../classaudio__tools_1_1_f_l_a_c_decoder.html#adac116554b543b7c4228c018a85882f5',1,'audio_tools::FLACDecoder::flush()'],['../classaudio__tools_1_1_m_p3_decoder_mini.html#adac116554b543b7c4228c018a85882f5',1,'audio_tools::MP3DecoderMini::flush()'],['../classaudio__tools_1_1_resample_stream.html#a04f2540d940cc37b5c2538ed8e5b54be',1,'audio_tools::ResampleStream::flush()'],['../classaudio__tools_1_1_i_c_y_stream_buffered.html#af654b48544c195ab99fe27e7bc3ed5fe',1,'audio_tools::ICYStreamBuffered::flush()'],['../classaudio__tools_1_1_buffered_stream.html#af654b48544c195ab99fe27e7bc3ed5fe',1,'audio_tools::BufferedStream::flush()']]],
- ['flushmixer_2199',['flushMixer',['../classaudio__tools_1_1_output_mixer.html#aa2299c86cec1b36ea50195df313dc05e',1,'audio_tools::OutputMixer']]],
- ['format_2200',['format',['../classaudio__tools_1_1_r_t_s_p_format_abt_x.html#a784939ec9a9f6985df7f11a3f1e29c7b',1,'audio_tools::RTSPFormatAbtX::format()'],['../classaudio__tools_1_1_r_t_s_p_format_g_s_m.html#a784939ec9a9f6985df7f11a3f1e29c7b',1,'audio_tools::RTSPFormatGSM::format()'],['../classaudio__tools_1_1_r_t_s_p_format_g711.html#a784939ec9a9f6985df7f11a3f1e29c7b',1,'audio_tools::RTSPFormatG711::format()'],['../classaudio__tools_1_1_r_t_s_p_format_p_c_m.html#a784939ec9a9f6985df7f11a3f1e29c7b',1,'audio_tools::RTSPFormatPCM::format()'],['../classaudio__tools_1_1_r_t_s_p_format_p_c_m8.html#a784939ec9a9f6985df7f11a3f1e29c7b',1,'audio_tools::RTSPFormatPCM8::format()'],['../classaudio__tools_1_1_r_t_s_p_format_opus.html#a784939ec9a9f6985df7f11a3f1e29c7b',1,'audio_tools::RTSPFormatOpus::format()'],['../classaudio__tools_1_1_r_t_s_p_format_audio_tools.html#ad7ad9bd7c66af8cbaff4226cf8de3631',1,'audio_tools::RTSPFormatAudioTools::format()']]],
- ['frameheader_2201',['frameHeader',['../classaudio__tools_1_1_meta_data_i_d3_v2.html#ae1934083da81d1032c842756b6cec27b',1,'audio_tools::MetaDataID3V2']]],
- ['framelength_2202',['frameLength',['../classaudio__tools_1_1_s_b_c_decoder.html#a8721dea59e7d446cb9566766c9a073b0',1,'audio_tools::SBCDecoder::frameLength()'],['../classaudio__tools_1_1_s_b_c_encoder.html#a8721dea59e7d446cb9566766c9a073b0',1,'audio_tools::SBCEncoder::frameLength()']]],
- ['frequency_2203',['frequency',['../classaudio__tools_1_1_audio_f_f_t_base.html#ab5f1f1bf50599707ea0172e5f65fc8dc',1,'audio_tools::AudioFFTBase::frequency()'],['../classaudio__tools_1_1_p_w_m_driver_e_s_p32.html#a630cb46e9a0636a8f424157ae3c13bf5',1,'audio_tools::PWMDriverESP32::frequency()'],['../classaudio__tools_1_1_musical_notes.html#a521b24b3a00360cbab29a003e14eaa99',1,'audio_tools::MusicalNotes::frequency(MusicalNotesEnum note, uint8_t octave)'],['../classaudio__tools_1_1_musical_notes.html#ae76b8ddf1b2e70224370b22f516643be',1,'audio_tools::MusicalNotes::frequency(uint16_t idx)']]],
- ['frequencytomidinote_2204',['frequencyToMidiNote',['../classaudio__tools_1_1_musical_notes.html#ac63e0b09fabb3b6d673024cdc4f0f1b6',1,'audio_tools::MusicalNotes']]],
- ['fuzz_2205',['Fuzz',['../classaudio__tools_1_1_fuzz.html#a36029f43e25bb0fae14d317621632c6a',1,'audio_tools::Fuzz']]]
+ ['factor_2185',['factor',['../classaudio__tools_1_1_converter_scaler.html#aa5508d91dd2d2d117aa91578d0d2df9a',1,'audio_tools::ConverterScaler::factor()'],['../classaudio__tools_1_1_window_function.html#ac8161847fa3a2b56a5119bcf6964e1ff',1,'audio_tools::WindowFunction::factor()']]],
+ ['fauststream_2186',['FaustStream',['../classaudio__tools_1_1_faust_stream.html#a87d378c81d61469e2b9780b1244ba140',1,'audio_tools::FaustStream::FaustStream(bool useSeparateOutputBuffer=true)'],['../classaudio__tools_1_1_faust_stream.html#a82221113a708cd20234ac05c1dcd8e0d',1,'audio_tools::FaustStream::FaustStream(Print &out, bool useSeparateOutputBuffer=true)']]],
+ ['fftcallback_2187',['fftCallback',['../classaudio__tools_1_1_f_f_t_display.html#a7bdc13b501930dd228e4469fddfe7cdf',1,'audio_tools::FFTDisplay']]],
+ ['fftdisplay_2188',['fftDisplay',['../classaudio__tools_1_1_l_e_d_output.html#a0c903e4f5408eee60896c234807c478b',1,'audio_tools::LEDOutput::fftDisplay()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a0c903e4f5408eee60896c234807c478b',1,'audio_tools::LEDOutputUnoR4::fftDisplay()']]],
+ ['fftledoutput_2189',['fftLEDOutput',['../namespaceaudio__tools.html#a95b23c6de7556f7c41facc4fa6994c81',1,'audio_tools']]],
+ ['fftledoutputunor4_2190',['fftLEDOutputUnoR4',['../namespaceaudio__tools.html#a31584fa887dbdd1545deb35f67d0e92a',1,'audio_tools']]],
+ ['file_2191',['file',['../classaudio__tools_1_1_file_loop_t.html#a83cb66697faa40006801dea201bb7be5',1,'audio_tools::FileLoopT']]],
+ ['filename_2192',['fileName',['../classaudio__tools_1_1_s_d_index.html#a4f4660f16bc1e2739434c45502e26db0',1,'audio_tools::SDIndex::fileName()'],['../classaudio__tools_1_1_s_d_direct.html#a4f4660f16bc1e2739434c45502e26db0',1,'audio_tools::SDDirect::fileName(FileT &file)']]],
+ ['filenamepath_2193',['fileNamePath',['../classaudio__tools_1_1_s_d_direct.html#a4af7f4426e5bc375af02bc454ecb0dea',1,'audio_tools::SDDirect::fileNamePath()'],['../classaudio__tools_1_1_s_d_index.html#a4af7f4426e5bc375af02bc454ecb0dea',1,'audio_tools::SDIndex::fileNamePath()']]],
+ ['filtereddelay_2194',['FilteredDelay',['../classaudio__tools_1_1_filtered_delay.html#a208abf3ff9a2bf2e9ce0ea2aa88d55f8',1,'audio_tools::FilteredDelay']]],
+ ['filtereffectbase_2195',['FilterEffectBase',['../classaudio__tools_1_1_filter_effect_base.html#aa7c2b0d8390e793095079a28d111dd40',1,'audio_tools::FilterEffectBase']]],
+ ['find_2196',['find',['../classaudio__tools_1_1_meta_data_filter.html#a6c5691819717efb0c6a96775b578b2e6',1,'audio_tools::MetaDataFilter']]],
+ ['findeffect_2197',['findEffect',['../classaudio__tools_1_1_audio_effect_stream_t.html#ab74dd95287679b2bd45a7bb17fb05991',1,'audio_tools::AudioEffectStreamT::findEffect()'],['../classaudio__tools_1_1_audio_effect_common.html#ab74dd95287679b2bd45a7bb17fb05991',1,'audio_tools::AudioEffectCommon::findEffect()'],['../classaudio__tools_1_1_audio_effects.html#ab74dd95287679b2bd45a7bb17fb05991',1,'audio_tools::AudioEffects::findEffect()']]],
+ ['findtag_2198',['findTag',['../classaudio__tools_1_1_meta_data_filter.html#aa5d50ca3ddc49de47baa1916c8862527',1,'audio_tools::MetaDataFilter::findTag()'],['../classaudio__tools_1_1_meta_data_i_d3_base.html#a6884754305d5834690f0d94a5be931d6',1,'audio_tools::MetaDataID3Base::findTag()']]],
+ ['firstwrite_2199',['firstWrite',['../classaudio__tools_1_1_s_b_c_decoder.html#af56a4e53afd50b73ae5f26566118aa09',1,'audio_tools::SBCDecoder']]],
+ ['float_5fto_5fhalf_2200',['float_to_half',['../classaudio__tools_1_1float16.html#ad8c8cf2d9621a737f43993cf29f4bbf9',1,'audio_tools::float16']]],
+ ['floattostring_2201',['floatToString',['../classaudio__tools_1_1_str.html#a84ed111fd3a0268437c8e3cfe56cf1d6',1,'audio_tools::Str']]],
+ ['flush_2202',['flush',['../classaudio__tools_1_1_buffered_task_stream.html#af654b48544c195ab99fe27e7bc3ed5fe',1,'audio_tools::BufferedTaskStream::flush()'],['../classaudio__tools_1_1_f_l_a_c_decoder.html#adac116554b543b7c4228c018a85882f5',1,'audio_tools::FLACDecoder::flush()'],['../classaudio__tools_1_1_m_p3_decoder_mini.html#adac116554b543b7c4228c018a85882f5',1,'audio_tools::MP3DecoderMini::flush()'],['../classaudio__tools_1_1_resample_stream.html#a04f2540d940cc37b5c2538ed8e5b54be',1,'audio_tools::ResampleStream::flush()'],['../classaudio__tools_1_1_i_c_y_stream_buffered.html#af654b48544c195ab99fe27e7bc3ed5fe',1,'audio_tools::ICYStreamBuffered::flush()'],['../classaudio__tools_1_1_buffered_stream.html#af654b48544c195ab99fe27e7bc3ed5fe',1,'audio_tools::BufferedStream::flush()']]],
+ ['flushmixer_2203',['flushMixer',['../classaudio__tools_1_1_output_mixer.html#aa2299c86cec1b36ea50195df313dc05e',1,'audio_tools::OutputMixer']]],
+ ['format_2204',['format',['../classaudio__tools_1_1_r_t_s_p_format_abt_x.html#a784939ec9a9f6985df7f11a3f1e29c7b',1,'audio_tools::RTSPFormatAbtX::format()'],['../classaudio__tools_1_1_r_t_s_p_format_g_s_m.html#a784939ec9a9f6985df7f11a3f1e29c7b',1,'audio_tools::RTSPFormatGSM::format()'],['../classaudio__tools_1_1_r_t_s_p_format_g711.html#a784939ec9a9f6985df7f11a3f1e29c7b',1,'audio_tools::RTSPFormatG711::format()'],['../classaudio__tools_1_1_r_t_s_p_format_p_c_m.html#a784939ec9a9f6985df7f11a3f1e29c7b',1,'audio_tools::RTSPFormatPCM::format()'],['../classaudio__tools_1_1_r_t_s_p_format_p_c_m8.html#a784939ec9a9f6985df7f11a3f1e29c7b',1,'audio_tools::RTSPFormatPCM8::format()'],['../classaudio__tools_1_1_r_t_s_p_format_opus.html#a784939ec9a9f6985df7f11a3f1e29c7b',1,'audio_tools::RTSPFormatOpus::format()'],['../classaudio__tools_1_1_r_t_s_p_format_audio_tools.html#ad7ad9bd7c66af8cbaff4226cf8de3631',1,'audio_tools::RTSPFormatAudioTools::format()']]],
+ ['frameheader_2205',['frameHeader',['../classaudio__tools_1_1_meta_data_i_d3_v2.html#ae1934083da81d1032c842756b6cec27b',1,'audio_tools::MetaDataID3V2']]],
+ ['framelength_2206',['frameLength',['../classaudio__tools_1_1_s_b_c_decoder.html#a8721dea59e7d446cb9566766c9a073b0',1,'audio_tools::SBCDecoder::frameLength()'],['../classaudio__tools_1_1_s_b_c_encoder.html#a8721dea59e7d446cb9566766c9a073b0',1,'audio_tools::SBCEncoder::frameLength()']]],
+ ['frequency_2207',['frequency',['../classaudio__tools_1_1_audio_f_f_t_base.html#ab5f1f1bf50599707ea0172e5f65fc8dc',1,'audio_tools::AudioFFTBase::frequency()'],['../classaudio__tools_1_1_p_w_m_driver_e_s_p32.html#a630cb46e9a0636a8f424157ae3c13bf5',1,'audio_tools::PWMDriverESP32::frequency()'],['../classaudio__tools_1_1_musical_notes.html#a521b24b3a00360cbab29a003e14eaa99',1,'audio_tools::MusicalNotes::frequency(MusicalNotesEnum note, uint8_t octave)'],['../classaudio__tools_1_1_musical_notes.html#ae76b8ddf1b2e70224370b22f516643be',1,'audio_tools::MusicalNotes::frequency(uint16_t idx)']]],
+ ['frequencytomidinote_2208',['frequencyToMidiNote',['../classaudio__tools_1_1_musical_notes.html#ac63e0b09fabb3b6d673024cdc4f0f1b6',1,'audio_tools::MusicalNotes']]],
+ ['fuzz_2209',['Fuzz',['../classaudio__tools_1_1_fuzz.html#a36029f43e25bb0fae14d317621632c6a',1,'audio_tools::Fuzz']]]
];
diff --git a/search/functions_7.js b/search/functions_7.js
index 2bd49c048c..635fc89429 100644
--- a/search/functions_7.js
+++ b/search/functions_7.js
@@ -1,35 +1,35 @@
var searchData=
[
- ['generator_2206',['generator',['../classaudio__tools_1_1_audio_effects.html#a1ecabc1b15ae58dc67d30659959104ac',1,'audio_tools::AudioEffects']]],
- ['generatorfromarray_2207',['GeneratorFromArray',['../classaudio__tools_1_1_generator_from_array.html#a8f6f7efed214cfdc8a1e2eb40475e706',1,'audio_tools::GeneratorFromArray']]],
- ['generatorfromstream_2208',['GeneratorFromStream',['../classaudio__tools_1_1_generator_from_stream.html#adbab94c4cc5993e1478137422a8d6ce5',1,'audio_tools::GeneratorFromStream']]],
- ['get_2209',['get',['../classaudio__tools_1_1_http_request.html#a23fd1b70c43eb2baa3363b559a8535fb',1,'audio_tools::HttpRequest']]],
- ['getactionlogic_2210',['getActionLogic',['../classaudio__tools_1_1_audio_kit_stream.html#a429791ee6aa07d099b1e2df39b688507',1,'audio_tools::AudioKitStream']]],
- ['getclient_2211',['getClient',['../classaudio__tools_1_1_u_r_l_stream.html#a7d9592dd97b0dce77ba5d436d6424f3e',1,'audio_tools::URLStream']]],
- ['getcodec_2212',['getCodec',['../classaudio__tools_1_1_h_l_s_parser.html#af59bcb4f75de79bc22707ab38cc08536',1,'audio_tools::HLSParser']]],
- ['getcodec2mode_2213',['getCodec2Mode',['../namespaceaudio__tools.html#a02c29ed3c839920a3df31605da651f24',1,'audio_tools']]],
- ['getdefaultcolor_2214',['getDefaultColor',['../namespaceaudio__tools.html#a7788a85ffcebdcf25ea71d8789d60e42',1,'audio_tools']]],
- ['getdsp_2215',['getDSP',['../classaudio__tools_1_1_faust_stream.html#a44ca8f6d4255e10517465b61346727d9',1,'audio_tools::FaustStream']]],
- ['getfilebypos_2216',['getFileByPos',['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a3320b70c0506b6448d4e909ea011048e',1,'audio_tools::AudioSourceSDFAT']]],
- ['getframesizesamples_2217',['getFrameSizeSamples',['../classaudio__tools_1_1_opus_audio_encoder.html#af8b98e7acf889f0c2d1c7406059db717',1,'audio_tools::OpusAudioEncoder']]],
- ['getfrom_2218',['getFrom',['../classaudio__tools_1_1_stream_copy_t.html#a809c0d475db281a243ca51095230d6e1',1,'audio_tools::StreamCopyT']]],
- ['getint_2219',['getInt',['../classaudio__tools_1_1_a_v_i_decoder.html#a7cbe3784773fce7e879c4d5678fa3b7a',1,'audio_tools::AVIDecoder']]],
- ['getintenset_2220',['getINTENSET',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a7f113ed579279f9cd4bb1cc8bd50f13e',1,'audio_tools::I2SDriverNanoBLE']]],
- ['getinterpolatedout_2221',['getInterpolatedOut',['../classaudio__tools_1_1_delay_effect_base.html#ac31803fdf3c18f7be67c7b86b7245a4e',1,'audio_tools::DelayEffectBase']]],
- ['getinterpout_2222',['getInterpOut',['../classaudio__tools_1_1_modulation_base_class.html#a72aa0b268e26446182030247a66b13f0',1,'audio_tools::ModulationBaseClass']]],
- ['getmagnitude_2223',['getMagnitude',['../classaudio__tools_1_1_f_f_t_display.html#ae1baf94641211d26e7a718a6ee6c75dc',1,'audio_tools::FFTDisplay']]],
- ['getmaxmagnitude_2224',['getMaxMagnitude',['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a53ef9e74ad374547aa7a7092e2801c56',1,'audio_tools::LEDOutputUnoR4::getMaxMagnitude()'],['../classaudio__tools_1_1_l_e_d_output.html#a53ef9e74ad374547aa7a7092e2801c56',1,'audio_tools::LEDOutput::getMaxMagnitude()']]],
- ['getmodsignal_2225',['getModSignal',['../classaudio__tools_1_1_simple_chorus.html#ad66008a791ee961688ab0e81b16b62da',1,'audio_tools::SimpleChorus']]],
- ['getpinname_2226',['getPinName',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#aa61a78051871fff259512d43384aadd1',1,'audio_tools::I2SDriverNanoBLE']]],
- ['getsplineout_2227',['getSplineOut',['../classaudio__tools_1_1_simple_delay.html#a11f8732d4949cacda540d83f6f707fa4',1,'audio_tools::SimpleDelay::getSplineOut()'],['../classaudio__tools_1_1_modulation_base_class.html#abe6df32790ce49bd58cf57eadc30e88e',1,'audio_tools::ModulationBaseClass::getSplineOut()']]],
- ['getstepsize_2228',['getStepSize',['../classaudio__tools_1_1_resample_stream.html#a3ab0b6134d712c7733c4cf91d9bf45b8',1,'audio_tools::ResampleStream::getStepSize(float sampleRateFrom, float sampleRateTo)'],['../classaudio__tools_1_1_resample_stream.html#ab49cc7c5e84baee6171477076ad7284a',1,'audio_tools::ResampleStream::getStepSize()']]],
- ['getstr_2229',['getStr',['../classaudio__tools_1_1_a_v_i_decoder.html#a5fe434d4c76332a3541986b81c407b06',1,'audio_tools::AVIDecoder']]],
- ['getstream_2230',['getStream',['../classaudio__tools_1_1_audio_player.html#a190ffdf693e3bb63f5a9f560ba0f3bf9',1,'audio_tools::AudioPlayer']]],
- ['getstreamcopy_2231',['getStreamCopy',['../classaudio__tools_1_1_audio_player.html#af02fb17cf31766de2b594f189bdf498a',1,'audio_tools::AudioPlayer']]],
- ['getto_2232',['getTo',['../classaudio__tools_1_1_stream_copy_t.html#ac41200bb0abf1703f53e3f5eaf08be9b',1,'audio_tools::StreamCopyT']]],
- ['getvalue_2233',['getValue',['../classaudio__tools_1_1_resample_stream.html#af670780acc7db5511153adf62a68a362',1,'audio_tools::ResampleStream::getValue()'],['../classaudio__tools_1_1_variable_speed_ring_buffer.html#adc30bb60523ae822267f9c915c47c0ab',1,'audio_tools::VariableSpeedRingBuffer::getValue()']]],
- ['getvolumefactor_2234',['getVolumeFactor',['../classaudio__tools_1_1_volume_control.html#ab9c01325a5a52a051934968f66b4a04c',1,'audio_tools::VolumeControl::getVolumeFactor()'],['../classaudio__tools_1_1_cached_volume_control.html#a4adec6dfd3db79b4d459a6616d376dc2',1,'audio_tools::CachedVolumeControl::getVolumeFactor()'],['../classaudio__tools_1_1_logarithmic_volume_control.html#acdf623d845bd8cda68be2aa6da5896a1',1,'audio_tools::LogarithmicVolumeControl::getVolumeFactor()'],['../classaudio__tools_1_1_exponential_volume_control.html#a4adec6dfd3db79b4d459a6616d376dc2',1,'audio_tools::ExponentialVolumeControl::getVolumeFactor()'],['../classaudio__tools_1_1_simulated_audio_pot.html#a4adec6dfd3db79b4d459a6616d376dc2',1,'audio_tools::SimulatedAudioPot::getVolumeFactor()'],['../classaudio__tools_1_1_linear_volume_control.html#a4adec6dfd3db79b4d459a6616d376dc2',1,'audio_tools::LinearVolumeControl::getVolumeFactor()'],['../classaudio__tools_1_1_callback_volume_control.html#a4adec6dfd3db79b4d459a6616d376dc2',1,'audio_tools::CallbackVolumeControl::getVolumeFactor()']]],
- ['getvolumeoutput_2235',['getVolumeOutput',['../classaudio__tools_1_1_audio_player.html#ad6e9734f754a7ab7d7b60cf11cfa06a3',1,'audio_tools::AudioPlayer']]],
- ['getvs1053_2236',['getVS1053',['../classaudio__tools_1_1_v_s1053_stream.html#ab96345d18afd29205c955b3f677381fe',1,'audio_tools::VS1053Stream']]],
- ['grow_2237',['grow',['../classaudio__tools_1_1_str.html#a16ef995f4c62ef0f05d955fd7b0539eb',1,'audio_tools::Str::grow()'],['../classaudio__tools_1_1_str_ext.html#a0c23107d9d96131d32a64d230bbedf06',1,'audio_tools::StrExt::grow()']]]
+ ['generator_2210',['generator',['../classaudio__tools_1_1_audio_effects.html#a1ecabc1b15ae58dc67d30659959104ac',1,'audio_tools::AudioEffects']]],
+ ['generatorfromarray_2211',['GeneratorFromArray',['../classaudio__tools_1_1_generator_from_array.html#a8f6f7efed214cfdc8a1e2eb40475e706',1,'audio_tools::GeneratorFromArray']]],
+ ['generatorfromstream_2212',['GeneratorFromStream',['../classaudio__tools_1_1_generator_from_stream.html#adbab94c4cc5993e1478137422a8d6ce5',1,'audio_tools::GeneratorFromStream']]],
+ ['get_2213',['get',['../classaudio__tools_1_1_http_request.html#a23fd1b70c43eb2baa3363b559a8535fb',1,'audio_tools::HttpRequest']]],
+ ['getactionlogic_2214',['getActionLogic',['../classaudio__tools_1_1_audio_kit_stream.html#a429791ee6aa07d099b1e2df39b688507',1,'audio_tools::AudioKitStream']]],
+ ['getclient_2215',['getClient',['../classaudio__tools_1_1_u_r_l_stream.html#a7d9592dd97b0dce77ba5d436d6424f3e',1,'audio_tools::URLStream']]],
+ ['getcodec_2216',['getCodec',['../classaudio__tools_1_1_h_l_s_parser.html#af59bcb4f75de79bc22707ab38cc08536',1,'audio_tools::HLSParser']]],
+ ['getcodec2mode_2217',['getCodec2Mode',['../namespaceaudio__tools.html#a02c29ed3c839920a3df31605da651f24',1,'audio_tools']]],
+ ['getdefaultcolor_2218',['getDefaultColor',['../namespaceaudio__tools.html#a7788a85ffcebdcf25ea71d8789d60e42',1,'audio_tools']]],
+ ['getdsp_2219',['getDSP',['../classaudio__tools_1_1_faust_stream.html#a44ca8f6d4255e10517465b61346727d9',1,'audio_tools::FaustStream']]],
+ ['getfilebypos_2220',['getFileByPos',['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a3320b70c0506b6448d4e909ea011048e',1,'audio_tools::AudioSourceSDFAT']]],
+ ['getframesizesamples_2221',['getFrameSizeSamples',['../classaudio__tools_1_1_opus_audio_encoder.html#af8b98e7acf889f0c2d1c7406059db717',1,'audio_tools::OpusAudioEncoder']]],
+ ['getfrom_2222',['getFrom',['../classaudio__tools_1_1_stream_copy_t.html#a809c0d475db281a243ca51095230d6e1',1,'audio_tools::StreamCopyT']]],
+ ['getint_2223',['getInt',['../classaudio__tools_1_1_a_v_i_decoder.html#a7cbe3784773fce7e879c4d5678fa3b7a',1,'audio_tools::AVIDecoder']]],
+ ['getintenset_2224',['getINTENSET',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#a7f113ed579279f9cd4bb1cc8bd50f13e',1,'audio_tools::I2SDriverNanoBLE']]],
+ ['getinterpolatedout_2225',['getInterpolatedOut',['../classaudio__tools_1_1_delay_effect_base.html#ac31803fdf3c18f7be67c7b86b7245a4e',1,'audio_tools::DelayEffectBase']]],
+ ['getinterpout_2226',['getInterpOut',['../classaudio__tools_1_1_modulation_base_class.html#a72aa0b268e26446182030247a66b13f0',1,'audio_tools::ModulationBaseClass']]],
+ ['getmagnitude_2227',['getMagnitude',['../classaudio__tools_1_1_f_f_t_display.html#ae1baf94641211d26e7a718a6ee6c75dc',1,'audio_tools::FFTDisplay']]],
+ ['getmaxmagnitude_2228',['getMaxMagnitude',['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a53ef9e74ad374547aa7a7092e2801c56',1,'audio_tools::LEDOutputUnoR4::getMaxMagnitude()'],['../classaudio__tools_1_1_l_e_d_output.html#a53ef9e74ad374547aa7a7092e2801c56',1,'audio_tools::LEDOutput::getMaxMagnitude()']]],
+ ['getmodsignal_2229',['getModSignal',['../classaudio__tools_1_1_simple_chorus.html#ad66008a791ee961688ab0e81b16b62da',1,'audio_tools::SimpleChorus']]],
+ ['getpinname_2230',['getPinName',['../classaudio__tools_1_1_i2_s_driver_nano_b_l_e.html#aa61a78051871fff259512d43384aadd1',1,'audio_tools::I2SDriverNanoBLE']]],
+ ['getsplineout_2231',['getSplineOut',['../classaudio__tools_1_1_simple_delay.html#a11f8732d4949cacda540d83f6f707fa4',1,'audio_tools::SimpleDelay::getSplineOut()'],['../classaudio__tools_1_1_modulation_base_class.html#abe6df32790ce49bd58cf57eadc30e88e',1,'audio_tools::ModulationBaseClass::getSplineOut()']]],
+ ['getstepsize_2232',['getStepSize',['../classaudio__tools_1_1_resample_stream.html#a3ab0b6134d712c7733c4cf91d9bf45b8',1,'audio_tools::ResampleStream::getStepSize(float sampleRateFrom, float sampleRateTo)'],['../classaudio__tools_1_1_resample_stream.html#ab49cc7c5e84baee6171477076ad7284a',1,'audio_tools::ResampleStream::getStepSize()']]],
+ ['getstr_2233',['getStr',['../classaudio__tools_1_1_a_v_i_decoder.html#a5fe434d4c76332a3541986b81c407b06',1,'audio_tools::AVIDecoder']]],
+ ['getstream_2234',['getStream',['../classaudio__tools_1_1_audio_player.html#a190ffdf693e3bb63f5a9f560ba0f3bf9',1,'audio_tools::AudioPlayer']]],
+ ['getstreamcopy_2235',['getStreamCopy',['../classaudio__tools_1_1_audio_player.html#af02fb17cf31766de2b594f189bdf498a',1,'audio_tools::AudioPlayer']]],
+ ['getto_2236',['getTo',['../classaudio__tools_1_1_stream_copy_t.html#ac41200bb0abf1703f53e3f5eaf08be9b',1,'audio_tools::StreamCopyT']]],
+ ['getvalue_2237',['getValue',['../classaudio__tools_1_1_resample_stream.html#af670780acc7db5511153adf62a68a362',1,'audio_tools::ResampleStream::getValue()'],['../classaudio__tools_1_1_variable_speed_ring_buffer.html#adc30bb60523ae822267f9c915c47c0ab',1,'audio_tools::VariableSpeedRingBuffer::getValue()']]],
+ ['getvolumefactor_2238',['getVolumeFactor',['../classaudio__tools_1_1_volume_control.html#ab9c01325a5a52a051934968f66b4a04c',1,'audio_tools::VolumeControl::getVolumeFactor()'],['../classaudio__tools_1_1_cached_volume_control.html#a4adec6dfd3db79b4d459a6616d376dc2',1,'audio_tools::CachedVolumeControl::getVolumeFactor()'],['../classaudio__tools_1_1_logarithmic_volume_control.html#acdf623d845bd8cda68be2aa6da5896a1',1,'audio_tools::LogarithmicVolumeControl::getVolumeFactor()'],['../classaudio__tools_1_1_exponential_volume_control.html#a4adec6dfd3db79b4d459a6616d376dc2',1,'audio_tools::ExponentialVolumeControl::getVolumeFactor()'],['../classaudio__tools_1_1_simulated_audio_pot.html#a4adec6dfd3db79b4d459a6616d376dc2',1,'audio_tools::SimulatedAudioPot::getVolumeFactor()'],['../classaudio__tools_1_1_linear_volume_control.html#a4adec6dfd3db79b4d459a6616d376dc2',1,'audio_tools::LinearVolumeControl::getVolumeFactor()'],['../classaudio__tools_1_1_callback_volume_control.html#a4adec6dfd3db79b4d459a6616d376dc2',1,'audio_tools::CallbackVolumeControl::getVolumeFactor()']]],
+ ['getvolumeoutput_2239',['getVolumeOutput',['../classaudio__tools_1_1_audio_player.html#ad6e9734f754a7ab7d7b60cf11cfa06a3',1,'audio_tools::AudioPlayer']]],
+ ['getvs1053_2240',['getVS1053',['../classaudio__tools_1_1_v_s1053_stream.html#ab96345d18afd29205c955b3f677381fe',1,'audio_tools::VS1053Stream']]],
+ ['grow_2241',['grow',['../classaudio__tools_1_1_str.html#a16ef995f4c62ef0f05d955fd7b0539eb',1,'audio_tools::Str::grow()'],['../classaudio__tools_1_1_str_ext.html#a0c23107d9d96131d32a64d230bbedf06',1,'audio_tools::StrExt::grow()']]]
];
diff --git a/search/functions_8.js b/search/functions_8.js
index a17f9ab6b1..71ec504067 100644
--- a/search/functions_8.js
+++ b/search/functions_8.js
@@ -1,12 +1,12 @@
var searchData=
[
- ['half_5fto_5ffloat_2238',['half_to_float',['../classaudio__tools_1_1float16.html#a0842bda138a6c90f81bb8749a0d38c45',1,'audio_tools::float16']]],
- ['handlereadwriteoverrun_2239',['handleReadWriteOverrun',['../classaudio__tools_1_1_variable_speed_ring_buffer.html#a941c7ea4e9e43a47930103f3c17dd67b',1,'audio_tools::VariableSpeedRingBuffer']]],
- ['hasmetadata_2240',['hasMetaData',['../classaudio__tools_1_1_meta_data_i_c_y.html#ab0c1cb4bfda117887e5134e5578d65e1',1,'audio_tools::MetaDataICY']]],
- ['head_2241',['head',['../classaudio__tools_1_1_http_request.html#aad6f1e79f2e71e2e2b620c6b8eb0b8ec',1,'audio_tools::HttpRequest']]],
- ['header_2242',['header',['../classaudio__tools_1_1_http_request.html#a4b90ccdd03f36957dcd388af09d0357a',1,'audio_tools::HttpRequest::header()'],['../classaudio__tools_1_1_meta_data_i_d3_v2.html#a101c2876eb62976d3e9b9bad8e870b7d',1,'audio_tools::MetaDataID3V2::header()']]],
- ['headphonestatus_2243',['headphoneStatus',['../classaudio__tools_1_1_audio_kit_stream.html#ad497d1809a653cebe8e82b625e642bb1',1,'audio_tools::AudioKitStream']]],
- ['hexdumpoutput_2244',['HexDumpOutput',['../classaudio__tools_1_1_hex_dump_output.html#a81a0ff258d72340fb3618b2ab5dc6732',1,'audio_tools::HexDumpOutput']]],
- ['httpchunkreader_2245',['HttpChunkReader',['../classaudio__tools_1_1_http_chunk_reader.html#af042a3a6578702fb51040e9748027303',1,'audio_tools::HttpChunkReader::HttpChunkReader()'],['../classaudio__tools_1_1_http_chunk_reader.html#ac61a30a93f3075dde40f0cd1be010548',1,'audio_tools::HttpChunkReader::HttpChunkReader(HttpReplyHeader &header)']]],
- ['httprequest_2246',['httpRequest',['../classaudio__tools_1_1_abstract_u_r_l_stream.html#afd650515e4fa72af032ea2aa53d18a35',1,'audio_tools::AbstractURLStream::httpRequest()'],['../classaudio__tools_1_1_i_c_y_stream.html#a2ca90ceac0e248318ea6535bd8105569',1,'audio_tools::ICYStream::httpRequest()'],['../classaudio__tools_1_1_i_c_y_stream_buffered.html#a2ca90ceac0e248318ea6535bd8105569',1,'audio_tools::ICYStreamBuffered::httpRequest()'],['../classaudio__tools_1_1_u_r_l_stream.html#a2ca90ceac0e248318ea6535bd8105569',1,'audio_tools::URLStream::httpRequest()'],['../classaudio__tools_1_1_u_r_l_stream_buffered.html#aee06a0874ed5fef276c726ee92759661',1,'audio_tools::URLStreamBuffered::httpRequest()']]]
+ ['half_5fto_5ffloat_2242',['half_to_float',['../classaudio__tools_1_1float16.html#a0842bda138a6c90f81bb8749a0d38c45',1,'audio_tools::float16']]],
+ ['handlereadwriteoverrun_2243',['handleReadWriteOverrun',['../classaudio__tools_1_1_variable_speed_ring_buffer.html#a941c7ea4e9e43a47930103f3c17dd67b',1,'audio_tools::VariableSpeedRingBuffer']]],
+ ['hasmetadata_2244',['hasMetaData',['../classaudio__tools_1_1_meta_data_i_c_y.html#ab0c1cb4bfda117887e5134e5578d65e1',1,'audio_tools::MetaDataICY']]],
+ ['head_2245',['head',['../classaudio__tools_1_1_http_request.html#aad6f1e79f2e71e2e2b620c6b8eb0b8ec',1,'audio_tools::HttpRequest']]],
+ ['header_2246',['header',['../classaudio__tools_1_1_http_request.html#a4b90ccdd03f36957dcd388af09d0357a',1,'audio_tools::HttpRequest::header()'],['../classaudio__tools_1_1_meta_data_i_d3_v2.html#a101c2876eb62976d3e9b9bad8e870b7d',1,'audio_tools::MetaDataID3V2::header()']]],
+ ['headphonestatus_2247',['headphoneStatus',['../classaudio__tools_1_1_audio_kit_stream.html#ad497d1809a653cebe8e82b625e642bb1',1,'audio_tools::AudioKitStream']]],
+ ['hexdumpoutput_2248',['HexDumpOutput',['../classaudio__tools_1_1_hex_dump_output.html#a81a0ff258d72340fb3618b2ab5dc6732',1,'audio_tools::HexDumpOutput']]],
+ ['httpchunkreader_2249',['HttpChunkReader',['../classaudio__tools_1_1_http_chunk_reader.html#af042a3a6578702fb51040e9748027303',1,'audio_tools::HttpChunkReader::HttpChunkReader()'],['../classaudio__tools_1_1_http_chunk_reader.html#ac61a30a93f3075dde40f0cd1be010548',1,'audio_tools::HttpChunkReader::HttpChunkReader(HttpReplyHeader &header)']]],
+ ['httprequest_2250',['httpRequest',['../classaudio__tools_1_1_abstract_u_r_l_stream.html#afd650515e4fa72af032ea2aa53d18a35',1,'audio_tools::AbstractURLStream::httpRequest()'],['../classaudio__tools_1_1_i_c_y_stream.html#a2ca90ceac0e248318ea6535bd8105569',1,'audio_tools::ICYStream::httpRequest()'],['../classaudio__tools_1_1_i_c_y_stream_buffered.html#a2ca90ceac0e248318ea6535bd8105569',1,'audio_tools::ICYStreamBuffered::httpRequest()'],['../classaudio__tools_1_1_u_r_l_stream.html#a2ca90ceac0e248318ea6535bd8105569',1,'audio_tools::URLStream::httpRequest()'],['../classaudio__tools_1_1_u_r_l_stream_buffered.html#aee06a0874ed5fef276c726ee92759661',1,'audio_tools::URLStreamBuffered::httpRequest()']]]
];
diff --git a/search/functions_9.js b/search/functions_9.js
index 4afec29bab..264ac219dd 100644
--- a/search/functions_9.js
+++ b/search/functions_9.js
@@ -1,58 +1,58 @@
var searchData=
[
- ['i2s_5firqhandler_2247',['I2S_IRQHandler',['../namespaceaudio__tools.html#ad663a1188408b698e16703cd27bf955f',1,'audio_tools']]],
- ['i2sconfig_2248',['I2SConfig',['../classaudio__tools_1_1_i2_s_config.html#ab3b2f124f03d7d586841c2ce12ccc35c',1,'audio_tools::I2SConfig::I2SConfig(RxTxMode mode)'],['../classaudio__tools_1_1_i2_s_config.html#a121806f3861b13229ad26d0b33497cab',1,'audio_tools::I2SConfig::I2SConfig(const I2SConfig &cfg)=default']]],
- ['icystream_2249',['ICYStream',['../classaudio__tools_1_1_i_c_y_stream.html#a8615d18be26f133e80717d6845a645d4',1,'audio_tools::ICYStream']]],
- ['id_2250',['id',['../classaudio__tools_1_1_audio_effect.html#a4a716406d3d9d4fdbbe46f100e648f3b',1,'audio_tools::AudioEffect']]],
- ['ifft_2251',['ifft',['../classaudio__tools_1_1_audio_real_f_f_t.html#ae768aa2f0c02d364d6fdf522fbd20f33',1,'audio_tools::AudioRealFFT']]],
- ['imgarray_2252',['imgArray',['../classaudio__tools_1_1_audio_real_f_f_t.html#abbba1494243d8dd872ba5e59a66c6eec',1,'audio_tools::AudioRealFFT']]],
- ['incbufferindex_2253',['incBufferIndex',['../classaudio__tools_1_1_filter_effect_base.html#ada4fddd530129b114ca81a70b74d3f6d',1,'audio_tools::FilterEffectBase']]],
- ['incdelaybuffreadindex_2254',['incDelayBuffReadIndex',['../classaudio__tools_1_1_delay_effect_base.html#ae5c4dda07d76593af380a0d1aa00f085',1,'audio_tools::DelayEffectBase']]],
- ['incdelaybuffwriteindex_2255',['incDelayBuffWriteIndex',['../classaudio__tools_1_1_delay_effect_base.html#a703826b314491f5ddfb4cf7edbc517cc',1,'audio_tools::DelayEffectBase']]],
- ['incrementvolume_2256',['incrementVolume',['../classaudio__tools_1_1_audio_kit_stream.html#a5874fbce51abb9b1a221c514da1b833a',1,'audio_tools::AudioKitStream']]],
- ['index_2257',['index',['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a019749328da42c4814af71d3e3b647ad',1,'audio_tools::AudioSourceSDFAT::index()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a019749328da42c4814af71d3e3b647ad',1,'audio_tools::AudioSourceSDFAT::index()'],['../classaudio__tools_1_1_audio_source_s_t_d.html#a019749328da42c4814af71d3e3b647ad',1,'audio_tools::AudioSourceSTD::index()'],['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html#a019749328da42c4814af71d3e3b647ad',1,'audio_tools::AudioSourceSPIFFS::index()'],['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html#a019749328da42c4814af71d3e3b647ad',1,'audio_tools::AudioSourceSDMMC::index()'],['../classaudio__tools_1_1_audio_source_s_d.html#a019749328da42c4814af71d3e3b647ad',1,'audio_tools::AudioSourceSD::index()'],['../classaudio__tools_1_1_audio_source_little_f_s.html#a019749328da42c4814af71d3e3b647ad',1,'audio_tools::AudioSourceLittleFS::index()'],['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html#a019749328da42c4814af71d3e3b647ad',1,'audio_tools::AudioSourceIdxSDMMC::index()'],['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#a019749328da42c4814af71d3e3b647ad',1,'audio_tools::AudioSourceIdxSDFAT::index()'],['../classaudio__tools_1_1_audio_source_idx_s_d.html#a019749328da42c4814af71d3e3b647ad',1,'audio_tools::AudioSourceIdxSD::index()']]],
- ['indexof_2258',['indexOf',['../classaudio__tools_1_1_str.html#aee2206b824ab694471714e3fdc981652',1,'audio_tools::Str::indexOf(const char c, int start=0)'],['../classaudio__tools_1_1_str.html#adc736a9ff3c54b9a6ad3e44ec61f4a42',1,'audio_tools::Str::indexOf(const char *cont, int start=0)']]],
- ['info_2259',['info',['../classdsp__memory__manager.html#a68eb98597cd2ad0dbbfb268ffd54cc39',1,'dsp_memory_manager']]],
- ['infocallback_2260',['infoCallback',['../classaudio__tools_1_1_a_a_c_decoder_helix.html#a65f88868fa2fb316e77025a71f455f77',1,'audio_tools::AACDecoderHelix::infoCallback()'],['../classaudio__tools_1_1_m_p3_decoder_helix.html#a9941c799810634270eef8544a19d7d6f',1,'audio_tools::MP3DecoderHelix::infoCallback()']]],
- ['inputmerge_2261',['InputMerge',['../classaudio__tools_1_1_input_merge.html#a0b83ea30e35110ce9cc81292303fee18',1,'audio_tools::InputMerge::InputMerge()=default'],['../classaudio__tools_1_1_input_merge.html#ae734e03b0b6a2b57766b872e4c7e8709',1,'audio_tools::InputMerge::InputMerge(Stream &left, Stream &right)']]],
- ['insert_2262',['insert',['../classaudio__tools_1_1_str.html#aea77e43270869fc69c84d014587e4fd0',1,'audio_tools::Str']]],
- ['insertsorted_2263',['insertSorted',['../classaudio__tools_1_1_audio_f_f_t_base.html#ac9fb623e1f6da666284dbdf4895f0351',1,'audio_tools::AudioFFTBase']]],
- ['interpolate_2264',['interpolate',['../classaudio__tools_1_1_variable_speed_ring_buffer.html#a3bce71572014e53be5e85c35a8d9192c',1,'audio_tools::VariableSpeedRingBuffer']]],
- ['interpreter_2265',['interpreter',['../classaudio__tools_1_1_tf_lite_audio_stream.html#a8fa6e43d582535e45e6756fb7b3ab816',1,'audio_tools::TfLiteAudioStream']]],
- ['is_2266',['is',['../structaudio__tools_1_1_m_p4_atom.html#aa1e15f0d913907e4a59fd73ca9022f2a',1,'audio_tools::MP4Atom']]],
- ['is_5fnew_5ffile_2267',['is_new_file',['../classaudio__tools_1_1_m_t_s_decoder.html#a23db723254d6cad6290008acdb3ccdae',1,'audio_tools::MTSDecoder']]],
- ['isactive_2268',['isActive',['../classaudio__tools_1_1_audio_player.html#a62eb104f87ff88c21fa01af29dbf0ee2',1,'audio_tools::AudioPlayer::isActive()'],['../classaudio__tools_1_1_stream_copy_t.html#aa1f512ab0fcc05612f8e3d6a4664ce9a',1,'audio_tools::StreamCopyT::isActive()'],['../classaudio__tools_1_1_on_off_output.html#aa1f512ab0fcc05612f8e3d6a4664ce9a',1,'audio_tools::OnOffOutput::isActive()'],['../classaudio__tools_1_1_timed_stream.html#aa1f512ab0fcc05612f8e3d6a4664ce9a',1,'audio_tools::TimedStream::isActive()'],['../classaudio__tools_1_1_r_t_s_p_source_from_audio_stream.html#aa1f512ab0fcc05612f8e3d6a4664ce9a',1,'audio_tools::RTSPSourceFromAudioStream::isActive()'],['../classaudio__tools_1_1_default_synthesizer_channel.html#aa7dd2dbf5a8f49e991c84dcd6e2331c1',1,'audio_tools::DefaultSynthesizerChannel::isActive()'],['../classaudio__tools_1_1_abstract_synthesizer_channel.html#acfb3416c9355c4756aedad5a90e25b23',1,'audio_tools::AbstractSynthesizerChannel::isActive()'],['../classaudio__tools_1_1_sound_generator.html#a62eb104f87ff88c21fa01af29dbf0ee2',1,'audio_tools::SoundGenerator::isActive()']]],
- ['isascii_2269',['isAscii',['../classaudio__tools_1_1_meta_data_i_c_y.html#a502e58028d924f98f502609518c2b053',1,'audio_tools::MetaDataICY::isAscii()'],['../classaudio__tools_1_1_meta_data_i_d3_v2.html#a9d15f283130f69e61c975d8895f21a1c',1,'audio_tools::MetaDataID3V2::isAscii()']]],
- ['isaudible_2270',['isAudible',['../classaudio__tools_1_1_musical_notes.html#aad21d394b5564867c744c3f92cfb602c',1,'audio_tools::MusicalNotes']]],
- ['isautonext_2271',['isAutoNext',['../classaudio__tools_1_1_audio_source_u_r_l.html#aa1a2ebc04c10e3b7c5704943dc22b1cb',1,'audio_tools::AudioSourceURL::isAutoNext()'],['../classaudio__tools_1_1_audio_source_callback.html#af14984986d0c86ebe1717f8ba8ee00bc',1,'audio_tools::AudioSourceCallback::isAutoNext()'],['../classaudio__tools_1_1_audio_source.html#aa1a2ebc04c10e3b7c5704943dc22b1cb',1,'audio_tools::AudioSource::isAutoNext()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#aa1a2ebc04c10e3b7c5704943dc22b1cb',1,'audio_tools::AudioSourceSDFAT::isAutoNext()'],['../classaudio__tools_1_1_audio_source_s_t_d.html#aa1a2ebc04c10e3b7c5704943dc22b1cb',1,'audio_tools::AudioSourceSTD::isAutoNext()'],['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html#aa1a2ebc04c10e3b7c5704943dc22b1cb',1,'audio_tools::AudioSourceSPIFFS::isAutoNext()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#aa1a2ebc04c10e3b7c5704943dc22b1cb',1,'audio_tools::AudioSourceSDFAT::isAutoNext()'],['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html#aa1a2ebc04c10e3b7c5704943dc22b1cb',1,'audio_tools::AudioSourceSDMMC::isAutoNext()'],['../classaudio__tools_1_1_audio_source_idx_s_d.html#aa1a2ebc04c10e3b7c5704943dc22b1cb',1,'audio_tools::AudioSourceIdxSD::isAutoNext()'],['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#aa1a2ebc04c10e3b7c5704943dc22b1cb',1,'audio_tools::AudioSourceIdxSDFAT::isAutoNext()'],['../classaudio__tools_1_1_audio_source_little_f_s.html#aa1a2ebc04c10e3b7c5704943dc22b1cb',1,'audio_tools::AudioSourceLittleFS::isAutoNext()'],['../classaudio__tools_1_1_audio_source_s_d.html#aa1a2ebc04c10e3b7c5704943dc22b1cb',1,'audio_tools::AudioSourceSD::isAutoNext()'],['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html#aa1a2ebc04c10e3b7c5704943dc22b1cb',1,'audio_tools::AudioSourceIdxSDMMC::isAutoNext()']]],
- ['ischeckavailableforwrite_2272',['isCheckAvailableForWrite',['../classaudio__tools_1_1_stream_copy_t.html#ada93b38d090efbbdb87020aca15f7b37',1,'audio_tools::StreamCopyT']]],
- ['isclientconnected_2273',['isClientConnected',['../classaudio__tools_1_1_audio_server.html#a3bee9230cc529af42211e084fb9c78b5',1,'audio_tools::AudioServer']]],
- ['isconnected_2274',['isConnected',['../classaudio__tools_1_1_a2_d_p_stream.html#a772f8f0487e0d3804e9da7585e23a29a',1,'audio_tools::A2DPStream']]],
- ['isconst_2275',['isConst',['../classaudio__tools_1_1_str.html#ae7bbead3f07130d4bab2b78efe62147e',1,'audio_tools::Str::isConst()'],['../classaudio__tools_1_1_str_ext.html#a6759bdc4a7ceb4f300f1d1e3f5f4713d',1,'audio_tools::StrExt::isConst()']]],
- ['isdata_2276',['isData',['../classaudio__tools_1_1_meta_data_i_c_y.html#aed60855fb128d2701a2764d23c141b7b',1,'audio_tools::MetaDataICY']]],
- ['isdatacomplete_2277',['isDataComplete',['../classaudio__tools_1_1_w_a_v_header.html#a1ff465571c87cad9bcbfcfd1d573b7d2',1,'audio_tools::WAVHeader::isDataComplete()'],['../classaudio__tools_1_1_wav_i_m_a_header.html#a1ff465571c87cad9bcbfcfd1d573b7d2',1,'audio_tools::WavIMAHeader::isDataComplete()']]],
- ['isdecimateactive_2278',['isDecimateActive',['../classaudio__tools_1_1_driver_p_w_m_base.html#ac3bab74611c4c6d7e2334036506444ad',1,'audio_tools::DriverPWMBase::isDecimateActive()'],['../classaudio__tools_1_1_analog_driver_arduino.html#a2f783aba1c48dbdaf2d2be77681130e9',1,'audio_tools::AnalogDriverArduino::isDecimateActive()']]],
- ['isdeletable_2279',['isDeletable',['../classaudio__tools_1_1_adapter_print_to_audio_output.html#a33c6511baf83796cbba956c97935ae39',1,'audio_tools::AdapterPrintToAudioOutput::isDeletable()'],['../classaudio__tools_1_1_adapter_audio_stream_to_audio_output.html#a33c6511baf83796cbba956c97935ae39',1,'audio_tools::AdapterAudioStreamToAudioOutput::isDeletable()'],['../classaudio__tools_1_1_audio_output.html#a33c6511baf83796cbba956c97935ae39',1,'audio_tools::AudioOutput::isDeletable()']]],
- ['isempty_2280',['isEmpty',['../classaudio__tools_1_1_str.html#a6969fa34d073611e0b789cd68eec7ae3',1,'audio_tools::Str']]],
- ['iseof_2281',['isEof',['../classaudio__tools_1_1_f_l_a_c_decoder.html#a5e42c1296c0e33ef618623e8ce26d5ed',1,'audio_tools::FLACDecoder']]],
- ['isfadecomplete_2282',['isFadeComplete',['../classaudio__tools_1_1_fade.html#aa9a08ad029bc41372b16fd5f36a77bb0',1,'audio_tools::Fade']]],
- ['isfiltermetadata_2283',['isFilterMetaData',['../classaudio__tools_1_1_m_p3_decoder_helix.html#a17be49aa378f9d31c18d5bcd616d4997',1,'audio_tools::MP3DecoderHelix']]],
- ['isfull_2284',['isFull',['../classaudio__tools_1_1_n_buffer.html#a3e70330939fdfc4dbc2f60c1a660584d',1,'audio_tools::NBuffer::isFull()'],['../classaudio__tools_1_1_ring_buffer_file.html#a91336dd99913834c918d58f4223d7ac4',1,'audio_tools::RingBufferFile::isFull()'],['../classaudio__tools_1_1_ring_buffer.html#aac0ab007845c29d8d4c9b96a3cbbe2c9',1,'audio_tools::RingBuffer::isFull()'],['../classaudio__tools_1_1_base_buffer.html#a2ef136d1e2a64e1343ab980e85c225f7',1,'audio_tools::BaseBuffer::isFull()'],['../classaudio__tools_1_1_variable_speed_ring_buffer.html#aac0ab007845c29d8d4c9b96a3cbbe2c9',1,'audio_tools::VariableSpeedRingBuffer::isFull()'],['../classaudio__tools_1_1_variable_speed_ring_buffer180.html#aac0ab007845c29d8d4c9b96a3cbbe2c9',1,'audio_tools::VariableSpeedRingBuffer180::isFull()'],['../classaudio__tools_1_1_single_buffer.html#a91336dd99913834c918d58f4223d7ac4',1,'audio_tools::SingleBuffer::isFull()'],['../classaudio__tools_1_1_variable_speed_ring_buffer_simple.html#aac0ab007845c29d8d4c9b96a3cbbe2c9',1,'audio_tools::VariableSpeedRingBufferSimple::isFull()']]],
- ['isheader_2285',['isHeader',['../structaudio__tools_1_1_m_p4_atom.html#a1a40e00b82e41b6f87ccd5e7c597b811',1,'audio_tools::MP4Atom::isHeader()'],['../classaudio__tools_1_1_container_m_p4.html#abb16a11e1a07b94615c8ee63c9c9e7f9',1,'audio_tools::ContainerMP4::isHeader()']]],
- ['isinputfromstream_2286',['isInputFromStream',['../classaudio__tools_1_1_f_l_a_c_decoder.html#aff0707980f7e5ac68e0afd000a3b8d9a',1,'audio_tools::FLACDecoder']]],
- ['isinteger_2287',['isInteger',['../classaudio__tools_1_1_str.html#a47a971585836b0cd992f6436d9292114',1,'audio_tools::Str']]],
- ['isloopactive_2288',['isLoopActive',['../classaudio__tools_1_1_file_loop_t.html#a67ce88ad4f1fa5f2bacbcd36108899b1',1,'audio_tools::FileLoopT']]],
- ['ismatching_2289',['isMatching',['../classaudio__tools_1_1_variable_speed_ring_buffer.html#afd2bf4a15faa8cf5f78e64b2803b756e',1,'audio_tools::VariableSpeedRingBuffer']]],
- ['ismetadataready_2290',['isMetadataReady',['../classaudio__tools_1_1_a_v_i_decoder.html#a9fb7f239a8e1bac57c425710309582ad',1,'audio_tools::AVIDecoder']]],
- ['isonheap_2291',['isOnHeap',['../classaudio__tools_1_1_str.html#a56a7f9947a65550e3790ae568b10c045',1,'audio_tools::Str::isOnHeap()'],['../classaudio__tools_1_1_str_ext.html#aff2c3c2c0fe65d0f2be5f2f9ae553d22',1,'audio_tools::StrExt::isOnHeap()']]],
- ['isplaying_2292',['isPlaying',['../classaudio__tools_1_1_timed_stream.html#a8438e3403946accc1986a05b89ee7b03',1,'audio_tools::TimedStream']]],
- ['isprocessed_2293',['isProcessed',['../classaudio__tools_1_1_meta_data_i_d3_v2.html#a495d7ae386d98dcf6bc1af2a6c1b37b7',1,'audio_tools::MetaDataID3V2']]],
- ['isr_2294',['ISR',['../namespaceaudio__tools.html#aa2e2ed9bbfc3a6778916dff5c270980c',1,'audio_tools']]],
- ['isready_2295',['isReady',['../classaudio__tools_1_1_a2_d_p_stream.html#acbed040576a7a18e2d9c46b2f15e0162',1,'audio_tools::A2DPStream::isReady()'],['../classaudio__tools_1_1_http_request.html#acbed040576a7a18e2d9c46b2f15e0162',1,'audio_tools::HttpRequest::isReady()']]],
- ['isresultpcm_2296',['isResultPCM',['../classaudio__tools_1_1_audio_decoder.html#a2b485ba5b9d96f94384f4a3840f84314',1,'audio_tools::AudioDecoder::isResultPCM()'],['../classaudio__tools_1_1_copy_decoder.html#a2b485ba5b9d96f94384f4a3840f84314',1,'audio_tools::CopyDecoder::isResultPCM()']]],
- ['issilenceoninactive_2297',['isSilenceOnInactive',['../classaudio__tools_1_1_audio_player.html#a2dd21275f31c7481ff4d7918f9258c8d',1,'audio_tools::AudioPlayer']]],
- ['isstarted_2298',['isStarted',['../classaudio__tools_1_1_r_t_s_p_source_from_audio_stream.html#a631cfaa8ccf1daea6ec25e7645ea93b0',1,'audio_tools::RTSPSourceFromAudioStream']]],
- ['isstreamatom_2299',['isStreamAtom',['../structaudio__tools_1_1_m_p4_atom.html#a6b31e592e0ffbedab554039d694bb594',1,'audio_tools::MP4Atom']]],
- ['isvalidaudiofile_2300',['isValidAudioFile',['../classaudio__tools_1_1_audio_source_s_t_d.html#af3d52547e915766aafe301922ef2d7c0',1,'audio_tools::AudioSourceSTD::isValidAudioFile()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a9a09eb2c395e63d7253315539a919818',1,'audio_tools::AudioSourceSDFAT::isValidAudioFile()'],['../classaudio__tools_1_1_s_d_direct.html#aaea0e447047cf3367ee8c80bbc90b0a2',1,'audio_tools::SDDirect::isValidAudioFile()'],['../classaudio__tools_1_1_s_d_index.html#aaea0e447047cf3367ee8c80bbc90b0a2',1,'audio_tools::SDIndex::isValidAudioFile()']]],
- ['isvalidstatus_2301',['isValidStatus',['../classaudio__tools_1_1_http_header.html#ab6ee85054d80b78c9e7fa09fce598523',1,'audio_tools::HttpHeader']]]
+ ['i2s_5firqhandler_2251',['I2S_IRQHandler',['../namespaceaudio__tools.html#ad663a1188408b698e16703cd27bf955f',1,'audio_tools']]],
+ ['i2sconfig_2252',['I2SConfig',['../classaudio__tools_1_1_i2_s_config.html#ab3b2f124f03d7d586841c2ce12ccc35c',1,'audio_tools::I2SConfig::I2SConfig(RxTxMode mode)'],['../classaudio__tools_1_1_i2_s_config.html#a121806f3861b13229ad26d0b33497cab',1,'audio_tools::I2SConfig::I2SConfig(const I2SConfig &cfg)=default']]],
+ ['icystream_2253',['ICYStream',['../classaudio__tools_1_1_i_c_y_stream.html#a8615d18be26f133e80717d6845a645d4',1,'audio_tools::ICYStream']]],
+ ['id_2254',['id',['../classaudio__tools_1_1_audio_effect.html#a4a716406d3d9d4fdbbe46f100e648f3b',1,'audio_tools::AudioEffect']]],
+ ['ifft_2255',['ifft',['../classaudio__tools_1_1_audio_real_f_f_t.html#ae768aa2f0c02d364d6fdf522fbd20f33',1,'audio_tools::AudioRealFFT']]],
+ ['imgarray_2256',['imgArray',['../classaudio__tools_1_1_audio_real_f_f_t.html#abbba1494243d8dd872ba5e59a66c6eec',1,'audio_tools::AudioRealFFT']]],
+ ['incbufferindex_2257',['incBufferIndex',['../classaudio__tools_1_1_filter_effect_base.html#ada4fddd530129b114ca81a70b74d3f6d',1,'audio_tools::FilterEffectBase']]],
+ ['incdelaybuffreadindex_2258',['incDelayBuffReadIndex',['../classaudio__tools_1_1_delay_effect_base.html#ae5c4dda07d76593af380a0d1aa00f085',1,'audio_tools::DelayEffectBase']]],
+ ['incdelaybuffwriteindex_2259',['incDelayBuffWriteIndex',['../classaudio__tools_1_1_delay_effect_base.html#a703826b314491f5ddfb4cf7edbc517cc',1,'audio_tools::DelayEffectBase']]],
+ ['incrementvolume_2260',['incrementVolume',['../classaudio__tools_1_1_audio_kit_stream.html#a5874fbce51abb9b1a221c514da1b833a',1,'audio_tools::AudioKitStream']]],
+ ['index_2261',['index',['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a019749328da42c4814af71d3e3b647ad',1,'audio_tools::AudioSourceSDFAT::index()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a019749328da42c4814af71d3e3b647ad',1,'audio_tools::AudioSourceSDFAT::index()'],['../classaudio__tools_1_1_audio_source_s_t_d.html#a019749328da42c4814af71d3e3b647ad',1,'audio_tools::AudioSourceSTD::index()'],['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html#a019749328da42c4814af71d3e3b647ad',1,'audio_tools::AudioSourceSPIFFS::index()'],['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html#a019749328da42c4814af71d3e3b647ad',1,'audio_tools::AudioSourceSDMMC::index()'],['../classaudio__tools_1_1_audio_source_s_d.html#a019749328da42c4814af71d3e3b647ad',1,'audio_tools::AudioSourceSD::index()'],['../classaudio__tools_1_1_audio_source_little_f_s.html#a019749328da42c4814af71d3e3b647ad',1,'audio_tools::AudioSourceLittleFS::index()'],['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html#a019749328da42c4814af71d3e3b647ad',1,'audio_tools::AudioSourceIdxSDMMC::index()'],['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#a019749328da42c4814af71d3e3b647ad',1,'audio_tools::AudioSourceIdxSDFAT::index()'],['../classaudio__tools_1_1_audio_source_idx_s_d.html#a019749328da42c4814af71d3e3b647ad',1,'audio_tools::AudioSourceIdxSD::index()']]],
+ ['indexof_2262',['indexOf',['../classaudio__tools_1_1_str.html#aee2206b824ab694471714e3fdc981652',1,'audio_tools::Str::indexOf(const char c, int start=0)'],['../classaudio__tools_1_1_str.html#adc736a9ff3c54b9a6ad3e44ec61f4a42',1,'audio_tools::Str::indexOf(const char *cont, int start=0)']]],
+ ['info_2263',['info',['../classdsp__memory__manager.html#a68eb98597cd2ad0dbbfb268ffd54cc39',1,'dsp_memory_manager']]],
+ ['infocallback_2264',['infoCallback',['../classaudio__tools_1_1_a_a_c_decoder_helix.html#a65f88868fa2fb316e77025a71f455f77',1,'audio_tools::AACDecoderHelix::infoCallback()'],['../classaudio__tools_1_1_m_p3_decoder_helix.html#a9941c799810634270eef8544a19d7d6f',1,'audio_tools::MP3DecoderHelix::infoCallback()']]],
+ ['inputmerge_2265',['InputMerge',['../classaudio__tools_1_1_input_merge.html#a0b83ea30e35110ce9cc81292303fee18',1,'audio_tools::InputMerge::InputMerge()=default'],['../classaudio__tools_1_1_input_merge.html#ae734e03b0b6a2b57766b872e4c7e8709',1,'audio_tools::InputMerge::InputMerge(Stream &left, Stream &right)']]],
+ ['insert_2266',['insert',['../classaudio__tools_1_1_str.html#aea77e43270869fc69c84d014587e4fd0',1,'audio_tools::Str']]],
+ ['insertsorted_2267',['insertSorted',['../classaudio__tools_1_1_audio_f_f_t_base.html#ac9fb623e1f6da666284dbdf4895f0351',1,'audio_tools::AudioFFTBase']]],
+ ['interpolate_2268',['interpolate',['../classaudio__tools_1_1_variable_speed_ring_buffer.html#a3bce71572014e53be5e85c35a8d9192c',1,'audio_tools::VariableSpeedRingBuffer']]],
+ ['interpreter_2269',['interpreter',['../classaudio__tools_1_1_tf_lite_audio_stream.html#a8fa6e43d582535e45e6756fb7b3ab816',1,'audio_tools::TfLiteAudioStream']]],
+ ['is_2270',['is',['../structaudio__tools_1_1_m_p4_atom.html#aa1e15f0d913907e4a59fd73ca9022f2a',1,'audio_tools::MP4Atom']]],
+ ['is_5fnew_5ffile_2271',['is_new_file',['../classaudio__tools_1_1_m_t_s_decoder.html#a23db723254d6cad6290008acdb3ccdae',1,'audio_tools::MTSDecoder']]],
+ ['isactive_2272',['isActive',['../classaudio__tools_1_1_audio_player.html#a62eb104f87ff88c21fa01af29dbf0ee2',1,'audio_tools::AudioPlayer::isActive()'],['../classaudio__tools_1_1_stream_copy_t.html#aa1f512ab0fcc05612f8e3d6a4664ce9a',1,'audio_tools::StreamCopyT::isActive()'],['../classaudio__tools_1_1_on_off_output.html#aa1f512ab0fcc05612f8e3d6a4664ce9a',1,'audio_tools::OnOffOutput::isActive()'],['../classaudio__tools_1_1_timed_stream.html#aa1f512ab0fcc05612f8e3d6a4664ce9a',1,'audio_tools::TimedStream::isActive()'],['../classaudio__tools_1_1_r_t_s_p_source_from_audio_stream.html#aa1f512ab0fcc05612f8e3d6a4664ce9a',1,'audio_tools::RTSPSourceFromAudioStream::isActive()'],['../classaudio__tools_1_1_default_synthesizer_channel.html#aa7dd2dbf5a8f49e991c84dcd6e2331c1',1,'audio_tools::DefaultSynthesizerChannel::isActive()'],['../classaudio__tools_1_1_abstract_synthesizer_channel.html#acfb3416c9355c4756aedad5a90e25b23',1,'audio_tools::AbstractSynthesizerChannel::isActive()'],['../classaudio__tools_1_1_sound_generator.html#a62eb104f87ff88c21fa01af29dbf0ee2',1,'audio_tools::SoundGenerator::isActive()']]],
+ ['isascii_2273',['isAscii',['../classaudio__tools_1_1_meta_data_i_c_y.html#a502e58028d924f98f502609518c2b053',1,'audio_tools::MetaDataICY::isAscii()'],['../classaudio__tools_1_1_meta_data_i_d3_v2.html#a9d15f283130f69e61c975d8895f21a1c',1,'audio_tools::MetaDataID3V2::isAscii()']]],
+ ['isaudible_2274',['isAudible',['../classaudio__tools_1_1_musical_notes.html#aad21d394b5564867c744c3f92cfb602c',1,'audio_tools::MusicalNotes']]],
+ ['isautonext_2275',['isAutoNext',['../classaudio__tools_1_1_audio_source_u_r_l.html#aa1a2ebc04c10e3b7c5704943dc22b1cb',1,'audio_tools::AudioSourceURL::isAutoNext()'],['../classaudio__tools_1_1_audio_source_callback.html#af14984986d0c86ebe1717f8ba8ee00bc',1,'audio_tools::AudioSourceCallback::isAutoNext()'],['../classaudio__tools_1_1_audio_source.html#aa1a2ebc04c10e3b7c5704943dc22b1cb',1,'audio_tools::AudioSource::isAutoNext()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#aa1a2ebc04c10e3b7c5704943dc22b1cb',1,'audio_tools::AudioSourceSDFAT::isAutoNext()'],['../classaudio__tools_1_1_audio_source_s_t_d.html#aa1a2ebc04c10e3b7c5704943dc22b1cb',1,'audio_tools::AudioSourceSTD::isAutoNext()'],['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html#aa1a2ebc04c10e3b7c5704943dc22b1cb',1,'audio_tools::AudioSourceSPIFFS::isAutoNext()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#aa1a2ebc04c10e3b7c5704943dc22b1cb',1,'audio_tools::AudioSourceSDFAT::isAutoNext()'],['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html#aa1a2ebc04c10e3b7c5704943dc22b1cb',1,'audio_tools::AudioSourceSDMMC::isAutoNext()'],['../classaudio__tools_1_1_audio_source_idx_s_d.html#aa1a2ebc04c10e3b7c5704943dc22b1cb',1,'audio_tools::AudioSourceIdxSD::isAutoNext()'],['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#aa1a2ebc04c10e3b7c5704943dc22b1cb',1,'audio_tools::AudioSourceIdxSDFAT::isAutoNext()'],['../classaudio__tools_1_1_audio_source_little_f_s.html#aa1a2ebc04c10e3b7c5704943dc22b1cb',1,'audio_tools::AudioSourceLittleFS::isAutoNext()'],['../classaudio__tools_1_1_audio_source_s_d.html#aa1a2ebc04c10e3b7c5704943dc22b1cb',1,'audio_tools::AudioSourceSD::isAutoNext()'],['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html#aa1a2ebc04c10e3b7c5704943dc22b1cb',1,'audio_tools::AudioSourceIdxSDMMC::isAutoNext()']]],
+ ['ischeckavailableforwrite_2276',['isCheckAvailableForWrite',['../classaudio__tools_1_1_stream_copy_t.html#ada93b38d090efbbdb87020aca15f7b37',1,'audio_tools::StreamCopyT']]],
+ ['isclientconnected_2277',['isClientConnected',['../classaudio__tools_1_1_audio_server.html#a3bee9230cc529af42211e084fb9c78b5',1,'audio_tools::AudioServer']]],
+ ['isconnected_2278',['isConnected',['../classaudio__tools_1_1_a2_d_p_stream.html#a772f8f0487e0d3804e9da7585e23a29a',1,'audio_tools::A2DPStream']]],
+ ['isconst_2279',['isConst',['../classaudio__tools_1_1_str.html#ae7bbead3f07130d4bab2b78efe62147e',1,'audio_tools::Str::isConst()'],['../classaudio__tools_1_1_str_ext.html#a6759bdc4a7ceb4f300f1d1e3f5f4713d',1,'audio_tools::StrExt::isConst()']]],
+ ['isdata_2280',['isData',['../classaudio__tools_1_1_meta_data_i_c_y.html#aed60855fb128d2701a2764d23c141b7b',1,'audio_tools::MetaDataICY']]],
+ ['isdatacomplete_2281',['isDataComplete',['../classaudio__tools_1_1_w_a_v_header.html#a1ff465571c87cad9bcbfcfd1d573b7d2',1,'audio_tools::WAVHeader::isDataComplete()'],['../classaudio__tools_1_1_wav_i_m_a_header.html#a1ff465571c87cad9bcbfcfd1d573b7d2',1,'audio_tools::WavIMAHeader::isDataComplete()']]],
+ ['isdecimateactive_2282',['isDecimateActive',['../classaudio__tools_1_1_driver_p_w_m_base.html#ac3bab74611c4c6d7e2334036506444ad',1,'audio_tools::DriverPWMBase::isDecimateActive()'],['../classaudio__tools_1_1_analog_driver_arduino.html#a2f783aba1c48dbdaf2d2be77681130e9',1,'audio_tools::AnalogDriverArduino::isDecimateActive()']]],
+ ['isdeletable_2283',['isDeletable',['../classaudio__tools_1_1_adapter_print_to_audio_output.html#a33c6511baf83796cbba956c97935ae39',1,'audio_tools::AdapterPrintToAudioOutput::isDeletable()'],['../classaudio__tools_1_1_adapter_audio_stream_to_audio_output.html#a33c6511baf83796cbba956c97935ae39',1,'audio_tools::AdapterAudioStreamToAudioOutput::isDeletable()'],['../classaudio__tools_1_1_audio_output.html#a33c6511baf83796cbba956c97935ae39',1,'audio_tools::AudioOutput::isDeletable()']]],
+ ['isempty_2284',['isEmpty',['../classaudio__tools_1_1_str.html#a6969fa34d073611e0b789cd68eec7ae3',1,'audio_tools::Str']]],
+ ['iseof_2285',['isEof',['../classaudio__tools_1_1_f_l_a_c_decoder.html#a5e42c1296c0e33ef618623e8ce26d5ed',1,'audio_tools::FLACDecoder']]],
+ ['isfadecomplete_2286',['isFadeComplete',['../classaudio__tools_1_1_fade.html#aa9a08ad029bc41372b16fd5f36a77bb0',1,'audio_tools::Fade']]],
+ ['isfiltermetadata_2287',['isFilterMetaData',['../classaudio__tools_1_1_m_p3_decoder_helix.html#a17be49aa378f9d31c18d5bcd616d4997',1,'audio_tools::MP3DecoderHelix']]],
+ ['isfull_2288',['isFull',['../classaudio__tools_1_1_n_buffer.html#a3e70330939fdfc4dbc2f60c1a660584d',1,'audio_tools::NBuffer::isFull()'],['../classaudio__tools_1_1_ring_buffer_file.html#a91336dd99913834c918d58f4223d7ac4',1,'audio_tools::RingBufferFile::isFull()'],['../classaudio__tools_1_1_ring_buffer.html#aac0ab007845c29d8d4c9b96a3cbbe2c9',1,'audio_tools::RingBuffer::isFull()'],['../classaudio__tools_1_1_base_buffer.html#a2ef136d1e2a64e1343ab980e85c225f7',1,'audio_tools::BaseBuffer::isFull()'],['../classaudio__tools_1_1_variable_speed_ring_buffer.html#aac0ab007845c29d8d4c9b96a3cbbe2c9',1,'audio_tools::VariableSpeedRingBuffer::isFull()'],['../classaudio__tools_1_1_variable_speed_ring_buffer180.html#aac0ab007845c29d8d4c9b96a3cbbe2c9',1,'audio_tools::VariableSpeedRingBuffer180::isFull()'],['../classaudio__tools_1_1_single_buffer.html#a91336dd99913834c918d58f4223d7ac4',1,'audio_tools::SingleBuffer::isFull()'],['../classaudio__tools_1_1_variable_speed_ring_buffer_simple.html#aac0ab007845c29d8d4c9b96a3cbbe2c9',1,'audio_tools::VariableSpeedRingBufferSimple::isFull()']]],
+ ['isheader_2289',['isHeader',['../structaudio__tools_1_1_m_p4_atom.html#a1a40e00b82e41b6f87ccd5e7c597b811',1,'audio_tools::MP4Atom::isHeader()'],['../classaudio__tools_1_1_container_m_p4.html#abb16a11e1a07b94615c8ee63c9c9e7f9',1,'audio_tools::ContainerMP4::isHeader()']]],
+ ['isinputfromstream_2290',['isInputFromStream',['../classaudio__tools_1_1_f_l_a_c_decoder.html#aff0707980f7e5ac68e0afd000a3b8d9a',1,'audio_tools::FLACDecoder']]],
+ ['isinteger_2291',['isInteger',['../classaudio__tools_1_1_str.html#a47a971585836b0cd992f6436d9292114',1,'audio_tools::Str']]],
+ ['isloopactive_2292',['isLoopActive',['../classaudio__tools_1_1_file_loop_t.html#a67ce88ad4f1fa5f2bacbcd36108899b1',1,'audio_tools::FileLoopT']]],
+ ['ismatching_2293',['isMatching',['../classaudio__tools_1_1_variable_speed_ring_buffer.html#afd2bf4a15faa8cf5f78e64b2803b756e',1,'audio_tools::VariableSpeedRingBuffer']]],
+ ['ismetadataready_2294',['isMetadataReady',['../classaudio__tools_1_1_a_v_i_decoder.html#a9fb7f239a8e1bac57c425710309582ad',1,'audio_tools::AVIDecoder']]],
+ ['isonheap_2295',['isOnHeap',['../classaudio__tools_1_1_str.html#a56a7f9947a65550e3790ae568b10c045',1,'audio_tools::Str::isOnHeap()'],['../classaudio__tools_1_1_str_ext.html#aff2c3c2c0fe65d0f2be5f2f9ae553d22',1,'audio_tools::StrExt::isOnHeap()']]],
+ ['isplaying_2296',['isPlaying',['../classaudio__tools_1_1_timed_stream.html#a8438e3403946accc1986a05b89ee7b03',1,'audio_tools::TimedStream']]],
+ ['isprocessed_2297',['isProcessed',['../classaudio__tools_1_1_meta_data_i_d3_v2.html#a495d7ae386d98dcf6bc1af2a6c1b37b7',1,'audio_tools::MetaDataID3V2']]],
+ ['isr_2298',['ISR',['../namespaceaudio__tools.html#aa2e2ed9bbfc3a6778916dff5c270980c',1,'audio_tools']]],
+ ['isready_2299',['isReady',['../classaudio__tools_1_1_a2_d_p_stream.html#acbed040576a7a18e2d9c46b2f15e0162',1,'audio_tools::A2DPStream::isReady()'],['../classaudio__tools_1_1_http_request.html#acbed040576a7a18e2d9c46b2f15e0162',1,'audio_tools::HttpRequest::isReady()']]],
+ ['isresultpcm_2300',['isResultPCM',['../classaudio__tools_1_1_audio_decoder.html#a2b485ba5b9d96f94384f4a3840f84314',1,'audio_tools::AudioDecoder::isResultPCM()'],['../classaudio__tools_1_1_copy_decoder.html#a2b485ba5b9d96f94384f4a3840f84314',1,'audio_tools::CopyDecoder::isResultPCM()']]],
+ ['issilenceoninactive_2301',['isSilenceOnInactive',['../classaudio__tools_1_1_audio_player.html#a2dd21275f31c7481ff4d7918f9258c8d',1,'audio_tools::AudioPlayer']]],
+ ['isstarted_2302',['isStarted',['../classaudio__tools_1_1_r_t_s_p_source_from_audio_stream.html#a631cfaa8ccf1daea6ec25e7645ea93b0',1,'audio_tools::RTSPSourceFromAudioStream']]],
+ ['isstreamatom_2303',['isStreamAtom',['../structaudio__tools_1_1_m_p4_atom.html#a6b31e592e0ffbedab554039d694bb594',1,'audio_tools::MP4Atom']]],
+ ['isvalidaudiofile_2304',['isValidAudioFile',['../classaudio__tools_1_1_audio_source_s_t_d.html#af3d52547e915766aafe301922ef2d7c0',1,'audio_tools::AudioSourceSTD::isValidAudioFile()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#a9a09eb2c395e63d7253315539a919818',1,'audio_tools::AudioSourceSDFAT::isValidAudioFile()'],['../classaudio__tools_1_1_s_d_direct.html#aaea0e447047cf3367ee8c80bbc90b0a2',1,'audio_tools::SDDirect::isValidAudioFile()'],['../classaudio__tools_1_1_s_d_index.html#aaea0e447047cf3367ee8c80bbc90b0a2',1,'audio_tools::SDIndex::isValidAudioFile()']]],
+ ['isvalidstatus_2305',['isValidStatus',['../classaudio__tools_1_1_http_header.html#ab6ee85054d80b78c9e7fa09fce598523',1,'audio_tools::HttpHeader']]]
];
diff --git a/search/functions_a.js b/search/functions_a.js
index 21add0dfd7..86826d51f9 100644
--- a/search/functions_a.js
+++ b/search/functions_a.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['keyoff_2302',['keyOff',['../classaudio__tools_1_1_abstract_synthesizer_channel.html#a225bc4c571a71d6c1bcecf47a6ffb650',1,'audio_tools::AbstractSynthesizerChannel::keyOff()'],['../classaudio__tools_1_1_default_synthesizer_channel.html#a248b8fd38d66a48400b8d44e78634edb',1,'audio_tools::DefaultSynthesizerChannel::keyOff()']]],
- ['keyon_2303',['keyOn',['../classaudio__tools_1_1_abstract_synthesizer_channel.html#afe2ceeff51e99722f7b6855b674797e9',1,'audio_tools::AbstractSynthesizerChannel::keyOn()'],['../classaudio__tools_1_1_default_synthesizer_channel.html#a1fbaf5d254e757c2593fa1a52dd89728',1,'audio_tools::DefaultSynthesizerChannel::keyOn()']]]
+ ['keyoff_2306',['keyOff',['../classaudio__tools_1_1_abstract_synthesizer_channel.html#a225bc4c571a71d6c1bcecf47a6ffb650',1,'audio_tools::AbstractSynthesizerChannel::keyOff()'],['../classaudio__tools_1_1_default_synthesizer_channel.html#a248b8fd38d66a48400b8d44e78634edb',1,'audio_tools::DefaultSynthesizerChannel::keyOff()']]],
+ ['keyon_2307',['keyOn',['../classaudio__tools_1_1_abstract_synthesizer_channel.html#afe2ceeff51e99722f7b6855b674797e9',1,'audio_tools::AbstractSynthesizerChannel::keyOn()'],['../classaudio__tools_1_1_default_synthesizer_channel.html#a1fbaf5d254e757c2593fa1a52dd89728',1,'audio_tools::DefaultSynthesizerChannel::keyOn()']]]
];
diff --git a/search/functions_b.js b/search/functions_b.js
index 1d466aaeb4..18b1984c41 100644
--- a/search/functions_b.js
+++ b/search/functions_b.js
@@ -1,17 +1,17 @@
var searchData=
[
- ['label_2304',['label',['../class_u_i.html#aa9f75f74bf982c82dce89ffb658d22e6',1,'UI']]],
- ['labelvalue_2305',['labelValue',['../classaudio__tools_1_1_faust_stream.html#a8bb1706b56e2745064e760e2ceaa1e0c',1,'audio_tools::FaustStream']]],
- ['lastindexof_2306',['lastIndexOf',['../classaudio__tools_1_1_str.html#a74015cf369c4225c2e556e6365427c39',1,'audio_tools::Str']]],
- ['led_2307',['led',['../classaudio__tools_1_1_l_e_d_output.html#ac0e15fe5ca7df4136adea836883f9183',1,'audio_tools::LEDOutput']]],
- ['ledcount_2308',['ledCount',['../classaudio__tools_1_1_l_e_d_output.html#a7dc590f51b0b6777b490b40ca3d9d938',1,'audio_tools::LEDOutput']]],
- ['leddata_2309',['ledData',['../classaudio__tools_1_1_l_e_d_output.html#a7fcffd187dd3370848cd04c8cd1371ac',1,'audio_tools::LEDOutput']]],
- ['ledoutput_2310',['LEDOutput',['../classaudio__tools_1_1_l_e_d_output.html#a51d2826befbf2201390c9bdea0ac823f',1,'audio_tools::LEDOutput::LEDOutput()=default'],['../classaudio__tools_1_1_l_e_d_output.html#ad3981b01094250b0f62c77640e91fafd',1,'audio_tools::LEDOutput::LEDOutput(FFTDisplay &fft)'],['../classaudio__tools_1_1_l_e_d_output.html#a5ca0f2c13c6e1d848aa8493f256b0d33',1,'audio_tools::LEDOutput::LEDOutput(VolumeOutput &vol)']]],
- ['ledoutputunor4_2311',['LEDOutputUnoR4',['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a2dd118e6e241241563061e60d0e14640',1,'audio_tools::LEDOutputUnoR4::LEDOutputUnoR4(VolumeOutput &vol)'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a7c3cd19d115637b33835cf3790594e1e',1,'audio_tools::LEDOutputUnoR4::LEDOutputUnoR4(FFTDisplay &fft)'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#abcc688ba13fe7da7213d8158214dda2a',1,'audio_tools::LEDOutputUnoR4::LEDOutputUnoR4()=default']]],
- ['ledxy_2312',['ledXY',['../classaudio__tools_1_1_l_e_d_output.html#a205e2d3cf1471979674fd6e5a6441942',1,'audio_tools::LEDOutput::ledXY()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#ac14efdb2bc70afc602a2150970debd93',1,'audio_tools::LEDOutputUnoR4::ledXY()']]],
- ['length_2313',['length',['../classaudio__tools_1_1_str.html#a4c78c47ce1c204f9d233485b8036ac0e',1,'audio_tools::Str::length()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#a3d0f4ae571310c6ed081daa3985ecb47',1,'audio_tools::AudioFFTBase::length()']]],
- ['limit_2314',['limit',['../classaudio__tools_1_1_volume_control.html#ace0e1dc6943007f979f702e7b074b60e',1,'audio_tools::VolumeControl']]],
- ['list_2315',['List',['../classaudio__tools_1_1_list.html#a17e6c90f14225bdac5c65ed915b0a2f6',1,'audio_tools::List::List()'],['../classaudio__tools_1_1_list.html#acd79405491ac84e17f821734d0e74022',1,'audio_tools::List::List(List &ref)=default'],['../classaudio__tools_1_1_list.html#a67e070debc5833e6c23ae92c9d8e8725',1,'audio_tools::List::List(const T(&a)[N])']]],
- ['listdir_2316',['listDir',['../classaudio__tools_1_1_s_d_direct.html#aadba1a05a18816e212611289e860ad14',1,'audio_tools::SDDirect::listDir()'],['../classaudio__tools_1_1_s_d_index.html#a51580b39d56dcffff525b5110d18944e',1,'audio_tools::SDIndex::listDir()']]],
- ['ltrim_2317',['ltrim',['../classaudio__tools_1_1_str.html#ab8b1977a1bbcd17a0f55714ac2cb50dc',1,'audio_tools::Str']]]
+ ['label_2308',['label',['../class_u_i.html#aa9f75f74bf982c82dce89ffb658d22e6',1,'UI']]],
+ ['labelvalue_2309',['labelValue',['../classaudio__tools_1_1_faust_stream.html#a8bb1706b56e2745064e760e2ceaa1e0c',1,'audio_tools::FaustStream']]],
+ ['lastindexof_2310',['lastIndexOf',['../classaudio__tools_1_1_str.html#a74015cf369c4225c2e556e6365427c39',1,'audio_tools::Str']]],
+ ['led_2311',['led',['../classaudio__tools_1_1_l_e_d_output.html#ac0e15fe5ca7df4136adea836883f9183',1,'audio_tools::LEDOutput']]],
+ ['ledcount_2312',['ledCount',['../classaudio__tools_1_1_l_e_d_output.html#a7dc590f51b0b6777b490b40ca3d9d938',1,'audio_tools::LEDOutput']]],
+ ['leddata_2313',['ledData',['../classaudio__tools_1_1_l_e_d_output.html#a7fcffd187dd3370848cd04c8cd1371ac',1,'audio_tools::LEDOutput']]],
+ ['ledoutput_2314',['LEDOutput',['../classaudio__tools_1_1_l_e_d_output.html#a51d2826befbf2201390c9bdea0ac823f',1,'audio_tools::LEDOutput::LEDOutput()=default'],['../classaudio__tools_1_1_l_e_d_output.html#ad3981b01094250b0f62c77640e91fafd',1,'audio_tools::LEDOutput::LEDOutput(FFTDisplay &fft)'],['../classaudio__tools_1_1_l_e_d_output.html#a5ca0f2c13c6e1d848aa8493f256b0d33',1,'audio_tools::LEDOutput::LEDOutput(VolumeOutput &vol)']]],
+ ['ledoutputunor4_2315',['LEDOutputUnoR4',['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a2dd118e6e241241563061e60d0e14640',1,'audio_tools::LEDOutputUnoR4::LEDOutputUnoR4(VolumeOutput &vol)'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#a7c3cd19d115637b33835cf3790594e1e',1,'audio_tools::LEDOutputUnoR4::LEDOutputUnoR4(FFTDisplay &fft)'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#abcc688ba13fe7da7213d8158214dda2a',1,'audio_tools::LEDOutputUnoR4::LEDOutputUnoR4()=default']]],
+ ['ledxy_2316',['ledXY',['../classaudio__tools_1_1_l_e_d_output.html#a205e2d3cf1471979674fd6e5a6441942',1,'audio_tools::LEDOutput::ledXY()'],['../classaudio__tools_1_1_l_e_d_output_uno_r4.html#ac14efdb2bc70afc602a2150970debd93',1,'audio_tools::LEDOutputUnoR4::ledXY()']]],
+ ['length_2317',['length',['../classaudio__tools_1_1_str.html#a4c78c47ce1c204f9d233485b8036ac0e',1,'audio_tools::Str::length()'],['../classaudio__tools_1_1_audio_f_f_t_base.html#a3d0f4ae571310c6ed081daa3985ecb47',1,'audio_tools::AudioFFTBase::length()']]],
+ ['limit_2318',['limit',['../classaudio__tools_1_1_volume_control.html#ace0e1dc6943007f979f702e7b074b60e',1,'audio_tools::VolumeControl']]],
+ ['list_2319',['List',['../classaudio__tools_1_1_list.html#a17e6c90f14225bdac5c65ed915b0a2f6',1,'audio_tools::List::List()'],['../classaudio__tools_1_1_list.html#acd79405491ac84e17f821734d0e74022',1,'audio_tools::List::List(List &ref)=default'],['../classaudio__tools_1_1_list.html#a67e070debc5833e6c23ae92c9d8e8725',1,'audio_tools::List::List(const T(&a)[N])']]],
+ ['listdir_2320',['listDir',['../classaudio__tools_1_1_s_d_direct.html#aadba1a05a18816e212611289e860ad14',1,'audio_tools::SDDirect::listDir()'],['../classaudio__tools_1_1_s_d_index.html#a51580b39d56dcffff525b5110d18944e',1,'audio_tools::SDIndex::listDir()']]],
+ ['ltrim_2321',['ltrim',['../classaudio__tools_1_1_str.html#ab8b1977a1bbcd17a0f55714ac2cb50dc',1,'audio_tools::Str']]]
];
diff --git a/search/functions_c.js b/search/functions_c.js
index 9a934572e0..48d6a0f8b4 100644
--- a/search/functions_c.js
+++ b/search/functions_c.js
@@ -1,39 +1,39 @@
var searchData=
[
- ['macaddress_2318',['macAddress',['../classaudio__tools_1_1_e_s_p_now_stream.html#a1e417247af338b639dd360d8eff67705',1,'audio_tools::ESPNowStream']]],
- ['magnitude_2319',['magnitude',['../classaudio__tools_1_1_audio_f_f_t_base.html#a163b25ad43ca3bb5d713e7bf22ebd71b',1,'audio_tools::AudioFFTBase']]],
- ['magnitudefast_2320',['magnitudeFast',['../classaudio__tools_1_1_f_f_t_driver_cmsis_f_f_t.html#a01f7d08ca15b0ebd7bb4d17101ba8d72',1,'audio_tools::FFTDriverCmsisFFT::magnitudeFast()'],['../classaudio__tools_1_1_f_f_t_driver_e_s_p32_f_f_t.html#a01f7d08ca15b0ebd7bb4d17101ba8d72',1,'audio_tools::FFTDriverESP32FFT::magnitudeFast()'],['../classaudio__tools_1_1_f_f_t_driver_espressif_f_f_t.html#a01f7d08ca15b0ebd7bb4d17101ba8d72',1,'audio_tools::FFTDriverEspressifFFT::magnitudeFast()'],['../classaudio__tools_1_1_f_f_t_driver_kiss_f_f_t.html#a01f7d08ca15b0ebd7bb4d17101ba8d72',1,'audio_tools::FFTDriverKissFFT::magnitudeFast()'],['../classaudio__tools_1_1_f_f_t_driver_real_f_f_t.html#a01f7d08ca15b0ebd7bb4d17101ba8d72',1,'audio_tools::FFTDriverRealFFT::magnitudeFast()']]],
- ['magnitudes_2321',['magnitudes',['../classaudio__tools_1_1_audio_f_f_t_base.html#a1eb3962fcf86a133667e8a29448374bb',1,'audio_tools::AudioFFTBase']]],
- ['magnitudesfast_2322',['magnitudesFast',['../classaudio__tools_1_1_audio_f_f_t_base.html#afc19d575021bc522bcf0d3911245c5a1',1,'audio_tools::AudioFFTBase']]],
- ['mainfrequency_2323',['mainFrequency',['../classaudio__tools_1_1_musical_notes.html#a23e5df1a69fa2beba06527bdd522e3bf',1,'audio_tools::MusicalNotes::mainFrequency(uint8_t mainNoteIdx, uint8_t octave)'],['../classaudio__tools_1_1_musical_notes.html#a01a96d65c4a53b868575d20c1d97af2f',1,'audio_tools::MusicalNotes::mainFrequency(uint64_t idx)']]],
- ['mainheader_2324',['mainHeader',['../classaudio__tools_1_1_a_v_i_decoder.html#a63fba9c3de55b396cd5a356ab0dca7b3',1,'audio_tools::AVIDecoder']]],
- ['map_2325',['map',['../namespaceaudio__tools.html#a07f83b0475b1f3c98eccd9b1642dd1cb',1,'audio_tools']]],
- ['mapfloat_2326',['mapFloat',['../namespaceaudio__tools.html#a2320e2f14f2ac363a4eb3fafd8c5afa7',1,'audio_tools']]],
- ['matches_2327',['matches',['../classaudio__tools_1_1_str.html#ab9782b5988236272374d58e37e79b792',1,'audio_tools::Str']]],
- ['maxchannels_2328',['maxChannels',['../classaudio__tools_1_1_p_w_m_driver_s_t_m32.html#a685bbafe8bb54cde1660bf9300eef7bf',1,'audio_tools::PWMDriverSTM32::maxChannels()'],['../classaudio__tools_1_1_p_w_m_driver_m_b_e_d.html#a685bbafe8bb54cde1660bf9300eef7bf',1,'audio_tools::PWMDriverMBED::maxChannels()']]],
- ['maxframesize_2329',['maxFrameSize',['../classaudio__tools_1_1_m_p3_decoder_helix.html#a6ba1da222275563947259cd118ad0052',1,'audio_tools::MP3DecoderHelix::maxFrameSize()'],['../classaudio__tools_1_1_a_a_c_decoder_helix.html#a6ba1da222275563947259cd118ad0052',1,'audio_tools::AACDecoderHelix::maxFrameSize()']]],
- ['maxlength_2330',['maxLength',['../classaudio__tools_1_1_str.html#a4edf448f8cda7d86772db2fe9cb40ea6',1,'audio_tools::Str']]],
- ['maxoutputvalue_2331',['maxOutputValue',['../classaudio__tools_1_1_p_w_m_driver_e_s_p32.html#ac49269e123b079022b33c93f3941c287',1,'audio_tools::PWMDriverESP32::maxOutputValue()'],['../classaudio__tools_1_1_p_w_m_driver_m_b_e_d.html#ac49269e123b079022b33c93f3941c287',1,'audio_tools::PWMDriverMBED::maxOutputValue()'],['../classaudio__tools_1_1_p_w_m_driver_renesas.html#ac49269e123b079022b33c93f3941c287',1,'audio_tools::PWMDriverRenesas::maxOutputValue()'],['../classaudio__tools_1_1_p_w_m_driver_s_t_m32.html#ac49269e123b079022b33c93f3941c287',1,'audio_tools::PWMDriverSTM32::maxOutputValue()']]],
- ['maxpcmsize_2332',['maxPCMSize',['../classaudio__tools_1_1_a_a_c_decoder_helix.html#a6bc61efa9b24c79cc0dd8173dced67c2',1,'audio_tools::AACDecoderHelix::maxPCMSize()'],['../classaudio__tools_1_1_m_p3_decoder_helix.html#a6bc61efa9b24c79cc0dd8173dced67c2',1,'audio_tools::MP3DecoderHelix::maxPCMSize()']]],
- ['maxsamplerate_2333',['maxSampleRate',['../classaudio__tools_1_1_driver_p_w_m_base.html#a72ebbdf23886d86a473efc3220ead4cd',1,'audio_tools::DriverPWMBase::maxSampleRate()'],['../classaudio__tools_1_1_p_w_m_driver_renesas.html#a5fbd63bfdec9ca0b5f5d1fe4326df9aa',1,'audio_tools::PWMDriverRenesas::maxSampleRate()']]],
- ['maxsize_2334',['maxSize',['../classaudio__tools_1_1_container_m_p4.html#ad27b458e3f25d8febbea264749b6347b',1,'audio_tools::ContainerMP4']]],
- ['maxunsignedvalue_2335',['maxUnsignedValue',['../classaudio__tools_1_1_p_w_m_driver_e_s_p32.html#acb3d02d28c027959746e2cd72e5c2956',1,'audio_tools::PWMDriverESP32']]],
- ['maxvalue_2336',['maxValue',['../classaudio__tools_1_1_number_converter.html#aa83040da5c51151a9bd3286ecfcfe413',1,'audio_tools::NumberConverter']]],
- ['maxvaluet_2337',['maxValueT',['../classaudio__tools_1_1_number_converter.html#ae8f8403624b395a565c4e0a3a29e8398',1,'audio_tools::NumberConverter']]],
- ['measuresamplerate_2338',['measureSampleRate',['../classaudio__tools_1_1_timer_callback_audio_stream.html#a7aa7718b1f3579d03c244a597cd03b85',1,'audio_tools::TimerCallbackAudioStream']]],
- ['memorymanager_2339',['MemoryManager',['../classaudio__tools_1_1_memory_manager.html#a683c4fb9ce026fee861d584b3d31cff1',1,'audio_tools::MemoryManager::MemoryManager()=default'],['../classaudio__tools_1_1_memory_manager.html#a7c6515cc6bec4ffb8c5a9075e532ec58',1,'audio_tools::MemoryManager::MemoryManager(int limit)']]],
- ['metadatafilter_2340',['MetaDataFilter',['../classaudio__tools_1_1_meta_data_filter.html#ac474d6c8d0a794c0aff53ec739f43dbe',1,'audio_tools::MetaDataFilter::MetaDataFilter()=default'],['../classaudio__tools_1_1_meta_data_filter.html#aff26fdfcea22e3ebe3206e5f7def7809',1,'audio_tools::MetaDataFilter::MetaDataFilter(Decoder *decoder)']]],
- ['metadataicy_2341',['MetaDataICY',['../classaudio__tools_1_1_meta_data_i_c_y.html#a40f5dda5f5c78030cbbe9999fd2380ff',1,'audio_tools::MetaDataICY']]],
- ['metaint_2342',['metaInt',['../classaudio__tools_1_1_meta_data_i_c_y.html#ad7c15f786fa0d2811cc31eae0d3e7a8d',1,'audio_tools::MetaDataICY']]],
- ['metasize_2343',['metaSize',['../classaudio__tools_1_1_meta_data_i_c_y.html#a8430455cc35f6c6b9656f816c9cbe648',1,'audio_tools::MetaDataICY']]],
- ['midinotetofrequency_2344',['midiNoteToFrequency',['../classaudio__tools_1_1_musical_notes.html#a0c7b5af824e7fdca28821b0e8503b9fb',1,'audio_tools::MusicalNotes']]],
- ['millis_2345',['millis',['../namespaceaudio__tools.html#a51ca22f5e92260d1d3f69724a51c551a',1,'audio_tools']]],
- ['mime_2346',['mime',['../classaudio__tools_1_1_s_b_c_encoder.html#ae25cee0d848eeb729a79fd46347a70da',1,'audio_tools::SBCEncoder::mime()'],['../classaudio__tools_1_1_audio_encoder.html#ac3eead7aeacc082287eabd2282dff0e1',1,'audio_tools::AudioEncoder::mime()'],['../classaudio__tools_1_1_codec_n_o_p.html#ae25cee0d848eeb729a79fd46347a70da',1,'audio_tools::CodecNOP::mime()'],['../classaudio__tools_1_1_a_a_c_encoder_f_d_k.html#a270b0b803120d1fd87b919d29e083979',1,'audio_tools::AACEncoderFDK::mime()'],['../classaudio__tools_1_1_stream_copy_t.html#a270b0b803120d1fd87b919d29e083979',1,'audio_tools::StreamCopyT::mime()'],['../classaudio__tools_1_1_ogg_container_encoder.html#a5d63922f6bdb7c371286ca453ae18f9c',1,'audio_tools::OggContainerEncoder::mime()'],['../classaudio__tools_1_1_binary_container_encoder.html#ae25cee0d848eeb729a79fd46347a70da',1,'audio_tools::BinaryContainerEncoder::mime()'],['../classaudio__tools_1_1_w_a_v_encoder.html#a5d63922f6bdb7c371286ca453ae18f9c',1,'audio_tools::WAVEncoder::mime()'],['../classaudio__tools_1_1_a_d_p_c_m_encoder.html#a5d63922f6bdb7c371286ca453ae18f9c',1,'audio_tools::ADPCMEncoder::mime()'],['../classaudio__tools_1_1_opus_ogg_encoder.html#a5d63922f6bdb7c371286ca453ae18f9c',1,'audio_tools::OpusOggEncoder::mime()'],['../classaudio__tools_1_1_opus_audio_encoder.html#a5d63922f6bdb7c371286ca453ae18f9c',1,'audio_tools::OpusAudioEncoder::mime()'],['../classaudio__tools_1_1_m_p3_encoder_l_a_m_e.html#a270b0b803120d1fd87b919d29e083979',1,'audio_tools::MP3EncoderLAME::mime()'],['../classaudio__tools_1_1_l_c3_encoder.html#ae25cee0d848eeb729a79fd46347a70da',1,'audio_tools::LC3Encoder::mime()'],['../classaudio__tools_1_1_encoder_l8.html#a5d63922f6bdb7c371286ca453ae18f9c',1,'audio_tools::EncoderL8::mime()'],['../classaudio__tools_1_1_i_l_b_c_encoder.html#ae25cee0d848eeb729a79fd46347a70da',1,'audio_tools::ILBCEncoder::mime()'],['../classaudio__tools_1_1_a_d_p_c_m_encoder_x_q.html#a5d63922f6bdb7c371286ca453ae18f9c',1,'audio_tools::ADPCMEncoderXQ::mime()'],['../classaudio__tools_1_1_a_p_t_x_encoder.html#ae25cee0d848eeb729a79fd46347a70da',1,'audio_tools::APTXEncoder::mime()'],['../classaudio__tools_1_1_encoder_base64.html#a5d63922f6bdb7c371286ca453ae18f9c',1,'audio_tools::EncoderBase64::mime()'],['../classaudio__tools_1_1_encoder_basic.html#a5d63922f6bdb7c371286ca453ae18f9c',1,'audio_tools::EncoderBasic::mime()'],['../classaudio__tools_1_1_codec2_encoder.html#ae25cee0d848eeb729a79fd46347a70da',1,'audio_tools::Codec2Encoder::mime()'],['../classaudio__tools_1_1_copy_encoder.html#a270b0b803120d1fd87b919d29e083979',1,'audio_tools::CopyEncoder::mime()'],['../classaudio__tools_1_1_encoder_float.html#a5d63922f6bdb7c371286ca453ae18f9c',1,'audio_tools::EncoderFloat::mime()'],['../classaudio__tools_1_1_encoder_l16.html#a5d63922f6bdb7c371286ca453ae18f9c',1,'audio_tools::EncoderL16::mime()'],['../classaudio__tools_1_1_g_s_m_encoder.html#ae25cee0d848eeb729a79fd46347a70da',1,'audio_tools::GSMEncoder::mime()'],['../classaudio__tools_1_1_g7xx_encoder.html#a5d63922f6bdb7c371286ca453ae18f9c',1,'audio_tools::G7xxEncoder::mime()'],['../classaudio__tools_1_1_g722_encoder.html#ae25cee0d848eeb729a79fd46347a70da',1,'audio_tools::G722Encoder::mime()'],['../classaudio__tools_1_1_f_l_a_c_encoder.html#a5d63922f6bdb7c371286ca453ae18f9c',1,'audio_tools::FLACEncoder::mime()']]],
- ['modelinputbuffer_2347',['modelInputBuffer',['../classaudio__tools_1_1_tf_lite_audio_stream.html#acd17c8eb1987bd362a34130a6a716759',1,'audio_tools::TfLiteAudioStream::modelInputBuffer()'],['../classaudio__tools_1_1_tf_lite_audio_stream_base.html#a103e09bb0740a6e27cefe1f70afb2761',1,'audio_tools::TfLiteAudioStreamBase::modelInputBuffer()']]],
- ['modemasterslave_2348',['modeMasterSlave',['../classaudio__tools_1_1_w_m8960_stream.html#a02d0eb8d287c0b417572535e9ea95b73',1,'audio_tools::WM8960Stream']]],
- ['modulationbaseclass_2349',['ModulationBaseClass',['../classaudio__tools_1_1_modulation_base_class.html#af188d79f609f230060e71bf1981f96f1',1,'audio_tools::ModulationBaseClass']]],
- ['movetonextstreamonend_2350',['moveToNextStreamOnEnd',['../classaudio__tools_1_1_cat_stream.html#ae7308a6a280ee7d4403d8f3f9da7a31c',1,'audio_tools::CatStream']]],
- ['mp3decoderhelix_2351',['MP3DecoderHelix',['../classaudio__tools_1_1_m_p3_decoder_helix.html#a953f4e5f421fb16daa48630901c0bc8c',1,'audio_tools::MP3DecoderHelix::MP3DecoderHelix(Print &out_stream)'],['../classaudio__tools_1_1_m_p3_decoder_helix.html#a92c68878c2f9b39a4dcdd431a46eaf39',1,'audio_tools::MP3DecoderHelix::MP3DecoderHelix(Print &out_stream, AudioInfoSupport &bi)']]],
- ['multioutput_2352',['MultiOutput',['../classaudio__tools_1_1_multi_output.html#afbfb0ac2b640d4c0b83727daa3743529',1,'audio_tools::MultiOutput::MultiOutput()=default'],['../classaudio__tools_1_1_multi_output.html#aa02ec7a32d175419b5b2277325b753b2',1,'audio_tools::MultiOutput::MultiOutput(AudioOutput &out)'],['../classaudio__tools_1_1_multi_output.html#a9a2539beb022318db9f689485859f792',1,'audio_tools::MultiOutput::MultiOutput(AudioOutput &out1, AudioOutput &out2)'],['../classaudio__tools_1_1_multi_output.html#a6ca907f2c2ed6a51623840e05ae29902',1,'audio_tools::MultiOutput::MultiOutput(AudioStream &out1, AudioStream &out2)']]],
- ['mute_2353',['mute',['../classaudio__tools_1_1_i2_s_stream.html#a3f81df7be714e88cfc458ccb6a4d8d1a',1,'audio_tools::I2SStream']]]
+ ['macaddress_2322',['macAddress',['../classaudio__tools_1_1_e_s_p_now_stream.html#a1e417247af338b639dd360d8eff67705',1,'audio_tools::ESPNowStream']]],
+ ['magnitude_2323',['magnitude',['../classaudio__tools_1_1_audio_f_f_t_base.html#a163b25ad43ca3bb5d713e7bf22ebd71b',1,'audio_tools::AudioFFTBase']]],
+ ['magnitudefast_2324',['magnitudeFast',['../classaudio__tools_1_1_f_f_t_driver_cmsis_f_f_t.html#a01f7d08ca15b0ebd7bb4d17101ba8d72',1,'audio_tools::FFTDriverCmsisFFT::magnitudeFast()'],['../classaudio__tools_1_1_f_f_t_driver_e_s_p32_f_f_t.html#a01f7d08ca15b0ebd7bb4d17101ba8d72',1,'audio_tools::FFTDriverESP32FFT::magnitudeFast()'],['../classaudio__tools_1_1_f_f_t_driver_espressif_f_f_t.html#a01f7d08ca15b0ebd7bb4d17101ba8d72',1,'audio_tools::FFTDriverEspressifFFT::magnitudeFast()'],['../classaudio__tools_1_1_f_f_t_driver_kiss_f_f_t.html#a01f7d08ca15b0ebd7bb4d17101ba8d72',1,'audio_tools::FFTDriverKissFFT::magnitudeFast()'],['../classaudio__tools_1_1_f_f_t_driver_real_f_f_t.html#a01f7d08ca15b0ebd7bb4d17101ba8d72',1,'audio_tools::FFTDriverRealFFT::magnitudeFast()']]],
+ ['magnitudes_2325',['magnitudes',['../classaudio__tools_1_1_audio_f_f_t_base.html#a1eb3962fcf86a133667e8a29448374bb',1,'audio_tools::AudioFFTBase']]],
+ ['magnitudesfast_2326',['magnitudesFast',['../classaudio__tools_1_1_audio_f_f_t_base.html#afc19d575021bc522bcf0d3911245c5a1',1,'audio_tools::AudioFFTBase']]],
+ ['mainfrequency_2327',['mainFrequency',['../classaudio__tools_1_1_musical_notes.html#a23e5df1a69fa2beba06527bdd522e3bf',1,'audio_tools::MusicalNotes::mainFrequency(uint8_t mainNoteIdx, uint8_t octave)'],['../classaudio__tools_1_1_musical_notes.html#a01a96d65c4a53b868575d20c1d97af2f',1,'audio_tools::MusicalNotes::mainFrequency(uint64_t idx)']]],
+ ['mainheader_2328',['mainHeader',['../classaudio__tools_1_1_a_v_i_decoder.html#a63fba9c3de55b396cd5a356ab0dca7b3',1,'audio_tools::AVIDecoder']]],
+ ['map_2329',['map',['../namespaceaudio__tools.html#a07f83b0475b1f3c98eccd9b1642dd1cb',1,'audio_tools']]],
+ ['mapfloat_2330',['mapFloat',['../namespaceaudio__tools.html#a2320e2f14f2ac363a4eb3fafd8c5afa7',1,'audio_tools']]],
+ ['matches_2331',['matches',['../classaudio__tools_1_1_str.html#ab9782b5988236272374d58e37e79b792',1,'audio_tools::Str']]],
+ ['maxchannels_2332',['maxChannels',['../classaudio__tools_1_1_p_w_m_driver_s_t_m32.html#a685bbafe8bb54cde1660bf9300eef7bf',1,'audio_tools::PWMDriverSTM32::maxChannels()'],['../classaudio__tools_1_1_p_w_m_driver_m_b_e_d.html#a685bbafe8bb54cde1660bf9300eef7bf',1,'audio_tools::PWMDriverMBED::maxChannels()']]],
+ ['maxframesize_2333',['maxFrameSize',['../classaudio__tools_1_1_m_p3_decoder_helix.html#a6ba1da222275563947259cd118ad0052',1,'audio_tools::MP3DecoderHelix::maxFrameSize()'],['../classaudio__tools_1_1_a_a_c_decoder_helix.html#a6ba1da222275563947259cd118ad0052',1,'audio_tools::AACDecoderHelix::maxFrameSize()']]],
+ ['maxlength_2334',['maxLength',['../classaudio__tools_1_1_str.html#a4edf448f8cda7d86772db2fe9cb40ea6',1,'audio_tools::Str']]],
+ ['maxoutputvalue_2335',['maxOutputValue',['../classaudio__tools_1_1_p_w_m_driver_e_s_p32.html#ac49269e123b079022b33c93f3941c287',1,'audio_tools::PWMDriverESP32::maxOutputValue()'],['../classaudio__tools_1_1_p_w_m_driver_m_b_e_d.html#ac49269e123b079022b33c93f3941c287',1,'audio_tools::PWMDriverMBED::maxOutputValue()'],['../classaudio__tools_1_1_p_w_m_driver_renesas.html#ac49269e123b079022b33c93f3941c287',1,'audio_tools::PWMDriverRenesas::maxOutputValue()'],['../classaudio__tools_1_1_p_w_m_driver_s_t_m32.html#ac49269e123b079022b33c93f3941c287',1,'audio_tools::PWMDriverSTM32::maxOutputValue()']]],
+ ['maxpcmsize_2336',['maxPCMSize',['../classaudio__tools_1_1_a_a_c_decoder_helix.html#a6bc61efa9b24c79cc0dd8173dced67c2',1,'audio_tools::AACDecoderHelix::maxPCMSize()'],['../classaudio__tools_1_1_m_p3_decoder_helix.html#a6bc61efa9b24c79cc0dd8173dced67c2',1,'audio_tools::MP3DecoderHelix::maxPCMSize()']]],
+ ['maxsamplerate_2337',['maxSampleRate',['../classaudio__tools_1_1_driver_p_w_m_base.html#a72ebbdf23886d86a473efc3220ead4cd',1,'audio_tools::DriverPWMBase::maxSampleRate()'],['../classaudio__tools_1_1_p_w_m_driver_renesas.html#a5fbd63bfdec9ca0b5f5d1fe4326df9aa',1,'audio_tools::PWMDriverRenesas::maxSampleRate()']]],
+ ['maxsize_2338',['maxSize',['../classaudio__tools_1_1_container_m_p4.html#ad27b458e3f25d8febbea264749b6347b',1,'audio_tools::ContainerMP4']]],
+ ['maxunsignedvalue_2339',['maxUnsignedValue',['../classaudio__tools_1_1_p_w_m_driver_e_s_p32.html#acb3d02d28c027959746e2cd72e5c2956',1,'audio_tools::PWMDriverESP32']]],
+ ['maxvalue_2340',['maxValue',['../classaudio__tools_1_1_number_converter.html#aa83040da5c51151a9bd3286ecfcfe413',1,'audio_tools::NumberConverter']]],
+ ['maxvaluet_2341',['maxValueT',['../classaudio__tools_1_1_number_converter.html#ae8f8403624b395a565c4e0a3a29e8398',1,'audio_tools::NumberConverter']]],
+ ['measuresamplerate_2342',['measureSampleRate',['../classaudio__tools_1_1_timer_callback_audio_stream.html#a7aa7718b1f3579d03c244a597cd03b85',1,'audio_tools::TimerCallbackAudioStream']]],
+ ['memorymanager_2343',['MemoryManager',['../classaudio__tools_1_1_memory_manager.html#a683c4fb9ce026fee861d584b3d31cff1',1,'audio_tools::MemoryManager::MemoryManager()=default'],['../classaudio__tools_1_1_memory_manager.html#a7c6515cc6bec4ffb8c5a9075e532ec58',1,'audio_tools::MemoryManager::MemoryManager(int limit)']]],
+ ['metadatafilter_2344',['MetaDataFilter',['../classaudio__tools_1_1_meta_data_filter.html#ac474d6c8d0a794c0aff53ec739f43dbe',1,'audio_tools::MetaDataFilter::MetaDataFilter()=default'],['../classaudio__tools_1_1_meta_data_filter.html#aff26fdfcea22e3ebe3206e5f7def7809',1,'audio_tools::MetaDataFilter::MetaDataFilter(Decoder *decoder)']]],
+ ['metadataicy_2345',['MetaDataICY',['../classaudio__tools_1_1_meta_data_i_c_y.html#a40f5dda5f5c78030cbbe9999fd2380ff',1,'audio_tools::MetaDataICY']]],
+ ['metaint_2346',['metaInt',['../classaudio__tools_1_1_meta_data_i_c_y.html#ad7c15f786fa0d2811cc31eae0d3e7a8d',1,'audio_tools::MetaDataICY']]],
+ ['metasize_2347',['metaSize',['../classaudio__tools_1_1_meta_data_i_c_y.html#a8430455cc35f6c6b9656f816c9cbe648',1,'audio_tools::MetaDataICY']]],
+ ['midinotetofrequency_2348',['midiNoteToFrequency',['../classaudio__tools_1_1_musical_notes.html#a0c7b5af824e7fdca28821b0e8503b9fb',1,'audio_tools::MusicalNotes']]],
+ ['millis_2349',['millis',['../namespaceaudio__tools.html#a51ca22f5e92260d1d3f69724a51c551a',1,'audio_tools']]],
+ ['mime_2350',['mime',['../classaudio__tools_1_1_s_b_c_encoder.html#ae25cee0d848eeb729a79fd46347a70da',1,'audio_tools::SBCEncoder::mime()'],['../classaudio__tools_1_1_audio_encoder.html#ac3eead7aeacc082287eabd2282dff0e1',1,'audio_tools::AudioEncoder::mime()'],['../classaudio__tools_1_1_codec_n_o_p.html#ae25cee0d848eeb729a79fd46347a70da',1,'audio_tools::CodecNOP::mime()'],['../classaudio__tools_1_1_a_a_c_encoder_f_d_k.html#a270b0b803120d1fd87b919d29e083979',1,'audio_tools::AACEncoderFDK::mime()'],['../classaudio__tools_1_1_stream_copy_t.html#a270b0b803120d1fd87b919d29e083979',1,'audio_tools::StreamCopyT::mime()'],['../classaudio__tools_1_1_ogg_container_encoder.html#a5d63922f6bdb7c371286ca453ae18f9c',1,'audio_tools::OggContainerEncoder::mime()'],['../classaudio__tools_1_1_binary_container_encoder.html#ae25cee0d848eeb729a79fd46347a70da',1,'audio_tools::BinaryContainerEncoder::mime()'],['../classaudio__tools_1_1_w_a_v_encoder.html#a5d63922f6bdb7c371286ca453ae18f9c',1,'audio_tools::WAVEncoder::mime()'],['../classaudio__tools_1_1_a_d_p_c_m_encoder.html#a5d63922f6bdb7c371286ca453ae18f9c',1,'audio_tools::ADPCMEncoder::mime()'],['../classaudio__tools_1_1_opus_ogg_encoder.html#a5d63922f6bdb7c371286ca453ae18f9c',1,'audio_tools::OpusOggEncoder::mime()'],['../classaudio__tools_1_1_opus_audio_encoder.html#a5d63922f6bdb7c371286ca453ae18f9c',1,'audio_tools::OpusAudioEncoder::mime()'],['../classaudio__tools_1_1_m_p3_encoder_l_a_m_e.html#a270b0b803120d1fd87b919d29e083979',1,'audio_tools::MP3EncoderLAME::mime()'],['../classaudio__tools_1_1_l_c3_encoder.html#ae25cee0d848eeb729a79fd46347a70da',1,'audio_tools::LC3Encoder::mime()'],['../classaudio__tools_1_1_encoder_l8.html#a5d63922f6bdb7c371286ca453ae18f9c',1,'audio_tools::EncoderL8::mime()'],['../classaudio__tools_1_1_i_l_b_c_encoder.html#ae25cee0d848eeb729a79fd46347a70da',1,'audio_tools::ILBCEncoder::mime()'],['../classaudio__tools_1_1_a_d_p_c_m_encoder_x_q.html#a5d63922f6bdb7c371286ca453ae18f9c',1,'audio_tools::ADPCMEncoderXQ::mime()'],['../classaudio__tools_1_1_a_p_t_x_encoder.html#ae25cee0d848eeb729a79fd46347a70da',1,'audio_tools::APTXEncoder::mime()'],['../classaudio__tools_1_1_encoder_base64.html#a5d63922f6bdb7c371286ca453ae18f9c',1,'audio_tools::EncoderBase64::mime()'],['../classaudio__tools_1_1_encoder_basic.html#a5d63922f6bdb7c371286ca453ae18f9c',1,'audio_tools::EncoderBasic::mime()'],['../classaudio__tools_1_1_codec2_encoder.html#ae25cee0d848eeb729a79fd46347a70da',1,'audio_tools::Codec2Encoder::mime()'],['../classaudio__tools_1_1_copy_encoder.html#a270b0b803120d1fd87b919d29e083979',1,'audio_tools::CopyEncoder::mime()'],['../classaudio__tools_1_1_encoder_float.html#a5d63922f6bdb7c371286ca453ae18f9c',1,'audio_tools::EncoderFloat::mime()'],['../classaudio__tools_1_1_encoder_l16.html#a5d63922f6bdb7c371286ca453ae18f9c',1,'audio_tools::EncoderL16::mime()'],['../classaudio__tools_1_1_g_s_m_encoder.html#ae25cee0d848eeb729a79fd46347a70da',1,'audio_tools::GSMEncoder::mime()'],['../classaudio__tools_1_1_g7xx_encoder.html#a5d63922f6bdb7c371286ca453ae18f9c',1,'audio_tools::G7xxEncoder::mime()'],['../classaudio__tools_1_1_g722_encoder.html#ae25cee0d848eeb729a79fd46347a70da',1,'audio_tools::G722Encoder::mime()'],['../classaudio__tools_1_1_f_l_a_c_encoder.html#a5d63922f6bdb7c371286ca453ae18f9c',1,'audio_tools::FLACEncoder::mime()']]],
+ ['modelinputbuffer_2351',['modelInputBuffer',['../classaudio__tools_1_1_tf_lite_audio_stream.html#acd17c8eb1987bd362a34130a6a716759',1,'audio_tools::TfLiteAudioStream::modelInputBuffer()'],['../classaudio__tools_1_1_tf_lite_audio_stream_base.html#a103e09bb0740a6e27cefe1f70afb2761',1,'audio_tools::TfLiteAudioStreamBase::modelInputBuffer()']]],
+ ['modemasterslave_2352',['modeMasterSlave',['../classaudio__tools_1_1_w_m8960_stream.html#a02d0eb8d287c0b417572535e9ea95b73',1,'audio_tools::WM8960Stream']]],
+ ['modulationbaseclass_2353',['ModulationBaseClass',['../classaudio__tools_1_1_modulation_base_class.html#af188d79f609f230060e71bf1981f96f1',1,'audio_tools::ModulationBaseClass']]],
+ ['movetonextstreamonend_2354',['moveToNextStreamOnEnd',['../classaudio__tools_1_1_cat_stream.html#ae7308a6a280ee7d4403d8f3f9da7a31c',1,'audio_tools::CatStream']]],
+ ['mp3decoderhelix_2355',['MP3DecoderHelix',['../classaudio__tools_1_1_m_p3_decoder_helix.html#a953f4e5f421fb16daa48630901c0bc8c',1,'audio_tools::MP3DecoderHelix::MP3DecoderHelix(Print &out_stream)'],['../classaudio__tools_1_1_m_p3_decoder_helix.html#a92c68878c2f9b39a4dcdd431a46eaf39',1,'audio_tools::MP3DecoderHelix::MP3DecoderHelix(Print &out_stream, AudioInfoSupport &bi)']]],
+ ['multioutput_2356',['MultiOutput',['../classaudio__tools_1_1_multi_output.html#afbfb0ac2b640d4c0b83727daa3743529',1,'audio_tools::MultiOutput::MultiOutput()=default'],['../classaudio__tools_1_1_multi_output.html#aa02ec7a32d175419b5b2277325b753b2',1,'audio_tools::MultiOutput::MultiOutput(AudioOutput &out)'],['../classaudio__tools_1_1_multi_output.html#a9a2539beb022318db9f689485859f792',1,'audio_tools::MultiOutput::MultiOutput(AudioOutput &out1, AudioOutput &out2)'],['../classaudio__tools_1_1_multi_output.html#a6ca907f2c2ed6a51623840e05ae29902',1,'audio_tools::MultiOutput::MultiOutput(AudioStream &out1, AudioStream &out2)']]],
+ ['mute_2357',['mute',['../classaudio__tools_1_1_i2_s_stream.html#a3f81df7be714e88cfc458ccb6a4d8d1a',1,'audio_tools::I2SStream']]]
];
diff --git a/search/functions_d.js b/search/functions_d.js
index 04adaf0b1b..fee29b4ffc 100644
--- a/search/functions_d.js
+++ b/search/functions_d.js
@@ -1,12 +1,12 @@
var searchData=
[
- ['name_2354',['name',['../classaudio__tools_1_1_r_t_s_p_format_audio_tools.html#a16e46e7c65078b1877d239968152a04e',1,'audio_tools::RTSPFormatAudioTools']]],
- ['next_2355',['next',['../classaudio__tools_1_1_audio_player.html#a335f4f4ef919787f4d83f9de06caedb8',1,'audio_tools::AudioPlayer']]],
- ['nextstream_2356',['nextStream',['../classaudio__tools_1_1_audio_source.html#ad63a998d632bdac03e94d3aeb4256ccc',1,'audio_tools::AudioSource::nextStream()'],['../classaudio__tools_1_1_audio_source_u_r_l.html#adaac79168e5713d01e950aa1409fef4d',1,'audio_tools::AudioSourceURL::nextStream()'],['../classaudio__tools_1_1_audio_source_callback.html#afdb64d86d1a3b055aaccf79511df4994',1,'audio_tools::AudioSourceCallback::nextStream()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#afdb64d86d1a3b055aaccf79511df4994',1,'audio_tools::AudioSourceSDFAT::nextStream()'],['../classaudio__tools_1_1_audio_source_s_t_d.html#af1053e413136a840dd4cf0ce13dc2dcb',1,'audio_tools::AudioSourceSTD::nextStream()'],['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html#af1053e413136a840dd4cf0ce13dc2dcb',1,'audio_tools::AudioSourceSPIFFS::nextStream()'],['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html#af1053e413136a840dd4cf0ce13dc2dcb',1,'audio_tools::AudioSourceSDMMC::nextStream()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#af1053e413136a840dd4cf0ce13dc2dcb',1,'audio_tools::AudioSourceSDFAT::nextStream()'],['../classaudio__tools_1_1_audio_source_s_d.html#af1053e413136a840dd4cf0ce13dc2dcb',1,'audio_tools::AudioSourceSD::nextStream()'],['../classaudio__tools_1_1_audio_source_little_f_s.html#af1053e413136a840dd4cf0ce13dc2dcb',1,'audio_tools::AudioSourceLittleFS::nextStream()'],['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html#af1053e413136a840dd4cf0ce13dc2dcb',1,'audio_tools::AudioSourceIdxSDMMC::nextStream()'],['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#af1053e413136a840dd4cf0ce13dc2dcb',1,'audio_tools::AudioSourceIdxSDFAT::nextStream()'],['../classaudio__tools_1_1_audio_source_idx_s_d.html#af1053e413136a840dd4cf0ce13dc2dcb',1,'audio_tools::AudioSourceIdxSD::nextStream()']]],
- ['nextvalue_2357',['nextValue',['../classaudio__tools_1_1_driver_p_w_m_base.html#a7d172817fae98e74823efa703d938ebc',1,'audio_tools::DriverPWMBase']]],
- ['note_2358',['note',['../classaudio__tools_1_1_abstract_synthesizer_channel.html#af76ee74db3b728362a62e303928dc642',1,'audio_tools::AbstractSynthesizerChannel::note()'],['../classaudio__tools_1_1_default_synthesizer_channel.html#a2bc971de1b5ccb05726661277d6b9b65',1,'audio_tools::DefaultSynthesizerChannel::note()'],['../classaudio__tools_1_1_musical_notes.html#a34f58c49c5b3545c345bd66358fed51c',1,'audio_tools::MusicalNotes::note(float frequency, float &diff)'],['../classaudio__tools_1_1_musical_notes.html#a1eb880f134b0bed970b921b1b6462755',1,'audio_tools::MusicalNotes::note(float frequency)']]],
- ['notify_5fbase_5finfo_2359',['notify_base_Info',['../classaudio__tools_1_1_a2_d_p_stream.html#a135e3e6aa275bd03ad26ba8377c4f29a',1,'audio_tools::A2DPStream']]],
- ['notifyaudiochange_2360',['notifyAudioChange',['../classaudio__tools_1_1_timer_callback_audio_stream.html#a64b567cc75ab07671737cb63d0b32064',1,'audio_tools::TimerCallbackAudioStream']]],
- ['notifymime_2361',['notifyMime',['../classaudio__tools_1_1_stream_copy_t.html#a9de2b44cb9d920f5ac6229c03e7acb9e',1,'audio_tools::StreamCopyT']]],
- ['numberofdecimals_2362',['numberOfDecimals',['../classaudio__tools_1_1_str.html#a94c47191b77f4120c246078a7ceba283',1,'audio_tools::Str']]]
+ ['name_2358',['name',['../classaudio__tools_1_1_r_t_s_p_format_audio_tools.html#a16e46e7c65078b1877d239968152a04e',1,'audio_tools::RTSPFormatAudioTools']]],
+ ['next_2359',['next',['../classaudio__tools_1_1_audio_player.html#a335f4f4ef919787f4d83f9de06caedb8',1,'audio_tools::AudioPlayer']]],
+ ['nextstream_2360',['nextStream',['../classaudio__tools_1_1_audio_source.html#ad63a998d632bdac03e94d3aeb4256ccc',1,'audio_tools::AudioSource::nextStream()'],['../classaudio__tools_1_1_audio_source_u_r_l.html#adaac79168e5713d01e950aa1409fef4d',1,'audio_tools::AudioSourceURL::nextStream()'],['../classaudio__tools_1_1_audio_source_callback.html#afdb64d86d1a3b055aaccf79511df4994',1,'audio_tools::AudioSourceCallback::nextStream()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#afdb64d86d1a3b055aaccf79511df4994',1,'audio_tools::AudioSourceSDFAT::nextStream()'],['../classaudio__tools_1_1_audio_source_s_t_d.html#af1053e413136a840dd4cf0ce13dc2dcb',1,'audio_tools::AudioSourceSTD::nextStream()'],['../classaudio__tools_1_1_audio_source_s_p_i_f_f_s.html#af1053e413136a840dd4cf0ce13dc2dcb',1,'audio_tools::AudioSourceSPIFFS::nextStream()'],['../classaudio__tools_1_1_audio_source_s_d_m_m_c.html#af1053e413136a840dd4cf0ce13dc2dcb',1,'audio_tools::AudioSourceSDMMC::nextStream()'],['../classaudio__tools_1_1_audio_source_s_d_f_a_t.html#af1053e413136a840dd4cf0ce13dc2dcb',1,'audio_tools::AudioSourceSDFAT::nextStream()'],['../classaudio__tools_1_1_audio_source_s_d.html#af1053e413136a840dd4cf0ce13dc2dcb',1,'audio_tools::AudioSourceSD::nextStream()'],['../classaudio__tools_1_1_audio_source_little_f_s.html#af1053e413136a840dd4cf0ce13dc2dcb',1,'audio_tools::AudioSourceLittleFS::nextStream()'],['../classaudio__tools_1_1_audio_source_idx_s_d_m_m_c.html#af1053e413136a840dd4cf0ce13dc2dcb',1,'audio_tools::AudioSourceIdxSDMMC::nextStream()'],['../classaudio__tools_1_1_audio_source_idx_s_d_f_a_t.html#af1053e413136a840dd4cf0ce13dc2dcb',1,'audio_tools::AudioSourceIdxSDFAT::nextStream()'],['../classaudio__tools_1_1_audio_source_idx_s_d.html#af1053e413136a840dd4cf0ce13dc2dcb',1,'audio_tools::AudioSourceIdxSD::nextStream()']]],
+ ['nextvalue_2361',['nextValue',['../classaudio__tools_1_1_driver_p_w_m_base.html#a7d172817fae98e74823efa703d938ebc',1,'audio_tools::DriverPWMBase']]],
+ ['note_2362',['note',['../classaudio__tools_1_1_abstract_synthesizer_channel.html#af76ee74db3b728362a62e303928dc642',1,'audio_tools::AbstractSynthesizerChannel::note()'],['../classaudio__tools_1_1_default_synthesizer_channel.html#a2bc971de1b5ccb05726661277d6b9b65',1,'audio_tools::DefaultSynthesizerChannel::note()'],['../classaudio__tools_1_1_musical_notes.html#a34f58c49c5b3545c345bd66358fed51c',1,'audio_tools::MusicalNotes::note(float frequency, float &diff)'],['../classaudio__tools_1_1_musical_notes.html#a1eb880f134b0bed970b921b1b6462755',1,'audio_tools::MusicalNotes::note(float frequency)']]],
+ ['notify_5fbase_5finfo_2363',['notify_base_Info',['../classaudio__tools_1_1_a2_d_p_stream.html#a135e3e6aa275bd03ad26ba8377c4f29a',1,'audio_tools::A2DPStream']]],
+ ['notifyaudiochange_2364',['notifyAudioChange',['../classaudio__tools_1_1_timer_callback_audio_stream.html#a64b567cc75ab07671737cb63d0b32064',1,'audio_tools::TimerCallbackAudioStream']]],
+ ['notifymime_2365',['notifyMime',['../classaudio__tools_1_1_stream_copy_t.html#a9de2b44cb9d920f5ac6229c03e7acb9e',1,'audio_tools::StreamCopyT']]],
+ ['numberofdecimals_2366',['numberOfDecimals',['../classaudio__tools_1_1_str.html#a94c47191b77f4120c246078a7ceba283',1,'audio_tools::Str']]]
];
diff --git a/search/functions_e.js b/search/functions_e.js
index 911117c9f1..fdb51973ae 100644
--- a/search/functions_e.js
+++ b/search/functions_e.js
@@ -1,20 +1,20 @@
var searchData=
[
- ['offset_2363',['offset',['../classaudio__tools_1_1_converter_scaler.html#a824b962bf0084b619b2fe4efd6b0deb9',1,'audio_tools::ConverterScaler']]],
- ['oggcontainerdecoder_2364',['OggContainerDecoder',['../classaudio__tools_1_1_ogg_container_decoder.html#a131f485311ee0ab7729caf69c6fbe059',1,'audio_tools::OggContainerDecoder']]],
- ['onexternalbufferrefilled_2365',['onExternalBufferRefilled',['../classaudio__tools_1_1_single_buffer.html#a95d73a37366e2eeb400d74370c9341e0',1,'audio_tools::SingleBuffer']]],
- ['onreceive_2366',['onReceive',['../classaudio__tools_1_1_audio_m_p34_d_t05.html#a16fafb882b3831462605bafd426299f1',1,'audio_tools::AudioMP34DT05']]],
- ['operator_20bool_2367',['operator bool',['../classaudio__tools_1_1_m_p3_decoder_mini.html#a0d52c0ed98e047d782054fa126b281e5',1,'audio_tools::MP3DecoderMini::operator bool()'],['../classaudio__tools_1_1_cat_stream.html#a9b3baad8c612d81b96e46f84d7e97580',1,'audio_tools::CatStream::operator bool()'],['../classaudio__tools_1_1_queue_stream.html#a9b3baad8c612d81b96e46f84d7e97580',1,'audio_tools::QueueStream::operator bool()'],['../classaudio__tools_1_1_audio_player.html#a9b3baad8c612d81b96e46f84d7e97580',1,'audio_tools::AudioPlayer::operator bool()'],['../classaudio__tools_1_1_timer_alarm_repeating.html#a9b3baad8c612d81b96e46f84d7e97580',1,'audio_tools::TimerAlarmRepeating::operator bool()'],['../classaudio__tools_1_1_a2_d_p_stream.html#a9b3baad8c612d81b96e46f84d7e97580',1,'audio_tools::A2DPStream::operator bool()'],['../classaudio__tools_1_1_vorbis_decoder.html#a5e20121f14644633fa87e762dccff25f',1,'audio_tools::VorbisDecoder::operator bool()'],['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#a9b3baad8c612d81b96e46f84d7e97580',1,'audio_tools::MP3DecoderMAD::operator bool()'],['../classaudio__tools_1_1_m_p3_decoder_helix.html#a9b3baad8c612d81b96e46f84d7e97580',1,'audio_tools::MP3DecoderHelix::operator bool()'],['../classaudio__tools_1_1_decoder_helix.html#a9b3baad8c612d81b96e46f84d7e97580',1,'audio_tools::DecoderHelix::operator bool()'],['../classaudio__tools_1_1_f_l_a_c_decoder.html#a9b3baad8c612d81b96e46f84d7e97580',1,'audio_tools::FLACDecoder::operator bool()'],['../classaudio__tools_1_1_a_d_t_s_decoder.html#a90622bd78258a36bbcf63426b28307ac',1,'audio_tools::ADTSDecoder::operator bool()'],['../classaudio__tools_1_1_a_a_c_decoder_helix.html#a5e20121f14644633fa87e762dccff25f',1,'audio_tools::AACDecoderHelix::operator bool()'],['../classaudio__tools_1_1_a_a_c_decoder_f_a_a_d.html#a0d52c0ed98e047d782054fa126b281e5',1,'audio_tools::AACDecoderFAAD::operator bool()'],['../classaudio__tools_1_1_encoded_audio_output.html#a9b3baad8c612d81b96e46f84d7e97580',1,'audio_tools::EncodedAudioOutput::operator bool()'],['../classaudio__tools_1_1_streaming_decoder.html#ac496133545cba767b45c6ce8df3587e7',1,'audio_tools::StreamingDecoder::operator bool()'],['../classaudio__tools_1_1_slice.html#a9b3baad8c612d81b96e46f84d7e97580',1,'audio_tools::Slice::operator bool()']]],
- ['operator_20boolean_2368',['operator boolean',['../classaudio__tools_1_1_r_t_s_p_output.html#a77b9417ed06d210bc3abea1aeae4fe85',1,'audio_tools::RTSPOutput']]],
- ['operator_21_3d_2369',['operator!=',['../classaudio__tools_1_1_str.html#a05ef00d1df413cd997c167a24bd4a2b9',1,'audio_tools::Str::operator!=(const Str &alt) const'],['../classaudio__tools_1_1_str.html#afed25c1f44bea77bce830bf9bafc54f0',1,'audio_tools::Str::operator!=(const char *alt) const']]],
- ['operator_2b_3d_2370',['operator+=',['../classaudio__tools_1_1_str.html#aa1a54030ea413f578dbfbc8c241a2d6d',1,'audio_tools::Str::operator+=(const char value)'],['../classaudio__tools_1_1_str.html#a70c5d010957bf4d2ed80b589e7974397',1,'audio_tools::Str::operator+=(int value)'],['../classaudio__tools_1_1_str.html#a2d2c60de54f22ce44b12700de8a77edb',1,'audio_tools::Str::operator+=(const char *str)'],['../classaudio__tools_1_1_str.html#a5c5b2a4a09be620b963ce4507fac7f37',1,'audio_tools::Str::operator+=(double value)']]],
- ['operator_3c_3c_2371',['operator<<',['../classaudio__tools_1_1_str.html#ad22eaab0dacd5e2bbc5e3e0eebd90235',1,'audio_tools::Str']]],
- ['operator_3d_2372',['operator=',['../classaudio__tools_1_1_str.html#aa96a84437bc58d39bada5d59eab66dcf',1,'audio_tools::Str::operator=(const char *str)'],['../classaudio__tools_1_1_str.html#a0efbed3fb099fe426767cdb9e2e4f700',1,'audio_tools::Str::operator=(char *str)'],['../classaudio__tools_1_1_str.html#a2a244dec4382ed6c18fcd66caca0554f',1,'audio_tools::Str::operator=(char c)'],['../classaudio__tools_1_1_str.html#a4d912d72c5b53c32cd108e88f08abeb6',1,'audio_tools::Str::operator=(double val)'],['../classaudio__tools_1_1_str.html#a9bb076e75d0839bada78ea6274831b7a',1,'audio_tools::Str::operator=(int value)'],['../classaudio__tools_1_1_str_ext.html#a23c60088bc5eae68c7bd27c721798b76',1,'audio_tools::StrExt::operator=(const char *str)'],['../classaudio__tools_1_1_str_ext.html#aa864c52bf667feca8610d83b16173ef9',1,'audio_tools::StrExt::operator=(char *str)'],['../classaudio__tools_1_1_str_ext.html#a5dd342e844c3c832b9a1e6aa633ee5d4',1,'audio_tools::StrExt::operator=(int v)'],['../classaudio__tools_1_1_str_ext.html#af21b5d173e182fdd0036039032730a4e',1,'audio_tools::StrExt::operator=(double v)']]],
- ['operator_3d_3d_2373',['operator==',['../classaudio__tools_1_1_str.html#a8a034985fe01c5141d0eaece37e69fa7',1,'audio_tools::Str::operator==(const Str &alt) const'],['../classaudio__tools_1_1_str.html#a5ba52096c21d1dec49f347177d19e258',1,'audio_tools::Str::operator==(const char *alt) const']]],
- ['operator_5b_5d_2374',['operator[]',['../classaudio__tools_1_1_audio_effect_common.html#a722144d124c35931c637345566824441',1,'audio_tools::AudioEffectCommon::operator[]()'],['../classaudio__tools_1_1_audio_effects.html#a722144d124c35931c637345566824441',1,'audio_tools::AudioEffects::operator[]()'],['../classaudio__tools_1_1_audio_effect_stream_t.html#a722144d124c35931c637345566824441',1,'audio_tools::AudioEffectStreamT::operator[]()'],['../classaudio__tools_1_1_s_d_direct.html#a0e4f2f4eb0c3ccce535ef70d2b3bea16',1,'audio_tools::SDDirect::operator[]()'],['../classaudio__tools_1_1_s_d_index.html#a0e4f2f4eb0c3ccce535ef70d2b3bea16',1,'audio_tools::SDIndex::operator[]()']]],
- ['opusaudiodecoder_2375',['OpusAudioDecoder',['../classaudio__tools_1_1_opus_audio_decoder.html#a41456d8a19ed63bd28132ac0926a0143',1,'audio_tools::OpusAudioDecoder::OpusAudioDecoder()'],['../classaudio__tools_1_1_opus_audio_decoder.html#a02aff987ee199275e34bd196f20f0c0e',1,'audio_tools::OpusAudioDecoder::OpusAudioDecoder(Print &out_stream)']]],
- ['opusencodersettings_2376',['OpusEncoderSettings',['../structaudio__tools_1_1_opus_encoder_settings.html#a3be7a937cfd7f58d1a93e1a815e697d4',1,'audio_tools::OpusEncoderSettings']]],
- ['opussettings_2377',['OpusSettings',['../structaudio__tools_1_1_opus_settings.html#ababbf31a0d7af4f72a111533e439bd85',1,'audio_tools::OpusSettings']]],
- ['out_2378',['out',['../classaudio__tools_1_1_audio_server.html#a1479a6d7009eea462d5f4f0867fd2d0e',1,'audio_tools::AudioServer']]],
- ['out_5fptr_2379',['out_ptr',['../classaudio__tools_1_1_audio_server.html#a2fae28752423eb0af249f1bcca7936ca',1,'audio_tools::AudioServer']]]
+ ['offset_2367',['offset',['../classaudio__tools_1_1_converter_scaler.html#a824b962bf0084b619b2fe4efd6b0deb9',1,'audio_tools::ConverterScaler']]],
+ ['oggcontainerdecoder_2368',['OggContainerDecoder',['../classaudio__tools_1_1_ogg_container_decoder.html#a131f485311ee0ab7729caf69c6fbe059',1,'audio_tools::OggContainerDecoder']]],
+ ['onexternalbufferrefilled_2369',['onExternalBufferRefilled',['../classaudio__tools_1_1_single_buffer.html#a95d73a37366e2eeb400d74370c9341e0',1,'audio_tools::SingleBuffer']]],
+ ['onreceive_2370',['onReceive',['../classaudio__tools_1_1_audio_m_p34_d_t05.html#a16fafb882b3831462605bafd426299f1',1,'audio_tools::AudioMP34DT05']]],
+ ['operator_20bool_2371',['operator bool',['../classaudio__tools_1_1_m_p3_decoder_mini.html#a0d52c0ed98e047d782054fa126b281e5',1,'audio_tools::MP3DecoderMini::operator bool()'],['../classaudio__tools_1_1_cat_stream.html#a9b3baad8c612d81b96e46f84d7e97580',1,'audio_tools::CatStream::operator bool()'],['../classaudio__tools_1_1_queue_stream.html#a9b3baad8c612d81b96e46f84d7e97580',1,'audio_tools::QueueStream::operator bool()'],['../classaudio__tools_1_1_audio_player.html#a9b3baad8c612d81b96e46f84d7e97580',1,'audio_tools::AudioPlayer::operator bool()'],['../classaudio__tools_1_1_timer_alarm_repeating.html#a9b3baad8c612d81b96e46f84d7e97580',1,'audio_tools::TimerAlarmRepeating::operator bool()'],['../classaudio__tools_1_1_a2_d_p_stream.html#a9b3baad8c612d81b96e46f84d7e97580',1,'audio_tools::A2DPStream::operator bool()'],['../classaudio__tools_1_1_vorbis_decoder.html#a5e20121f14644633fa87e762dccff25f',1,'audio_tools::VorbisDecoder::operator bool()'],['../classaudio__tools_1_1_m_p3_decoder_m_a_d.html#a9b3baad8c612d81b96e46f84d7e97580',1,'audio_tools::MP3DecoderMAD::operator bool()'],['../classaudio__tools_1_1_m_p3_decoder_helix.html#a9b3baad8c612d81b96e46f84d7e97580',1,'audio_tools::MP3DecoderHelix::operator bool()'],['../classaudio__tools_1_1_decoder_helix.html#a9b3baad8c612d81b96e46f84d7e97580',1,'audio_tools::DecoderHelix::operator bool()'],['../classaudio__tools_1_1_f_l_a_c_decoder.html#a9b3baad8c612d81b96e46f84d7e97580',1,'audio_tools::FLACDecoder::operator bool()'],['../classaudio__tools_1_1_a_d_t_s_decoder.html#a90622bd78258a36bbcf63426b28307ac',1,'audio_tools::ADTSDecoder::operator bool()'],['../classaudio__tools_1_1_a_a_c_decoder_helix.html#a5e20121f14644633fa87e762dccff25f',1,'audio_tools::AACDecoderHelix::operator bool()'],['../classaudio__tools_1_1_a_a_c_decoder_f_a_a_d.html#a0d52c0ed98e047d782054fa126b281e5',1,'audio_tools::AACDecoderFAAD::operator bool()'],['../classaudio__tools_1_1_encoded_audio_output.html#a9b3baad8c612d81b96e46f84d7e97580',1,'audio_tools::EncodedAudioOutput::operator bool()'],['../classaudio__tools_1_1_streaming_decoder.html#ac496133545cba767b45c6ce8df3587e7',1,'audio_tools::StreamingDecoder::operator bool()'],['../classaudio__tools_1_1_slice.html#a9b3baad8c612d81b96e46f84d7e97580',1,'audio_tools::Slice::operator bool()']]],
+ ['operator_20boolean_2372',['operator boolean',['../classaudio__tools_1_1_r_t_s_p_output.html#a77b9417ed06d210bc3abea1aeae4fe85',1,'audio_tools::RTSPOutput']]],
+ ['operator_21_3d_2373',['operator!=',['../classaudio__tools_1_1_str.html#a05ef00d1df413cd997c167a24bd4a2b9',1,'audio_tools::Str::operator!=(const Str &alt) const'],['../classaudio__tools_1_1_str.html#afed25c1f44bea77bce830bf9bafc54f0',1,'audio_tools::Str::operator!=(const char *alt) const']]],
+ ['operator_2b_3d_2374',['operator+=',['../classaudio__tools_1_1_str.html#aa1a54030ea413f578dbfbc8c241a2d6d',1,'audio_tools::Str::operator+=(const char value)'],['../classaudio__tools_1_1_str.html#a70c5d010957bf4d2ed80b589e7974397',1,'audio_tools::Str::operator+=(int value)'],['../classaudio__tools_1_1_str.html#a2d2c60de54f22ce44b12700de8a77edb',1,'audio_tools::Str::operator+=(const char *str)'],['../classaudio__tools_1_1_str.html#a5c5b2a4a09be620b963ce4507fac7f37',1,'audio_tools::Str::operator+=(double value)']]],
+ ['operator_3c_3c_2375',['operator<<',['../classaudio__tools_1_1_str.html#ad22eaab0dacd5e2bbc5e3e0eebd90235',1,'audio_tools::Str']]],
+ ['operator_3d_2376',['operator=',['../classaudio__tools_1_1_str.html#aa96a84437bc58d39bada5d59eab66dcf',1,'audio_tools::Str::operator=(const char *str)'],['../classaudio__tools_1_1_str.html#a0efbed3fb099fe426767cdb9e2e4f700',1,'audio_tools::Str::operator=(char *str)'],['../classaudio__tools_1_1_str.html#a2a244dec4382ed6c18fcd66caca0554f',1,'audio_tools::Str::operator=(char c)'],['../classaudio__tools_1_1_str.html#a4d912d72c5b53c32cd108e88f08abeb6',1,'audio_tools::Str::operator=(double val)'],['../classaudio__tools_1_1_str.html#a9bb076e75d0839bada78ea6274831b7a',1,'audio_tools::Str::operator=(int value)'],['../classaudio__tools_1_1_str_ext.html#a23c60088bc5eae68c7bd27c721798b76',1,'audio_tools::StrExt::operator=(const char *str)'],['../classaudio__tools_1_1_str_ext.html#aa864c52bf667feca8610d83b16173ef9',1,'audio_tools::StrExt::operator=(char *str)'],['../classaudio__tools_1_1_str_ext.html#a5dd342e844c3c832b9a1e6aa633ee5d4',1,'audio_tools::StrExt::operator=(int v)'],['../classaudio__tools_1_1_str_ext.html#af21b5d173e182fdd0036039032730a4e',1,'audio_tools::StrExt::operator=(double v)']]],
+ ['operator_3d_3d_2377',['operator==',['../classaudio__tools_1_1_str.html#a8a034985fe01c5141d0eaece37e69fa7',1,'audio_tools::Str::operator==(const Str &alt) const'],['../classaudio__tools_1_1_str.html#a5ba52096c21d1dec49f347177d19e258',1,'audio_tools::Str::operator==(const char *alt) const']]],
+ ['operator_5b_5d_2378',['operator[]',['../classaudio__tools_1_1_audio_effect_common.html#a722144d124c35931c637345566824441',1,'audio_tools::AudioEffectCommon::operator[]()'],['../classaudio__tools_1_1_audio_effects.html#a722144d124c35931c637345566824441',1,'audio_tools::AudioEffects::operator[]()'],['../classaudio__tools_1_1_audio_effect_stream_t.html#a722144d124c35931c637345566824441',1,'audio_tools::AudioEffectStreamT::operator[]()'],['../classaudio__tools_1_1_s_d_direct.html#a0e4f2f4eb0c3ccce535ef70d2b3bea16',1,'audio_tools::SDDirect::operator[]()'],['../classaudio__tools_1_1_s_d_index.html#a0e4f2f4eb0c3ccce535ef70d2b3bea16',1,'audio_tools::SDIndex::operator[]()']]],
+ ['opusaudiodecoder_2379',['OpusAudioDecoder',['../classaudio__tools_1_1_opus_audio_decoder.html#a41456d8a19ed63bd28132ac0926a0143',1,'audio_tools::OpusAudioDecoder::OpusAudioDecoder()'],['../classaudio__tools_1_1_opus_audio_decoder.html#a02aff987ee199275e34bd196f20f0c0e',1,'audio_tools::OpusAudioDecoder::OpusAudioDecoder(Print &out_stream)']]],
+ ['opusencodersettings_2380',['OpusEncoderSettings',['../structaudio__tools_1_1_opus_encoder_settings.html#a3be7a937cfd7f58d1a93e1a815e697d4',1,'audio_tools::OpusEncoderSettings']]],
+ ['opussettings_2381',['OpusSettings',['../structaudio__tools_1_1_opus_settings.html#ababbf31a0d7af4f72a111533e439bd85',1,'audio_tools::OpusSettings']]],
+ ['out_2382',['out',['../classaudio__tools_1_1_audio_server.html#a1479a6d7009eea462d5f4f0867fd2d0e',1,'audio_tools::AudioServer']]],
+ ['out_5fptr_2383',['out_ptr',['../classaudio__tools_1_1_audio_server.html#a2fae28752423eb0af249f1bcca7936ca',1,'audio_tools::AudioServer']]]
];
diff --git a/search/functions_f.js b/search/functions_f.js
index c1052a90f7..52ed48320a 100644
--- a/search/functions_f.js
+++ b/search/functions_f.js
@@ -1,54 +1,54 @@
var searchData=
[
- ['parse_2380',['parse',['../classaudio__tools_1_1_m_p4_parse_buffer.html#a733f288c0d16f9c1edd345f3016c6f3e',1,'audio_tools::MP4ParseBuffer::parse()'],['../classaudio__tools_1_1_w_a_v_header.html#ad7c704b34912678d95c13243cacf9d7f',1,'audio_tools::WAVHeader::parse()']]],
- ['parsechunk_2381',['parseChunk',['../classaudio__tools_1_1_a_v_i_decoder.html#a3c2120b69ffb2f84991979dd8f74e88e',1,'audio_tools::AVIDecoder']]],
- ['parselist_2382',['parseList',['../classaudio__tools_1_1_a_v_i_decoder.html#a27c5fdbba090468dce5e63c3b2748539',1,'audio_tools::AVIDecoder']]],
- ['peek_2383',['peek',['../classaudio__tools_1_1_variable_speed_ring_buffer_simple.html#a6e49b863dbcd071ed8d6766f31a59224',1,'audio_tools::VariableSpeedRingBufferSimple::peek()'],['../classaudio__tools_1_1_variable_speed_ring_buffer180.html#a6e49b863dbcd071ed8d6766f31a59224',1,'audio_tools::VariableSpeedRingBuffer180::peek()'],['../classaudio__tools_1_1_variable_speed_ring_buffer.html#a6e49b863dbcd071ed8d6766f31a59224',1,'audio_tools::VariableSpeedRingBuffer::peek()'],['../classaudio__tools_1_1_buffered_task_stream.html#a9bb6daa18ee5d207a6f2e1899eaadcf3',1,'audio_tools::BufferedTaskStream::peek()'],['../classaudio__tools_1_1_buffered_stream.html#a9bb6daa18ee5d207a6f2e1899eaadcf3',1,'audio_tools::BufferedStream::peek()'],['../classaudio__tools_1_1_base_buffer.html#ab1e711e0b8eb67ffb4f17fb1b80bdc92',1,'audio_tools::BaseBuffer::peek()'],['../classaudio__tools_1_1_single_buffer.html#a17b2a32bc45e5094d6f58d1b2bc9f24d',1,'audio_tools::SingleBuffer::peek()'],['../classaudio__tools_1_1_ring_buffer.html#ac66cacbf1c5e7f0d0e55a82ba28f8a3d',1,'audio_tools::RingBuffer::peek()'],['../classaudio__tools_1_1_ring_buffer_file.html#a17b2a32bc45e5094d6f58d1b2bc9f24d',1,'audio_tools::RingBufferFile::peek()'],['../classaudio__tools_1_1_n_buffer.html#a6e49b863dbcd071ed8d6766f31a59224',1,'audio_tools::NBuffer::peek()']]],
- ['percentage_2384',['percentage',['../classaudio__tools_1_1_progress_stream.html#a9f7f63c73cb40eff4a49b904013006b5',1,'audio_tools::ProgressStream']]],
- ['pinadcdetect_2385',['pinAdcDetect',['../classaudio__tools_1_1_audio_kit_stream.html#ab39eefdad7f586cd474a3d2b09216939',1,'audio_tools::AudioKitStream']]],
- ['pinauxin_2386',['pinAuxin',['../classaudio__tools_1_1_audio_kit_stream.html#af7a84eb3e214370dec7d0767c96aa7b0',1,'audio_tools::AudioKitStream']]],
- ['pinblueled_2387',['pinBlueLed',['../classaudio__tools_1_1_audio_kit_stream.html#a4b55501189a7e8e0f7e05f8ab775a2df',1,'audio_tools::AudioKitStream']]],
- ['pines7243mclk_2388',['pinEs7243Mclk',['../classaudio__tools_1_1_audio_kit_stream.html#a22206058b2c9b84471c962bcd5ff8765',1,'audio_tools::AudioKitStream']]],
- ['pingreenled_2389',['pinGreenLed',['../classaudio__tools_1_1_audio_kit_stream.html#a157e45d9219139a0b85d4bd8fd46e5e1',1,'audio_tools::AudioKitStream']]],
- ['pinheadphonedetect_2390',['pinHeadphoneDetect',['../classaudio__tools_1_1_audio_kit_stream.html#a972a05e5f5c527240cede258c765010f',1,'audio_tools::AudioKitStream']]],
- ['pininputmode_2391',['pinInputMode',['../classaudio__tools_1_1_audio_kit_stream.html#ae9956ea27d7f2dcc838ed8dadf797096',1,'audio_tools::AudioKitStream']]],
- ['pininputplay_2392',['pinInputPlay',['../classaudio__tools_1_1_audio_kit_stream.html#a37b1724885bcba6cf005e159ea9346dd',1,'audio_tools::AudioKitStream']]],
- ['pininputrec_2393',['pinInputRec',['../classaudio__tools_1_1_audio_kit_stream.html#a86fb302f8fe0f5ea06542c1089586ac6',1,'audio_tools::AudioKitStream']]],
- ['pininputset_2394',['pinInputSet',['../classaudio__tools_1_1_audio_kit_stream.html#a74d9446f4b806236b548cce9c9302d3c',1,'audio_tools::AudioKitStream']]],
- ['pinknoisegenerator_2395',['PinkNoiseGenerator',['../classaudio__tools_1_1_pink_noise_generator.html#a4b1069db8df79428e29704ea5c29ce4e',1,'audio_tools::PinkNoiseGenerator']]],
- ['pinpaenable_2396',['pinPaEnable',['../classaudio__tools_1_1_audio_kit_stream.html#acd91d83776f0b1386a67216add505b6b',1,'audio_tools::AudioKitStream']]],
- ['pinresetboard_2397',['pinResetBoard',['../classaudio__tools_1_1_audio_kit_stream.html#a95a111c908edb8dbc5b6f7f6291038fd',1,'audio_tools::AudioKitStream']]],
- ['pinresetcodec_2398',['pinResetCodec',['../classaudio__tools_1_1_audio_kit_stream.html#a2b298471103a45906edd52805f3a370c',1,'audio_tools::AudioKitStream']]],
- ['pinvolumedown_2399',['pinVolumeDown',['../classaudio__tools_1_1_audio_kit_stream.html#a7077931c1f66d905759910e1ff1444ba',1,'audio_tools::AudioKitStream']]],
- ['pinvolumeup_2400',['pinVolumeUp',['../classaudio__tools_1_1_audio_kit_stream.html#a95e5f582b5afa46c29d74c21467e7828',1,'audio_tools::AudioKitStream']]],
- ['pitchread_2401',['pitchRead',['../classaudio__tools_1_1_variable_speed_ring_buffer180.html#ad28a32de6ba88b162a710caaca650fc5',1,'audio_tools::VariableSpeedRingBuffer180']]],
- ['pitchshift_2402',['PitchShift',['../classaudio__tools_1_1_pitch_shift.html#a503757c4d332c23ef7a196a62850df8c',1,'audio_tools::PitchShift']]],
- ['play_2403',['play',['../classaudio__tools_1_1_audio_player.html#a3d2c2e0ac8d63c418db8aecfd91da95c',1,'audio_tools::AudioPlayer']]],
- ['playnextframe_2404',['playNextFrame',['../classaudio__tools_1_1_driver_p_w_m_base.html#a2d3704eb509af9a335dd6c61edc237c3',1,'audio_tools::DriverPWMBase']]],
- ['post_2405',['post',['../classaudio__tools_1_1_http_request.html#ac3732b7458e048ea5efb7187474551df',1,'audio_tools::HttpRequest::post(Url &url, const char *mime, const char *data, int len=-1)'],['../classaudio__tools_1_1_http_request.html#a16e3686c0aee7323b2300d3b4e5f3480',1,'audio_tools::HttpRequest::post(Url &url, const char *mime, Stream &data, int len=-1)']]],
- ['postprocesssmoothtransition_2406',['postProcessSmoothTransition',['../classaudio__tools_1_1_dynamic_memory_stream.html#a3f5140c557550619d730b9a252aad092',1,'audio_tools::DynamicMemoryStream']]],
- ['previous_2407',['previous',['../classaudio__tools_1_1_audio_player.html#acbf583e792ca4a2c94f0e2514fbfc377',1,'audio_tools::AudioPlayer']]],
- ['previousstream_2408',['previousStream',['../classaudio__tools_1_1_audio_source.html#ad8b400914f4e89544a6cc95e051abbe8',1,'audio_tools::AudioSource::previousStream()'],['../classaudio__tools_1_1_audio_source_u_r_l.html#a54138fbf62e79ec041305abebd24814b',1,'audio_tools::AudioSourceURL::previousStream()']]],
- ['printfeatures_2409',['printFeatures',['../classaudio__tools_1_1_tf_lite_micro_speach_writer.html#a36a59a7718afbe542251facd3784dd24',1,'audio_tools::TfLiteMicroSpeachWriter']]],
- ['printsamplerate_2410',['printSampleRate',['../classaudio__tools_1_1_timer_callback_audio_stream.html#a8e855ca94f8466bc26cc598a1a077794',1,'audio_tools::TimerCallbackAudioStream']]],
- ['process_2411',['process',['../classaudio__tools_1_1_s_t_k_pit_shift.html#ae60a58177e645e1f35bb5ffe394427a2',1,'audio_tools::STKPitShift::process()'],['../classaudio__tools_1_1_s_t_k_lent_pit_shift.html#ae60a58177e645e1f35bb5ffe394427a2',1,'audio_tools::STKLentPitShift::process()'],['../classaudio__tools_1_1_s_t_k_perry_reverb.html#ae60a58177e645e1f35bb5ffe394427a2',1,'audio_tools::STKPerryReverb::process()'],['../classaudio__tools_1_1_s_t_k_n_reverb.html#ae60a58177e645e1f35bb5ffe394427a2',1,'audio_tools::STKNReverb::process()'],['../classaudio__tools_1_1_s_t_k_chowning_reverb.html#ae60a58177e645e1f35bb5ffe394427a2',1,'audio_tools::STKChowningReverb::process()'],['../classaudio__tools_1_1_s_t_k_free_verb.html#ae60a58177e645e1f35bb5ffe394427a2',1,'audio_tools::STKFreeVerb::process()'],['../classaudio__tools_1_1_s_t_k_echo.html#ae60a58177e645e1f35bb5ffe394427a2',1,'audio_tools::STKEcho::process()'],['../classaudio__tools_1_1_pitch_shift.html#a3560bcb309efc4862dfbf1aae406b47d',1,'audio_tools::PitchShift::process()'],['../classaudio__tools_1_1_s_t_k_chorus.html#ae60a58177e645e1f35bb5ffe394427a2',1,'audio_tools::STKChorus::process()'],['../classaudio__tools_1_1_s_t_k_effect.html#ae60a58177e645e1f35bb5ffe394427a2',1,'audio_tools::STKEffect::process()'],['../classaudio__tools_1_1_simple_delay.html#a5a6afed23842407ac7d86a786d978265',1,'audio_tools::SimpleDelay::process()'],['../classaudio__tools_1_1_filter_effect_base.html#a9a251f718b9acd5396c561c55661df4c',1,'audio_tools::FilterEffectBase::process()'],['../classaudio__tools_1_1_u_r_l_stream.html#aa492fdf944a90814322e4df12889b271',1,'audio_tools::URLStream::process()'],['../classaudio__tools_1_1_a_d_s_r_gain.html#a3560bcb309efc4862dfbf1aae406b47d',1,'audio_tools::ADSRGain::process()'],['../classaudio__tools_1_1_delay.html#a3560bcb309efc4862dfbf1aae406b47d',1,'audio_tools::Delay::process()'],['../classaudio__tools_1_1_tremolo.html#a3560bcb309efc4862dfbf1aae406b47d',1,'audio_tools::Tremolo::process()'],['../classaudio__tools_1_1_fuzz.html#a3560bcb309efc4862dfbf1aae406b47d',1,'audio_tools::Fuzz::process()'],['../classaudio__tools_1_1_distortion.html#a3560bcb309efc4862dfbf1aae406b47d',1,'audio_tools::Distortion::process()'],['../classaudio__tools_1_1_boost.html#a3560bcb309efc4862dfbf1aae406b47d',1,'audio_tools::Boost::process()'],['../classaudio__tools_1_1_audio_effect.html#a4cf482bd34a9ababb1115c6b64c7179f',1,'audio_tools::AudioEffect::process()'],['../classaudio__tools_1_1_filtered_delay.html#a5a6afed23842407ac7d86a786d978265',1,'audio_tools::FilteredDelay::process()']]],
- ['processactions_2412',['processActions',['../classaudio__tools_1_1_audio_actions.html#a7897359154057644b97714a13fc70581',1,'audio_tools::AudioActions::processActions()'],['../classaudio__tools_1_1_audio_kit_stream.html#a7897359154057644b97714a13fc70581',1,'audio_tools::AudioKitStream::processActions()']]],
- ['processbegin_2413',['processBegin',['../classaudio__tools_1_1_http_request.html#a7ea676da702cf4fa9667770e0fc6cb51',1,'audio_tools::HttpRequest']]],
- ['processbyte_2414',['processByte',['../classaudio__tools_1_1_codec2_decoder.html#aac30d22c864c6347a8ae3710e9247517',1,'audio_tools::Codec2Decoder::processByte()'],['../classaudio__tools_1_1_g722_decoder.html#aac30d22c864c6347a8ae3710e9247517',1,'audio_tools::G722Decoder::processByte()'],['../classaudio__tools_1_1_g_s_m_decoder.html#aac30d22c864c6347a8ae3710e9247517',1,'audio_tools::GSMDecoder::processByte()'],['../classaudio__tools_1_1_s_b_c_decoder.html#aac30d22c864c6347a8ae3710e9247517',1,'audio_tools::SBCDecoder::processByte()']]],
- ['processchar_2415',['processChar',['../classaudio__tools_1_1_meta_data_i_c_y.html#afaa62a977d826c378653068a0fe2fa74',1,'audio_tools::MetaDataICY']]],
- ['processdata_2416',['processData',['../classaudio__tools_1_1_meta_data_i_c_y.html#af7d2f412142604101fb79864b65a81ca',1,'audio_tools::MetaDataICY']]],
- ['processdouble_2417',['processDouble',['../classaudio__tools_1_1_simple_flanger.html#a119d38290869a69f0b5c07060dc21d04',1,'audio_tools::SimpleFlanger::processDouble()'],['../classaudio__tools_1_1_envelope_filter.html#aca08a6669051b23e0facdaff95f3b4fc',1,'audio_tools::EnvelopeFilter::processDouble()'],['../classaudio__tools_1_1_simple_delay.html#a119d38290869a69f0b5c07060dc21d04',1,'audio_tools::SimpleDelay::processDouble()'],['../classaudio__tools_1_1_simple_chorus.html#adf0c382e22d2c7c1c8e89e7750060336',1,'audio_tools::SimpleChorus::processDouble()'],['../classaudio__tools_1_1_filter_effect_base.html#adf0c382e22d2c7c1c8e89e7750060336',1,'audio_tools::FilterEffectBase::processDouble()'],['../classaudio__tools_1_1_filtered_delay.html#a119d38290869a69f0b5c07060dc21d04',1,'audio_tools::FilteredDelay::processDouble()']]],
- ['processedbytes_2418',['processedBytes',['../classaudio__tools_1_1_progress_stream.html#a4c748933f788283b6ff6ae34c2343413',1,'audio_tools::ProgressStream']]],
- ['processedsecs_2419',['processedSecs',['../classaudio__tools_1_1_progress_stream.html#ac87782ae17399f712bfd705080beb77b',1,'audio_tools::ProgressStream']]],
- ['processend_2420',['processEnd',['../classaudio__tools_1_1_http_request.html#a36cb432f337dedd636359e03621387fc',1,'audio_tools::HttpRequest']]],
- ['processmetadata_2421',['processMetaData',['../classaudio__tools_1_1_meta_data_i_c_y.html#ae1c19315938635702a15fbb9d1cbc845',1,'audio_tools::MetaDataICY']]],
- ['processnotify_2422',['processNotify',['../classaudio__tools_1_1_meta_data_i_d3_v1.html#acf70800d251389898cf483fbdf5bf227',1,'audio_tools::MetaDataID3V1::processNotify()'],['../classaudio__tools_1_1_meta_data_i_d3_v2.html#acf70800d251389898cf483fbdf5bf227',1,'audio_tools::MetaDataID3V2::processNotify()']]],
- ['processpartialtagattail_2423',['processPartialTagAtTail',['../classaudio__tools_1_1_meta_data_i_d3_v1.html#aa390b02a2b5a6d77ea52aa70ddd82d54',1,'audio_tools::MetaDataID3V1::processPartialTagAtTail()'],['../classaudio__tools_1_1_meta_data_i_d3_v2.html#aa390b02a2b5a6d77ea52aa70ddd82d54',1,'audio_tools::MetaDataID3V2::processPartialTagAtTail()']]],
- ['processpost_2424',['processPost',['../classaudio__tools_1_1_http_request.html#a2ef1b3fd3c6287dc208fb09a4765ee85',1,'audio_tools::HttpRequest']]],
- ['processtagfoundpartial_2425',['processTagFoundPartial',['../classaudio__tools_1_1_meta_data_i_d3_v1.html#a7f2b43d73afb7c4eabaa56c0c6720373',1,'audio_tools::MetaDataID3V1']]],
- ['processtagnotfound_2426',['processTagNotFound',['../classaudio__tools_1_1_meta_data_i_d3_v1.html#af65dc6223437b3c205c5f2fa84fad293',1,'audio_tools::MetaDataID3V1::processTagNotFound()'],['../classaudio__tools_1_1_meta_data_i_d3_v2.html#af65dc6223437b3c205c5f2fa84fad293',1,'audio_tools::MetaDataID3V2::processTagNotFound()']]],
- ['provideresult_2427',['provideResult',['../classaudio__tools_1_1_m_p3_decoder_mini.html#a9be6d1c58efaa750c8ad9f151d75bbd8',1,'audio_tools::MP3DecoderMini']]],
- ['put_2428',['put',['../classaudio__tools_1_1_http_header.html#aad0a326d1be955b9f81c9380a110792a',1,'audio_tools::HttpHeader::put(const char *key, int value)'],['../classaudio__tools_1_1_http_header.html#acc4cbfd8106ea75ee97ad8cdbd991f83',1,'audio_tools::HttpHeader::put(const char *line)'],['../classaudio__tools_1_1_http_request.html#a4c7f5c415ac8264c0c9b2ea9b490dd8b',1,'audio_tools::HttpRequest::put(Url &url, const char *mime, const char *data, int len=-1)'],['../classaudio__tools_1_1_http_request.html#a98c51e1382b8caf0c61e827e3b226c43',1,'audio_tools::HttpRequest::put(Url &url, const char *mime, Stream &data, int len=-1)']]],
- ['pwm_5fcallback_2429',['pwm_callback',['../classaudio__tools_1_1_p_w_m_driver_e_s_p32.html#ad01c3142af5779554e93ef32d81ac71c',1,'audio_tools::PWMDriverESP32']]],
- ['pwmwrite_2430',['pwmWrite',['../classaudio__tools_1_1_p_w_m_driver_e_s_p32.html#acd2fecd9cd9705ac26cf1a2c4f8398de',1,'audio_tools::PWMDriverESP32::pwmWrite()'],['../classaudio__tools_1_1_p_w_m_driver_m_b_e_d.html#acd2fecd9cd9705ac26cf1a2c4f8398de',1,'audio_tools::PWMDriverMBED::pwmWrite()'],['../classaudio__tools_1_1_p_w_m_driver_renesas.html#acd2fecd9cd9705ac26cf1a2c4f8398de',1,'audio_tools::PWMDriverRenesas::pwmWrite()'],['../classaudio__tools_1_1_p_w_m_driver_s_t_m32.html#acd2fecd9cd9705ac26cf1a2c4f8398de',1,'audio_tools::PWMDriverSTM32::pwmWrite()']]]
+ ['parse_2384',['parse',['../classaudio__tools_1_1_m_p4_parse_buffer.html#a733f288c0d16f9c1edd345f3016c6f3e',1,'audio_tools::MP4ParseBuffer::parse()'],['../classaudio__tools_1_1_w_a_v_header.html#ad7c704b34912678d95c13243cacf9d7f',1,'audio_tools::WAVHeader::parse()']]],
+ ['parsechunk_2385',['parseChunk',['../classaudio__tools_1_1_a_v_i_decoder.html#a3c2120b69ffb2f84991979dd8f74e88e',1,'audio_tools::AVIDecoder']]],
+ ['parselist_2386',['parseList',['../classaudio__tools_1_1_a_v_i_decoder.html#a27c5fdbba090468dce5e63c3b2748539',1,'audio_tools::AVIDecoder']]],
+ ['peek_2387',['peek',['../classaudio__tools_1_1_variable_speed_ring_buffer_simple.html#a6e49b863dbcd071ed8d6766f31a59224',1,'audio_tools::VariableSpeedRingBufferSimple::peek()'],['../classaudio__tools_1_1_variable_speed_ring_buffer180.html#a6e49b863dbcd071ed8d6766f31a59224',1,'audio_tools::VariableSpeedRingBuffer180::peek()'],['../classaudio__tools_1_1_variable_speed_ring_buffer.html#a6e49b863dbcd071ed8d6766f31a59224',1,'audio_tools::VariableSpeedRingBuffer::peek()'],['../classaudio__tools_1_1_buffered_task_stream.html#a9bb6daa18ee5d207a6f2e1899eaadcf3',1,'audio_tools::BufferedTaskStream::peek()'],['../classaudio__tools_1_1_buffered_stream.html#a9bb6daa18ee5d207a6f2e1899eaadcf3',1,'audio_tools::BufferedStream::peek()'],['../classaudio__tools_1_1_base_buffer.html#ab1e711e0b8eb67ffb4f17fb1b80bdc92',1,'audio_tools::BaseBuffer::peek()'],['../classaudio__tools_1_1_single_buffer.html#a17b2a32bc45e5094d6f58d1b2bc9f24d',1,'audio_tools::SingleBuffer::peek()'],['../classaudio__tools_1_1_ring_buffer.html#ac66cacbf1c5e7f0d0e55a82ba28f8a3d',1,'audio_tools::RingBuffer::peek()'],['../classaudio__tools_1_1_ring_buffer_file.html#a17b2a32bc45e5094d6f58d1b2bc9f24d',1,'audio_tools::RingBufferFile::peek()'],['../classaudio__tools_1_1_n_buffer.html#a6e49b863dbcd071ed8d6766f31a59224',1,'audio_tools::NBuffer::peek()']]],
+ ['percentage_2388',['percentage',['../classaudio__tools_1_1_progress_stream.html#a9f7f63c73cb40eff4a49b904013006b5',1,'audio_tools::ProgressStream']]],
+ ['pinadcdetect_2389',['pinAdcDetect',['../classaudio__tools_1_1_audio_kit_stream.html#ab39eefdad7f586cd474a3d2b09216939',1,'audio_tools::AudioKitStream']]],
+ ['pinauxin_2390',['pinAuxin',['../classaudio__tools_1_1_audio_kit_stream.html#af7a84eb3e214370dec7d0767c96aa7b0',1,'audio_tools::AudioKitStream']]],
+ ['pinblueled_2391',['pinBlueLed',['../classaudio__tools_1_1_audio_kit_stream.html#a4b55501189a7e8e0f7e05f8ab775a2df',1,'audio_tools::AudioKitStream']]],
+ ['pines7243mclk_2392',['pinEs7243Mclk',['../classaudio__tools_1_1_audio_kit_stream.html#a22206058b2c9b84471c962bcd5ff8765',1,'audio_tools::AudioKitStream']]],
+ ['pingreenled_2393',['pinGreenLed',['../classaudio__tools_1_1_audio_kit_stream.html#a157e45d9219139a0b85d4bd8fd46e5e1',1,'audio_tools::AudioKitStream']]],
+ ['pinheadphonedetect_2394',['pinHeadphoneDetect',['../classaudio__tools_1_1_audio_kit_stream.html#a972a05e5f5c527240cede258c765010f',1,'audio_tools::AudioKitStream']]],
+ ['pininputmode_2395',['pinInputMode',['../classaudio__tools_1_1_audio_kit_stream.html#ae9956ea27d7f2dcc838ed8dadf797096',1,'audio_tools::AudioKitStream']]],
+ ['pininputplay_2396',['pinInputPlay',['../classaudio__tools_1_1_audio_kit_stream.html#a37b1724885bcba6cf005e159ea9346dd',1,'audio_tools::AudioKitStream']]],
+ ['pininputrec_2397',['pinInputRec',['../classaudio__tools_1_1_audio_kit_stream.html#a86fb302f8fe0f5ea06542c1089586ac6',1,'audio_tools::AudioKitStream']]],
+ ['pininputset_2398',['pinInputSet',['../classaudio__tools_1_1_audio_kit_stream.html#a74d9446f4b806236b548cce9c9302d3c',1,'audio_tools::AudioKitStream']]],
+ ['pinknoisegenerator_2399',['PinkNoiseGenerator',['../classaudio__tools_1_1_pink_noise_generator.html#a4b1069db8df79428e29704ea5c29ce4e',1,'audio_tools::PinkNoiseGenerator']]],
+ ['pinpaenable_2400',['pinPaEnable',['../classaudio__tools_1_1_audio_kit_stream.html#acd91d83776f0b1386a67216add505b6b',1,'audio_tools::AudioKitStream']]],
+ ['pinresetboard_2401',['pinResetBoard',['../classaudio__tools_1_1_audio_kit_stream.html#a95a111c908edb8dbc5b6f7f6291038fd',1,'audio_tools::AudioKitStream']]],
+ ['pinresetcodec_2402',['pinResetCodec',['../classaudio__tools_1_1_audio_kit_stream.html#a2b298471103a45906edd52805f3a370c',1,'audio_tools::AudioKitStream']]],
+ ['pinvolumedown_2403',['pinVolumeDown',['../classaudio__tools_1_1_audio_kit_stream.html#a7077931c1f66d905759910e1ff1444ba',1,'audio_tools::AudioKitStream']]],
+ ['pinvolumeup_2404',['pinVolumeUp',['../classaudio__tools_1_1_audio_kit_stream.html#a95e5f582b5afa46c29d74c21467e7828',1,'audio_tools::AudioKitStream']]],
+ ['pitchread_2405',['pitchRead',['../classaudio__tools_1_1_variable_speed_ring_buffer180.html#ad28a32de6ba88b162a710caaca650fc5',1,'audio_tools::VariableSpeedRingBuffer180']]],
+ ['pitchshift_2406',['PitchShift',['../classaudio__tools_1_1_pitch_shift.html#a503757c4d332c23ef7a196a62850df8c',1,'audio_tools::PitchShift']]],
+ ['play_2407',['play',['../classaudio__tools_1_1_audio_player.html#a3d2c2e0ac8d63c418db8aecfd91da95c',1,'audio_tools::AudioPlayer']]],
+ ['playnextframe_2408',['playNextFrame',['../classaudio__tools_1_1_driver_p_w_m_base.html#a2d3704eb509af9a335dd6c61edc237c3',1,'audio_tools::DriverPWMBase']]],
+ ['post_2409',['post',['../classaudio__tools_1_1_http_request.html#ac3732b7458e048ea5efb7187474551df',1,'audio_tools::HttpRequest::post(Url &url, const char *mime, const char *data, int len=-1)'],['../classaudio__tools_1_1_http_request.html#a16e3686c0aee7323b2300d3b4e5f3480',1,'audio_tools::HttpRequest::post(Url &url, const char *mime, Stream &data, int len=-1)']]],
+ ['postprocesssmoothtransition_2410',['postProcessSmoothTransition',['../classaudio__tools_1_1_dynamic_memory_stream.html#a3f5140c557550619d730b9a252aad092',1,'audio_tools::DynamicMemoryStream']]],
+ ['previous_2411',['previous',['../classaudio__tools_1_1_audio_player.html#acbf583e792ca4a2c94f0e2514fbfc377',1,'audio_tools::AudioPlayer']]],
+ ['previousstream_2412',['previousStream',['../classaudio__tools_1_1_audio_source.html#ad8b400914f4e89544a6cc95e051abbe8',1,'audio_tools::AudioSource::previousStream()'],['../classaudio__tools_1_1_audio_source_u_r_l.html#a54138fbf62e79ec041305abebd24814b',1,'audio_tools::AudioSourceURL::previousStream()']]],
+ ['printfeatures_2413',['printFeatures',['../classaudio__tools_1_1_tf_lite_micro_speach_writer.html#a36a59a7718afbe542251facd3784dd24',1,'audio_tools::TfLiteMicroSpeachWriter']]],
+ ['printsamplerate_2414',['printSampleRate',['../classaudio__tools_1_1_timer_callback_audio_stream.html#a8e855ca94f8466bc26cc598a1a077794',1,'audio_tools::TimerCallbackAudioStream']]],
+ ['process_2415',['process',['../classaudio__tools_1_1_s_t_k_pit_shift.html#ae60a58177e645e1f35bb5ffe394427a2',1,'audio_tools::STKPitShift::process()'],['../classaudio__tools_1_1_s_t_k_lent_pit_shift.html#ae60a58177e645e1f35bb5ffe394427a2',1,'audio_tools::STKLentPitShift::process()'],['../classaudio__tools_1_1_s_t_k_perry_reverb.html#ae60a58177e645e1f35bb5ffe394427a2',1,'audio_tools::STKPerryReverb::process()'],['../classaudio__tools_1_1_s_t_k_n_reverb.html#ae60a58177e645e1f35bb5ffe394427a2',1,'audio_tools::STKNReverb::process()'],['../classaudio__tools_1_1_s_t_k_chowning_reverb.html#ae60a58177e645e1f35bb5ffe394427a2',1,'audio_tools::STKChowningReverb::process()'],['../classaudio__tools_1_1_s_t_k_free_verb.html#ae60a58177e645e1f35bb5ffe394427a2',1,'audio_tools::STKFreeVerb::process()'],['../classaudio__tools_1_1_s_t_k_echo.html#ae60a58177e645e1f35bb5ffe394427a2',1,'audio_tools::STKEcho::process()'],['../classaudio__tools_1_1_pitch_shift.html#a3560bcb309efc4862dfbf1aae406b47d',1,'audio_tools::PitchShift::process()'],['../classaudio__tools_1_1_s_t_k_chorus.html#ae60a58177e645e1f35bb5ffe394427a2',1,'audio_tools::STKChorus::process()'],['../classaudio__tools_1_1_s_t_k_effect.html#ae60a58177e645e1f35bb5ffe394427a2',1,'audio_tools::STKEffect::process()'],['../classaudio__tools_1_1_simple_delay.html#a5a6afed23842407ac7d86a786d978265',1,'audio_tools::SimpleDelay::process()'],['../classaudio__tools_1_1_filter_effect_base.html#a9a251f718b9acd5396c561c55661df4c',1,'audio_tools::FilterEffectBase::process()'],['../classaudio__tools_1_1_u_r_l_stream.html#aa492fdf944a90814322e4df12889b271',1,'audio_tools::URLStream::process()'],['../classaudio__tools_1_1_a_d_s_r_gain.html#a3560bcb309efc4862dfbf1aae406b47d',1,'audio_tools::ADSRGain::process()'],['../classaudio__tools_1_1_delay.html#a3560bcb309efc4862dfbf1aae406b47d',1,'audio_tools::Delay::process()'],['../classaudio__tools_1_1_tremolo.html#a3560bcb309efc4862dfbf1aae406b47d',1,'audio_tools::Tremolo::process()'],['../classaudio__tools_1_1_fuzz.html#a3560bcb309efc4862dfbf1aae406b47d',1,'audio_tools::Fuzz::process()'],['../classaudio__tools_1_1_distortion.html#a3560bcb309efc4862dfbf1aae406b47d',1,'audio_tools::Distortion::process()'],['../classaudio__tools_1_1_boost.html#a3560bcb309efc4862dfbf1aae406b47d',1,'audio_tools::Boost::process()'],['../classaudio__tools_1_1_audio_effect.html#a4cf482bd34a9ababb1115c6b64c7179f',1,'audio_tools::AudioEffect::process()'],['../classaudio__tools_1_1_filtered_delay.html#a5a6afed23842407ac7d86a786d978265',1,'audio_tools::FilteredDelay::process()']]],
+ ['processactions_2416',['processActions',['../classaudio__tools_1_1_audio_actions.html#a7897359154057644b97714a13fc70581',1,'audio_tools::AudioActions::processActions()'],['../classaudio__tools_1_1_audio_kit_stream.html#a7897359154057644b97714a13fc70581',1,'audio_tools::AudioKitStream::processActions()']]],
+ ['processbegin_2417',['processBegin',['../classaudio__tools_1_1_http_request.html#a7ea676da702cf4fa9667770e0fc6cb51',1,'audio_tools::HttpRequest']]],
+ ['processbyte_2418',['processByte',['../classaudio__tools_1_1_codec2_decoder.html#aac30d22c864c6347a8ae3710e9247517',1,'audio_tools::Codec2Decoder::processByte()'],['../classaudio__tools_1_1_g722_decoder.html#aac30d22c864c6347a8ae3710e9247517',1,'audio_tools::G722Decoder::processByte()'],['../classaudio__tools_1_1_g_s_m_decoder.html#aac30d22c864c6347a8ae3710e9247517',1,'audio_tools::GSMDecoder::processByte()'],['../classaudio__tools_1_1_s_b_c_decoder.html#aac30d22c864c6347a8ae3710e9247517',1,'audio_tools::SBCDecoder::processByte()']]],
+ ['processchar_2419',['processChar',['../classaudio__tools_1_1_meta_data_i_c_y.html#afaa62a977d826c378653068a0fe2fa74',1,'audio_tools::MetaDataICY']]],
+ ['processdata_2420',['processData',['../classaudio__tools_1_1_meta_data_i_c_y.html#af7d2f412142604101fb79864b65a81ca',1,'audio_tools::MetaDataICY']]],
+ ['processdouble_2421',['processDouble',['../classaudio__tools_1_1_simple_flanger.html#a119d38290869a69f0b5c07060dc21d04',1,'audio_tools::SimpleFlanger::processDouble()'],['../classaudio__tools_1_1_envelope_filter.html#aca08a6669051b23e0facdaff95f3b4fc',1,'audio_tools::EnvelopeFilter::processDouble()'],['../classaudio__tools_1_1_simple_delay.html#a119d38290869a69f0b5c07060dc21d04',1,'audio_tools::SimpleDelay::processDouble()'],['../classaudio__tools_1_1_simple_chorus.html#adf0c382e22d2c7c1c8e89e7750060336',1,'audio_tools::SimpleChorus::processDouble()'],['../classaudio__tools_1_1_filter_effect_base.html#adf0c382e22d2c7c1c8e89e7750060336',1,'audio_tools::FilterEffectBase::processDouble()'],['../classaudio__tools_1_1_filtered_delay.html#a119d38290869a69f0b5c07060dc21d04',1,'audio_tools::FilteredDelay::processDouble()']]],
+ ['processedbytes_2422',['processedBytes',['../classaudio__tools_1_1_progress_stream.html#a4c748933f788283b6ff6ae34c2343413',1,'audio_tools::ProgressStream']]],
+ ['processedsecs_2423',['processedSecs',['../classaudio__tools_1_1_progress_stream.html#ac87782ae17399f712bfd705080beb77b',1,'audio_tools::ProgressStream']]],
+ ['processend_2424',['processEnd',['../classaudio__tools_1_1_http_request.html#a36cb432f337dedd636359e03621387fc',1,'audio_tools::HttpRequest']]],
+ ['processmetadata_2425',['processMetaData',['../classaudio__tools_1_1_meta_data_i_c_y.html#ae1c19315938635702a15fbb9d1cbc845',1,'audio_tools::MetaDataICY']]],
+ ['processnotify_2426',['processNotify',['../classaudio__tools_1_1_meta_data_i_d3_v1.html#acf70800d251389898cf483fbdf5bf227',1,'audio_tools::MetaDataID3V1::processNotify()'],['../classaudio__tools_1_1_meta_data_i_d3_v2.html#acf70800d251389898cf483fbdf5bf227',1,'audio_tools::MetaDataID3V2::processNotify()']]],
+ ['processpartialtagattail_2427',['processPartialTagAtTail',['../classaudio__tools_1_1_meta_data_i_d3_v1.html#aa390b02a2b5a6d77ea52aa70ddd82d54',1,'audio_tools::MetaDataID3V1::processPartialTagAtTail()'],['../classaudio__tools_1_1_meta_data_i_d3_v2.html#aa390b02a2b5a6d77ea52aa70ddd82d54',1,'audio_tools::MetaDataID3V2::processPartialTagAtTail()']]],
+ ['processpost_2428',['processPost',['../classaudio__tools_1_1_http_request.html#a2ef1b3fd3c6287dc208fb09a4765ee85',1,'audio_tools::HttpRequest']]],
+ ['processtagfoundpartial_2429',['processTagFoundPartial',['../classaudio__tools_1_1_meta_data_i_d3_v1.html#a7f2b43d73afb7c4eabaa56c0c6720373',1,'audio_tools::MetaDataID3V1']]],
+ ['processtagnotfound_2430',['processTagNotFound',['../classaudio__tools_1_1_meta_data_i_d3_v1.html#af65dc6223437b3c205c5f2fa84fad293',1,'audio_tools::MetaDataID3V1::processTagNotFound()'],['../classaudio__tools_1_1_meta_data_i_d3_v2.html#af65dc6223437b3c205c5f2fa84fad293',1,'audio_tools::MetaDataID3V2::processTagNotFound()']]],
+ ['provideresult_2431',['provideResult',['../classaudio__tools_1_1_m_p3_decoder_mini.html#a9be6d1c58efaa750c8ad9f151d75bbd8',1,'audio_tools::MP3DecoderMini']]],
+ ['put_2432',['put',['../classaudio__tools_1_1_http_header.html#aad0a326d1be955b9f81c9380a110792a',1,'audio_tools::HttpHeader::put(const char *key, int value)'],['../classaudio__tools_1_1_http_header.html#acc4cbfd8106ea75ee97ad8cdbd991f83',1,'audio_tools::HttpHeader::put(const char *line)'],['../classaudio__tools_1_1_http_request.html#a4c7f5c415ac8264c0c9b2ea9b490dd8b',1,'audio_tools::HttpRequest::put(Url &url, const char *mime, const char *data, int len=-1)'],['../classaudio__tools_1_1_http_request.html#a98c51e1382b8caf0c61e827e3b226c43',1,'audio_tools::HttpRequest::put(Url &url, const char *mime, Stream &data, int len=-1)']]],
+ ['pwm_5fcallback_2433',['pwm_callback',['../classaudio__tools_1_1_p_w_m_driver_e_s_p32.html#ad01c3142af5779554e93ef32d81ac71c',1,'audio_tools::PWMDriverESP32']]],
+ ['pwmwrite_2434',['pwmWrite',['../classaudio__tools_1_1_p_w_m_driver_e_s_p32.html#acd2fecd9cd9705ac26cf1a2c4f8398de',1,'audio_tools::PWMDriverESP32::pwmWrite()'],['../classaudio__tools_1_1_p_w_m_driver_m_b_e_d.html#acd2fecd9cd9705ac26cf1a2c4f8398de',1,'audio_tools::PWMDriverMBED::pwmWrite()'],['../classaudio__tools_1_1_p_w_m_driver_renesas.html#acd2fecd9cd9705ac26cf1a2c4f8398de',1,'audio_tools::PWMDriverRenesas::pwmWrite()'],['../classaudio__tools_1_1_p_w_m_driver_s_t_m32.html#acd2fecd9cd9705ac26cf1a2c4f8398de',1,'audio_tools::PWMDriverSTM32::pwmWrite()']]]
];
diff --git a/search/groups_0.js b/search/groups_0.js
index c432fc16ff..454c9348a4 100644
--- a/search/groups_0.js
+++ b/search/groups_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['arduino_20audio_20tools_2873',['Arduino Audio Tools',['../group__main.html',1,'']]]
+ ['arduino_20audio_20tools_2878',['Arduino Audio Tools',['../group__main.html',1,'']]]
];
diff --git a/search/groups_1.js b/search/groups_1.js
index 05559a4e55..02ea5ac9b8 100644
--- a/search/groups_1.js
+++ b/search/groups_1.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['basic_2874',['Basic',['../group__basic.html',1,'']]],
- ['buffers_2875',['Buffers',['../group__buffers.html',1,'']]]
+ ['basic_2879',['Basic',['../group__basic.html',1,'']]],
+ ['buffers_2880',['Buffers',['../group__buffers.html',1,'']]]
];
diff --git a/search/groups_2.js b/search/groups_2.js
index 434e041dab..664705d1fa 100644
--- a/search/groups_2.js
+++ b/search/groups_2.js
@@ -1,9 +1,9 @@
var searchData=
[
- ['cmsis_2876',['CMSIS',['../group__fft-cmsis.html',1,'']]],
- ['codecs_2877',['Codecs',['../group__codecs.html',1,'']]],
- ['collections_2878',['Collections',['../group__collections.html',1,'']]],
- ['communications_2879',['Communications',['../group__communications.html',1,'']]],
- ['converters_2880',['Converters',['../group__convert.html',1,'']]],
- ['converting_20streams_2881',['Converting Streams',['../group__transform.html',1,'']]]
+ ['cmsis_2881',['CMSIS',['../group__fft-cmsis.html',1,'']]],
+ ['codecs_2882',['Codecs',['../group__codecs.html',1,'']]],
+ ['collections_2883',['Collections',['../group__collections.html',1,'']]],
+ ['communications_2884',['Communications',['../group__communications.html',1,'']]],
+ ['converters_2885',['Converters',['../group__convert.html',1,'']]],
+ ['converting_20streams_2886',['Converting Streams',['../group__transform.html',1,'']]]
];
diff --git a/search/groups_3.js b/search/groups_3.js
index af8838a8ef..ce9db58be6 100644
--- a/search/groups_3.js
+++ b/search/groups_3.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['decoder_2882',['Decoder',['../group__decoder.html',1,'']]],
- ['dsp_2883',['DSP',['../group__dsp.html',1,'']]]
+ ['decoder_2887',['Decoder',['../group__decoder.html',1,'']]],
+ ['dsp_2888',['DSP',['../group__dsp.html',1,'']]]
];
diff --git a/search/groups_4.js b/search/groups_4.js
index f085d9ddcd..28882f2996 100644
--- a/search/groups_4.js
+++ b/search/groups_4.js
@@ -1,8 +1,8 @@
var searchData=
[
- ['effects_2884',['Effects',['../group__effects.html',1,'']]],
- ['encoder_2885',['Encoder',['../group__encoder.html',1,'']]],
- ['equilizer_2886',['Equilizer',['../group__equilizer.html',1,'']]],
- ['esp32_2ddsp_2887',['esp32-dsp',['../group__fft-dsp.html',1,'']]],
- ['esp32_2dfft_2888',['esp32-fft',['../group__fft-esp32.html',1,'']]]
+ ['effects_2889',['Effects',['../group__effects.html',1,'']]],
+ ['encoder_2890',['Encoder',['../group__encoder.html',1,'']]],
+ ['equilizer_2891',['Equilizer',['../group__equilizer.html',1,'']]],
+ ['esp32_2ddsp_2892',['esp32-dsp',['../group__fft-dsp.html',1,'']]],
+ ['esp32_2dfft_2893',['esp32-fft',['../group__fft-esp32.html',1,'']]]
];
diff --git a/search/groups_5.js b/search/groups_5.js
index 964c0f274f..990d89f2bf 100644
--- a/search/groups_5.js
+++ b/search/groups_5.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['fft_2889',['FFT',['../group__fft.html',1,'']]],
- ['filters_2890',['Filters',['../group__filter.html',1,'']]]
+ ['fft_2894',['FFT',['../group__fft.html',1,'']]],
+ ['filters_2895',['Filters',['../group__filter.html',1,'']]]
];
diff --git a/search/groups_6.js b/search/groups_6.js
index 349cbe230e..593f11300a 100644
--- a/search/groups_6.js
+++ b/search/groups_6.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['generators_2891',['Generators',['../group__generator.html',1,'']]]
+ ['generators_2896',['Generators',['../group__generator.html',1,'']]]
];
diff --git a/search/groups_7.js b/search/groups_7.js
index ebb44f2602..e4fafc982e 100644
--- a/search/groups_7.js
+++ b/search/groups_7.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['http_2892',['Http',['../group__http.html',1,'']]]
+ ['http_2897',['Http',['../group__http.html',1,'']]]
];
diff --git a/search/groups_8.js b/search/groups_8.js
index 98d2006122..085752deb3 100644
--- a/search/groups_8.js
+++ b/search/groups_8.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['icy_2893',['ICY',['../group__metadata-icy.html',1,'']]],
- ['id3_2894',['ID3',['../group__metadata-id3.html',1,'']]],
- ['io_2895',['IO',['../group__io.html',1,'']]]
+ ['icy_2898',['ICY',['../group__metadata-icy.html',1,'']]],
+ ['id3_2899',['ID3',['../group__metadata-id3.html',1,'']]],
+ ['io_2900',['IO',['../group__io.html',1,'']]]
];
diff --git a/search/groups_9.js b/search/groups_9.js
index 713d726f87..6dede21810 100644
--- a/search/groups_9.js
+++ b/search/groups_9.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['kiss_2896',['KISS',['../group__fft-kiss.html',1,'']]]
+ ['kiss_2901',['KISS',['../group__fft-kiss.html',1,'']]]
];
diff --git a/search/groups_a.js b/search/groups_a.js
index 2da51fe166..84d8bb65b8 100644
--- a/search/groups_a.js
+++ b/search/groups_a.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['machine_20learning_2897',['Machine Learning',['../group__ml.html',1,'']]],
- ['metadata_2898',['Metadata',['../group__metadata.html',1,'']]]
+ ['machine_20learning_2902',['Machine Learning',['../group__ml.html',1,'']]],
+ ['metadata_2903',['Metadata',['../group__metadata.html',1,'']]]
];
diff --git a/search/groups_b.js b/search/groups_b.js
index b339e1313c..6e1c273ee9 100644
--- a/search/groups_b.js
+++ b/search/groups_b.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['platform_2899',['Platform',['../group__platform.html',1,'']]],
- ['player_2900',['Player',['../group__player.html',1,'']]]
+ ['platform_2904',['Platform',['../group__platform.html',1,'']]],
+ ['player_2905',['Player',['../group__player.html',1,'']]]
];
diff --git a/search/groups_c.js b/search/groups_c.js
index 7cf6a6093b..56f8244082 100644
--- a/search/groups_c.js
+++ b/search/groups_c.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['real_2901',['Real',['../group__fft-real.html',1,'']]],
- ['rtsp_20streaming_2902',['RTSP Streaming',['../group__rtsp.html',1,'']]]
+ ['real_2906',['Real',['../group__fft-real.html',1,'']]],
+ ['rtsp_20streaming_2907',['RTSP Streaming',['../group__rtsp.html',1,'']]]
];
diff --git a/search/groups_d.js b/search/groups_d.js
index f20515772f..2e489971d1 100644
--- a/search/groups_d.js
+++ b/search/groups_d.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['strings_2903',['Strings',['../group__string.html',1,'']]]
+ ['strings_2908',['Strings',['../group__string.html',1,'']]]
];
diff --git a/search/groups_e.js b/search/groups_e.js
index 70b59423cf..e846bd0847 100644
--- a/search/groups_e.js
+++ b/search/groups_e.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['tflite_2904',['TFLite',['../group__tflite.html',1,'']]],
- ['timers_2905',['Timers',['../group__timer.html',1,'']]],
- ['tools_2906',['Tools',['../group__tools.html',1,'']]]
+ ['tflite_2909',['TFLite',['../group__tflite.html',1,'']]],
+ ['timers_2910',['Timers',['../group__timer.html',1,'']]],
+ ['tools_2911',['Tools',['../group__tools.html',1,'']]]
];
diff --git a/search/groups_f.js b/search/groups_f.js
index fc08b9faa0..6397748dde 100644
--- a/search/groups_f.js
+++ b/search/groups_f.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['video_2907',['Video',['../group__video.html',1,'']]],
- ['volume_2908',['Volume',['../group__volume.html',1,'']]]
+ ['video_2912',['Video',['../group__video.html',1,'']]],
+ ['volume_2913',['Volume',['../group__volume.html',1,'']]]
];
diff --git a/search/namespaces_0.js b/search/namespaces_0.js
index da1fb2605f..d14e86589e 100644
--- a/search/namespaces_0.js
+++ b/search/namespaces_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['audio_5ftools_2004',['audio_tools',['../namespaceaudio__tools.html',1,'']]]
+ ['audio_5ftools_2006',['audio_tools',['../namespaceaudio__tools.html',1,'']]]
];
diff --git a/search/pages_0.js b/search/pages_0.js
index 3be1a402d9..a513ea97b8 100644
--- a/search/pages_0.js
+++ b/search/pages_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['arduino_20audio_20tools_2909',['Arduino Audio Tools',['../index.html',1,'']]]
+ ['arduino_20audio_20tools_2914',['Arduino Audio Tools',['../index.html',1,'']]]
];
diff --git a/search/related_0.js b/search/related_0.js
index 867352ebd6..53a9182db6 100644
--- a/search/related_0.js
+++ b/search/related_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['defaultpwmaudiooutputcallback_2872',['defaultPWMAudioOutputCallback',['../classaudio__tools_1_1_p_w_m_driver_a_v_r.html#ac74c69e5f370226829182a11466619eb',1,'audio_tools::PWMDriverAVR']]]
+ ['defaultpwmaudiooutputcallback_2877',['defaultPWMAudioOutputCallback',['../classaudio__tools_1_1_p_w_m_driver_a_v_r.html#ac74c69e5f370226829182a11466619eb',1,'audio_tools::PWMDriverAVR']]]
];
diff --git a/search/typedefs_0.js b/search/typedefs_0.js
index cd154acd1a..1b01f67109 100644
--- a/search/typedefs_0.js
+++ b/search/typedefs_0.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['analogdriver_2856',['AnalogDriver',['../namespaceaudio__tools.html#a91ca8c40ca55c1fbc577d0fa03ba527d',1,'audio_tools']]],
- ['audioserverdatacallback_2857',['AudioServerDataCallback',['../namespaceaudio__tools.html#ae6d40783cdf760069729786896fc23b2',1,'audio_tools']]]
+ ['analogdriver_2861',['AnalogDriver',['../namespaceaudio__tools.html#a91ca8c40ca55c1fbc577d0fa03ba527d',1,'audio_tools']]],
+ ['audioserverdatacallback_2862',['AudioServerDataCallback',['../namespaceaudio__tools.html#ae6d40783cdf760069729786896fc23b2',1,'audio_tools']]]
];
diff --git a/search/typedefs_1.js b/search/typedefs_1.js
index 62087058fd..25207d4e95 100644
--- a/search/typedefs_1.js
+++ b/search/typedefs_1.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['pins_2858',['Pins',['../group__basic.html#ga869d6ee1c77c17df29cad21068f647cc',1,'audio_tools']]]
+ ['pins_2863',['Pins',['../group__basic.html#ga869d6ee1c77c17df29cad21068f647cc',1,'audio_tools']]]
];
diff --git a/search/typedefs_2.js b/search/typedefs_2.js
index c6bfe52eb1..1e27a1c4c6 100644
--- a/search/typedefs_2.js
+++ b/search/typedefs_2.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['timeralarmrepeatingdriver_2859',['TimerAlarmRepeatingDriver',['../namespaceaudio__tools.html#ad26cc1d7714553c807f4592a48647bb2',1,'audio_tools']]]
+ ['timeralarmrepeatingdriver_2864',['TimerAlarmRepeatingDriver',['../namespaceaudio__tools.html#ad26cc1d7714553c807f4592a48647bb2',1,'audio_tools']]]
];
diff --git a/search/variables_0.js b/search/variables_0.js
index 82231e0db4..77cce2d1a2 100644
--- a/search/variables_0.js
+++ b/search/variables_0.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['angledelta_2771',['angleDelta',['../classaudio__tools_1_1_simple_flanger.html#abcefa52c03f718e3d75b84a914879d74',1,'audio_tools::SimpleFlanger']]],
- ['application_2772',['application',['../structaudio__tools_1_1_opus_encoder_settings.html#aea1279d437aae049b99833cf3a4922a4',1,'audio_tools::OpusEncoderSettings']]],
- ['atom_2773',['atom',['../structaudio__tools_1_1_m_p4_atom.html#ac95cff6292ef1670bdaa51dbaabb41b1',1,'audio_tools::MP4Atom']]]
+ ['angledelta_2776',['angleDelta',['../classaudio__tools_1_1_simple_flanger.html#abcefa52c03f718e3d75b84a914879d74',1,'audio_tools::SimpleFlanger']]],
+ ['application_2777',['application',['../structaudio__tools_1_1_opus_encoder_settings.html#aea1279d437aae049b99833cf3a4922a4',1,'audio_tools::OpusEncoderSettings']]],
+ ['atom_2778',['atom',['../structaudio__tools_1_1_m_p4_atom.html#ac95cff6292ef1670bdaa51dbaabb41b1',1,'audio_tools::MP4Atom']]]
];
diff --git a/search/variables_1.js b/search/variables_1.js
index 8aed986e14..ff21b4e226 100644
--- a/search/variables_1.js
+++ b/search/variables_1.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['base_2774',['base',['../classaudio__tools_1_1_simple_chorus.html#a4b9d927a352137ca958022a72f253d11',1,'audio_tools::SimpleChorus']]],
- ['bitrate_2775',['bitrate',['../structaudio__tools_1_1_opus_encoder_settings.html#ab5d8e1788d02d0e52941a0778776e289',1,'audio_tools::OpusEncoderSettings']]],
- ['bufferindex_2776',['bufferIndex',['../classaudio__tools_1_1_filter_effect_base.html#a73b963945a418c57630c1b66ce2aa74f',1,'audio_tools::FilterEffectBase']]]
+ ['base_2779',['base',['../classaudio__tools_1_1_simple_chorus.html#a4b9d927a352137ca958022a72f253d11',1,'audio_tools::SimpleChorus']]],
+ ['bitrate_2780',['bitrate',['../structaudio__tools_1_1_opus_encoder_settings.html#ab5d8e1788d02d0e52941a0778776e289',1,'audio_tools::OpusEncoderSettings']]],
+ ['bufferindex_2781',['bufferIndex',['../classaudio__tools_1_1_filter_effect_base.html#a73b963945a418c57630c1b66ce2aa74f',1,'audio_tools::FilterEffectBase']]]
];
diff --git a/search/variables_10.js b/search/variables_10.js
index d9338a8a47..2f2b8722cc 100644
--- a/search/variables_10.js
+++ b/search/variables_10.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['x_2853',['x',['../structaudio__tools_1_1_l_e_d_output_config.html#a6150e0515f7202e2fb518f7206ed97dc',1,'audio_tools::LEDOutputConfig::x()'],['../structaudio__tools_1_1_l_e_d_output_uno_r4_config.html#a6150e0515f7202e2fb518f7206ed97dc',1,'audio_tools::LEDOutputUnoR4Config::x()']]]
+ ['x_2858',['x',['../structaudio__tools_1_1_l_e_d_output_config.html#a6150e0515f7202e2fb518f7206ed97dc',1,'audio_tools::LEDOutputConfig::x()'],['../structaudio__tools_1_1_l_e_d_output_uno_r4_config.html#a6150e0515f7202e2fb518f7206ed97dc',1,'audio_tools::LEDOutputUnoR4Config::x()']]]
];
diff --git a/search/variables_11.js b/search/variables_11.js
index cfa6a4f2f1..eb68ca3f6b 100644
--- a/search/variables_11.js
+++ b/search/variables_11.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['y_2854',['y',['../structaudio__tools_1_1_l_e_d_output_config.html#a0a2f84ed7838f07779ae24c5a9086d33',1,'audio_tools::LEDOutputConfig::y()'],['../structaudio__tools_1_1_l_e_d_output_uno_r4_config.html#a0a2f84ed7838f07779ae24c5a9086d33',1,'audio_tools::LEDOutputUnoR4Config::y()']]],
- ['y_5fmirror_2855',['y_mirror',['../structaudio__tools_1_1_l_e_d_output_uno_r4_config.html#afa757062d785457a773a042ce11eab8c',1,'audio_tools::LEDOutputUnoR4Config']]]
+ ['y_2859',['y',['../structaudio__tools_1_1_l_e_d_output_config.html#a0a2f84ed7838f07779ae24c5a9086d33',1,'audio_tools::LEDOutputConfig::y()'],['../structaudio__tools_1_1_l_e_d_output_uno_r4_config.html#a0a2f84ed7838f07779ae24c5a9086d33',1,'audio_tools::LEDOutputUnoR4Config::y()']]],
+ ['y_5fmirror_2860',['y_mirror',['../structaudio__tools_1_1_l_e_d_output_uno_r4_config.html#afa757062d785457a773a042ce11eab8c',1,'audio_tools::LEDOutputUnoR4Config']]]
];
diff --git a/search/variables_2.js b/search/variables_2.js
index a86267f80c..d7f086a2a8 100644
--- a/search/variables_2.js
+++ b/search/variables_2.js
@@ -1,8 +1,8 @@
var searchData=
[
- ['callback_2777',['callback',['../structaudio__tools_1_1_audio_f_f_t_config.html#ab8f87c1d0ccb89d45f13a0f43075a25c',1,'audio_tools::AudioFFTConfig']]],
- ['channel_5fused_2778',['channel_used',['../structaudio__tools_1_1_audio_f_f_t_config.html#a3a5b92ec292754862eefea3200d21f5d',1,'audio_tools::AudioFFTConfig']]],
- ['color_5fcallback_2779',['color_callback',['../structaudio__tools_1_1_l_e_d_output_config.html#a7288ed95e9f56c3ecce8ae4468f695f1',1,'audio_tools::LEDOutputConfig']]],
- ['complexity_2780',['complexity',['../structaudio__tools_1_1_opus_encoder_settings.html#a5cfa32bf3a363603c9088283597de63e',1,'audio_tools::OpusEncoderSettings']]],
- ['cs_5fpin_2781',['cs_pin',['../classaudio__tools_1_1_v_s1053_config.html#aed65b23a4e5c39c4267c5730833e70db',1,'audio_tools::VS1053Config']]]
+ ['callback_2782',['callback',['../structaudio__tools_1_1_audio_f_f_t_config.html#ab8f87c1d0ccb89d45f13a0f43075a25c',1,'audio_tools::AudioFFTConfig']]],
+ ['channel_5fused_2783',['channel_used',['../structaudio__tools_1_1_audio_f_f_t_config.html#a3a5b92ec292754862eefea3200d21f5d',1,'audio_tools::AudioFFTConfig']]],
+ ['color_5fcallback_2784',['color_callback',['../structaudio__tools_1_1_l_e_d_output_config.html#a7288ed95e9f56c3ecce8ae4468f695f1',1,'audio_tools::LEDOutputConfig']]],
+ ['complexity_2785',['complexity',['../structaudio__tools_1_1_opus_encoder_settings.html#a5cfa32bf3a363603c9088283597de63e',1,'audio_tools::OpusEncoderSettings']]],
+ ['cs_5fpin_2786',['cs_pin',['../classaudio__tools_1_1_v_s1053_config.html#aed65b23a4e5c39c4267c5730833e70db',1,'audio_tools::VS1053Config']]]
];
diff --git a/search/variables_3.js b/search/variables_3.js
index 43eb10a1ad..a4b3612ecc 100644
--- a/search/variables_3.js
+++ b/search/variables_3.js
@@ -1,8 +1,8 @@
var searchData=
[
- ['default_5fvolume_2782',['default_volume',['../classaudio__tools_1_1_w_m8960_config.html#aea30ac0f7cacb6ab91909ccb0865c852',1,'audio_tools::WM8960Config']]],
- ['delaybuffer_2783',['delayBuffer',['../classaudio__tools_1_1_delay_effect_base.html#ab5acc4a7b1ce6abce4bbdbf24bbe2f6c',1,'audio_tools::DelayEffectBase']]],
- ['delayincrement_2784',['delayIncrement',['../classaudio__tools_1_1_simple_delay.html#a2139f41832ac5fbbdc9fee046998c127',1,'audio_tools::SimpleDelay']]],
- ['delaytimesamples_2785',['delayTimeSamples',['../classaudio__tools_1_1_delay_effect_base.html#a952ab38025a0b55c7c118c0bff5acc9d',1,'audio_tools::DelayEffectBase']]],
- ['delaytransitiontime_2786',['delayTransitionTime',['../classaudio__tools_1_1_simple_delay.html#a91d5b98c18a29bf3fb5bbeb026751db8',1,'audio_tools::SimpleDelay']]]
+ ['default_5fvolume_2787',['default_volume',['../classaudio__tools_1_1_w_m8960_config.html#aea30ac0f7cacb6ab91909ccb0865c852',1,'audio_tools::WM8960Config']]],
+ ['delaybuffer_2788',['delayBuffer',['../classaudio__tools_1_1_delay_effect_base.html#ab5acc4a7b1ce6abce4bbdbf24bbe2f6c',1,'audio_tools::DelayEffectBase']]],
+ ['delayincrement_2789',['delayIncrement',['../classaudio__tools_1_1_simple_delay.html#a2139f41832ac5fbbdc9fee046998c127',1,'audio_tools::SimpleDelay']]],
+ ['delaytimesamples_2790',['delayTimeSamples',['../classaudio__tools_1_1_delay_effect_base.html#a952ab38025a0b55c7c118c0bff5acc9d',1,'audio_tools::DelayEffectBase']]],
+ ['delaytransitiontime_2791',['delayTransitionTime',['../classaudio__tools_1_1_simple_delay.html#a91d5b98c18a29bf3fb5bbeb026751db8',1,'audio_tools::SimpleDelay']]]
];
diff --git a/search/variables_4.js b/search/variables_4.js
index 3349dc4e3c..d21cd414cf 100644
--- a/search/variables_4.js
+++ b/search/variables_4.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['envelopefollower_2787',['envelopeFollower',['../classaudio__tools_1_1_envelope_filter.html#a8017440a793e8369f02aa5683abef99a',1,'audio_tools::EnvelopeFilter']]],
- ['error_2788',['error',['../classaudio__tools_1_1_delay_effect_base.html#a7a3172cc98e93d8eadfb9ab30373799e',1,'audio_tools::DelayEffectBase']]]
+ ['envelopefollower_2792',['envelopeFollower',['../classaudio__tools_1_1_envelope_filter.html#a8017440a793e8369f02aa5683abef99a',1,'audio_tools::EnvelopeFilter']]],
+ ['error_2793',['error',['../classaudio__tools_1_1_delay_effect_base.html#a7a3172cc98e93d8eadfb9ab30373799e',1,'audio_tools::DelayEffectBase']]]
];
diff --git a/search/variables_5.js b/search/variables_5.js
index d688b4cdcf..741c989e98 100644
--- a/search/variables_5.js
+++ b/search/variables_5.js
@@ -1,12 +1,12 @@
var searchData=
[
- ['fft_5fgroup_5fbin_2789',['fft_group_bin',['../classaudio__tools_1_1_f_f_t_display.html#a73b01b39dadcefeedf5dba96e198404d',1,'audio_tools::FFTDisplay']]],
- ['fft_5fmax_5fmagnitude_2790',['fft_max_magnitude',['../classaudio__tools_1_1_f_f_t_display.html#ad497bbb193dd1bdd692ca56937aa41df',1,'audio_tools::FFTDisplay']]],
- ['fft_5fstart_5fbin_2791',['fft_start_bin',['../classaudio__tools_1_1_f_f_t_display.html#a9bb26f83cc9e2a5a64ed305d9bb3a4fb',1,'audio_tools::FFTDisplay']]],
- ['filterorder_2792',['filterOrder',['../classaudio__tools_1_1_filter_effect_base.html#a9d09c73fcc694ca39d4563a3d9b4f925',1,'audio_tools::FilterEffectBase']]],
- ['firbuffer_2793',['firBuffer',['../classaudio__tools_1_1_filter_effect_base.html#a71e949448a14b350c539b2e97e358e24',1,'audio_tools::FilterEffectBase']]],
- ['fircoefficients_2794',['firCoefficients',['../classaudio__tools_1_1_filter_effect_base.html#a1b4b4166a56b76601a607fc863d8d05c',1,'audio_tools::FilterEffectBase']]],
- ['firtemp_2795',['firTemp',['../classaudio__tools_1_1_filter_effect_base.html#a2dd5b6b21bf4c4cb09225de69f3f3171',1,'audio_tools::FilterEffectBase']]],
- ['force_5fchannel_2796',['force_channel',['../structaudio__tools_1_1_opus_encoder_settings.html#a66e4f9807114d63ed07bba1bd98cfdcc',1,'audio_tools::OpusEncoderSettings']]],
- ['frame_5fsizes_5fms_5fx2_2797',['frame_sizes_ms_x2',['../structaudio__tools_1_1_opus_encoder_settings.html#a1cd9432fb6b95062adca18465db1a0f9',1,'audio_tools::OpusEncoderSettings']]]
+ ['fft_5fgroup_5fbin_2794',['fft_group_bin',['../classaudio__tools_1_1_f_f_t_display.html#a73b01b39dadcefeedf5dba96e198404d',1,'audio_tools::FFTDisplay']]],
+ ['fft_5fmax_5fmagnitude_2795',['fft_max_magnitude',['../classaudio__tools_1_1_f_f_t_display.html#ad497bbb193dd1bdd692ca56937aa41df',1,'audio_tools::FFTDisplay']]],
+ ['fft_5fstart_5fbin_2796',['fft_start_bin',['../classaudio__tools_1_1_f_f_t_display.html#a9bb26f83cc9e2a5a64ed305d9bb3a4fb',1,'audio_tools::FFTDisplay']]],
+ ['filterorder_2797',['filterOrder',['../classaudio__tools_1_1_filter_effect_base.html#a9d09c73fcc694ca39d4563a3d9b4f925',1,'audio_tools::FilterEffectBase']]],
+ ['firbuffer_2798',['firBuffer',['../classaudio__tools_1_1_filter_effect_base.html#a71e949448a14b350c539b2e97e358e24',1,'audio_tools::FilterEffectBase']]],
+ ['fircoefficients_2799',['firCoefficients',['../classaudio__tools_1_1_filter_effect_base.html#a1b4b4166a56b76601a607fc863d8d05c',1,'audio_tools::FilterEffectBase']]],
+ ['firtemp_2800',['firTemp',['../classaudio__tools_1_1_filter_effect_base.html#a2dd5b6b21bf4c4cb09225de69f3f3171',1,'audio_tools::FilterEffectBase']]],
+ ['force_5fchannel_2801',['force_channel',['../structaudio__tools_1_1_opus_encoder_settings.html#a66e4f9807114d63ed07bba1bd98cfdcc',1,'audio_tools::OpusEncoderSettings']]],
+ ['frame_5fsizes_5fms_5fx2_2802',['frame_sizes_ms_x2',['../structaudio__tools_1_1_opus_encoder_settings.html#a1cd9432fb6b95062adca18465db1a0f9',1,'audio_tools::OpusEncoderSettings']]]
];
diff --git a/search/variables_6.js b/search/variables_6.js
index 2a7fa76dee..1e63ef9f71 100644
--- a/search/variables_6.js
+++ b/search/variables_6.js
@@ -1,16 +1,16 @@
var searchData=
[
- ['i2c_5fretry_5fcount_2798',['i2c_retry_count',['../classaudio__tools_1_1_w_m8960_config.html#abf87d032d525a80cf660a9831b339343',1,'audio_tools::WM8960Config']]],
- ['iirbuffer_2799',['iirBuffer',['../classaudio__tools_1_1_filter_effect_base.html#a36d5aa51a18cec371e662a4bd00ad73f',1,'audio_tools::FilterEffectBase']]],
- ['iircoefficients_2800',['iirCoefficients',['../classaudio__tools_1_1_filter_effect_base.html#aa555d7f6c45fdc476c00ac7b3615c3cc',1,'audio_tools::FilterEffectBase']]],
- ['iirtemp_2801',['iirTemp',['../classaudio__tools_1_1_filter_effect_base.html#a97fe61a525fa1ebad0372c58e828ffa1',1,'audio_tools::FilterEffectBase']]],
- ['inband_5ffec_2802',['inband_fec',['../structaudio__tools_1_1_opus_encoder_settings.html#a296ff283109f7745b8b1839f7e0aafeb',1,'audio_tools::OpusEncoderSettings']]],
- ['internal_5fpi_2803',['internal_Pi',['../classaudio__tools_1_1_simple_flanger.html#a4187d5295c8a8a0525d08767b72fa1cb',1,'audio_tools::SimpleFlanger']]],
- ['interpolationtable_2804',['interpolationTable',['../namespaceaudio__tools.html#a6a8099d013ab0669c1f915584b0ed32e',1,'audio_tools']]],
- ['invdelayincrement_2805',['invDelayIncrement',['../classaudio__tools_1_1_simple_delay.html#ae4c6bcb89dc7036c4e9628009f5c415d',1,'audio_tools::SimpleDelay']]],
- ['is_5fencoded_5fdata_2806',['is_encoded_data',['../classaudio__tools_1_1_v_s1053_config.html#a7b14309e060b9f949aaf463b34c71b85',1,'audio_tools::VS1053Config']]],
- ['is_5fheader_5fatom_2807',['is_header_atom',['../structaudio__tools_1_1_m_p4_atom.html#a4d6da82e71ad7d26f3f75da60f862bad',1,'audio_tools::MP4Atom']]],
- ['is_5fmidi_2808',['is_midi',['../classaudio__tools_1_1_v_s1053_config.html#aea157fea730d2a87c178d1bc19c6868d',1,'audio_tools::VS1053Config']]],
- ['is_5fstart_5fspi_2809',['is_start_spi',['../classaudio__tools_1_1_v_s1053_config.html#aa2c844c92e04a703ca54d15d011630ab',1,'audio_tools::VS1053Config']]],
- ['is_5fstream_2810',['is_stream',['../structaudio__tools_1_1_m_p4_atom.html#aca37a3469c636b99ddd5aee36184f7d5',1,'audio_tools::MP4Atom']]]
+ ['i2c_5fretry_5fcount_2803',['i2c_retry_count',['../classaudio__tools_1_1_w_m8960_config.html#abf87d032d525a80cf660a9831b339343',1,'audio_tools::WM8960Config']]],
+ ['iirbuffer_2804',['iirBuffer',['../classaudio__tools_1_1_filter_effect_base.html#a36d5aa51a18cec371e662a4bd00ad73f',1,'audio_tools::FilterEffectBase']]],
+ ['iircoefficients_2805',['iirCoefficients',['../classaudio__tools_1_1_filter_effect_base.html#aa555d7f6c45fdc476c00ac7b3615c3cc',1,'audio_tools::FilterEffectBase']]],
+ ['iirtemp_2806',['iirTemp',['../classaudio__tools_1_1_filter_effect_base.html#a97fe61a525fa1ebad0372c58e828ffa1',1,'audio_tools::FilterEffectBase']]],
+ ['inband_5ffec_2807',['inband_fec',['../structaudio__tools_1_1_opus_encoder_settings.html#a296ff283109f7745b8b1839f7e0aafeb',1,'audio_tools::OpusEncoderSettings']]],
+ ['internal_5fpi_2808',['internal_Pi',['../classaudio__tools_1_1_simple_flanger.html#a4187d5295c8a8a0525d08767b72fa1cb',1,'audio_tools::SimpleFlanger']]],
+ ['interpolationtable_2809',['interpolationTable',['../namespaceaudio__tools.html#a6a8099d013ab0669c1f915584b0ed32e',1,'audio_tools']]],
+ ['invdelayincrement_2810',['invDelayIncrement',['../classaudio__tools_1_1_simple_delay.html#ae4c6bcb89dc7036c4e9628009f5c415d',1,'audio_tools::SimpleDelay']]],
+ ['is_5fencoded_5fdata_2811',['is_encoded_data',['../classaudio__tools_1_1_v_s1053_config.html#a7b14309e060b9f949aaf463b34c71b85',1,'audio_tools::VS1053Config']]],
+ ['is_5fheader_5fatom_2812',['is_header_atom',['../structaudio__tools_1_1_m_p4_atom.html#a4d6da82e71ad7d26f3f75da60f862bad',1,'audio_tools::MP4Atom']]],
+ ['is_5fmidi_2813',['is_midi',['../classaudio__tools_1_1_v_s1053_config.html#aea157fea730d2a87c178d1bc19c6868d',1,'audio_tools::VS1053Config']]],
+ ['is_5fstart_5fspi_2814',['is_start_spi',['../classaudio__tools_1_1_v_s1053_config.html#aa2c844c92e04a703ca54d15d011630ab',1,'audio_tools::VS1053Config']]],
+ ['is_5fstream_2815',['is_stream',['../structaudio__tools_1_1_m_p4_atom.html#aca37a3469c636b99ddd5aee36184f7d5',1,'audio_tools::MP4Atom']]]
];
diff --git a/search/variables_7.js b/search/variables_7.js
index c3fe7f072a..4a11909ab9 100644
--- a/search/variables_7.js
+++ b/search/variables_7.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['lsb_5fdepth_2811',['lsb_depth',['../structaudio__tools_1_1_opus_encoder_settings.html#ad91af827bd8d4045bf8bf640367ee53c',1,'audio_tools::OpusEncoderSettings']]]
+ ['lsb_5fdepth_2816',['lsb_depth',['../structaudio__tools_1_1_opus_encoder_settings.html#ad91af827bd8d4045bf8bf640367ee53c',1,'audio_tools::OpusEncoderSettings']]]
];
diff --git a/search/variables_8.js b/search/variables_8.js
index 61117485ae..323b61fe1e 100644
--- a/search/variables_8.js
+++ b/search/variables_8.js
@@ -1,11 +1,11 @@
var searchData=
[
- ['max_5fbandwidth_2812',['max_bandwidth',['../structaudio__tools_1_1_opus_encoder_settings.html#ad8cfdd5ef4a0e393aa271992b518dfaa',1,'audio_tools::OpusEncoderSettings']]],
- ['max_5fmagnitude_2813',['max_magnitude',['../structaudio__tools_1_1_l_e_d_output_config.html#a3ecf65cb448be5006c7ca263a96fd974',1,'audio_tools::LEDOutputConfig::max_magnitude()'],['../structaudio__tools_1_1_l_e_d_output_uno_r4_config.html#a3ecf65cb448be5006c7ca263a96fd974',1,'audio_tools::LEDOutputUnoR4Config::max_magnitude()']]],
- ['maxdelaybuffersize_2814',['maxDelayBufferSize',['../classaudio__tools_1_1_delay_effect_base.html#aa11da42ff6171a564f70a1911c3953b4',1,'audio_tools::DelayEffectBase']]],
- ['mime_5fpcm_2815',['mime_pcm',['../namespaceaudio__tools.html#a3961afb9c2a414e91d5687346be60285',1,'audio_tools']]],
- ['modmax_2816',['modMax',['../classaudio__tools_1_1_simple_chorus.html#a91cfe04b1a76f7511690aecbb9ddbc31',1,'audio_tools::SimpleChorus']]],
- ['modmin_2817',['modMin',['../classaudio__tools_1_1_simple_chorus.html#aeeb2bf6f51ec4293a9e158b34d14680d',1,'audio_tools::SimpleChorus']]],
- ['modnorm_2818',['modNorm',['../classaudio__tools_1_1_simple_chorus.html#ae7e2bd5e7e62b4d6d29b7b1c61dfea67',1,'audio_tools::SimpleChorus']]],
- ['modulationconstant_2819',['modulationConstant',['../classaudio__tools_1_1_simple_flanger.html#a459f36c6fea404615bd43c0277eb6aa8',1,'audio_tools::SimpleFlanger']]]
+ ['max_5fbandwidth_2817',['max_bandwidth',['../structaudio__tools_1_1_opus_encoder_settings.html#ad8cfdd5ef4a0e393aa271992b518dfaa',1,'audio_tools::OpusEncoderSettings']]],
+ ['max_5fmagnitude_2818',['max_magnitude',['../structaudio__tools_1_1_l_e_d_output_config.html#a3ecf65cb448be5006c7ca263a96fd974',1,'audio_tools::LEDOutputConfig::max_magnitude()'],['../structaudio__tools_1_1_l_e_d_output_uno_r4_config.html#a3ecf65cb448be5006c7ca263a96fd974',1,'audio_tools::LEDOutputUnoR4Config::max_magnitude()']]],
+ ['maxdelaybuffersize_2819',['maxDelayBufferSize',['../classaudio__tools_1_1_delay_effect_base.html#aa11da42ff6171a564f70a1911c3953b4',1,'audio_tools::DelayEffectBase']]],
+ ['mime_5fpcm_2820',['mime_pcm',['../namespaceaudio__tools.html#a3961afb9c2a414e91d5687346be60285',1,'audio_tools']]],
+ ['modmax_2821',['modMax',['../classaudio__tools_1_1_simple_chorus.html#a91cfe04b1a76f7511690aecbb9ddbc31',1,'audio_tools::SimpleChorus']]],
+ ['modmin_2822',['modMin',['../classaudio__tools_1_1_simple_chorus.html#aeeb2bf6f51ec4293a9e158b34d14680d',1,'audio_tools::SimpleChorus']]],
+ ['modnorm_2823',['modNorm',['../classaudio__tools_1_1_simple_chorus.html#ae7e2bd5e7e62b4d6d29b7b1c61dfea67',1,'audio_tools::SimpleChorus']]],
+ ['modulationconstant_2824',['modulationConstant',['../classaudio__tools_1_1_simple_flanger.html#a459f36c6fea404615bd43c0277eb6aa8',1,'audio_tools::SimpleFlanger']]]
];
diff --git a/search/variables_9.js b/search/variables_9.js
index f4e7b333a5..fbafd8c3d2 100644
--- a/search/variables_9.js
+++ b/search/variables_9.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['packet_5floss_5fperc_2820',['packet_loss_perc',['../structaudio__tools_1_1_opus_encoder_settings.html#a56381d5e2c16a04fd6d0490b29135539',1,'audio_tools::OpusEncoderSettings']]],
- ['password_2821',['password',['../classaudio__tools_1_1_v_b_a_n_config.html#aa4a2ebcb494493f648ae1e6975672575',1,'audio_tools::VBANConfig']]],
- ['prediction_5fdisabled_2822',['prediction_disabled',['../structaudio__tools_1_1_opus_encoder_settings.html#ad0efc56dbc533dc88f5b9eb78d7068af',1,'audio_tools::OpusEncoderSettings']]],
- ['primary_5fmaster_5fkey_2823',['primary_master_key',['../structaudio__tools_1_1_e_s_p_now_stream_config.html#a4574b7c5bb954f02512bab0493b16955',1,'audio_tools::ESPNowStreamConfig']]]
+ ['packet_5floss_5fperc_2825',['packet_loss_perc',['../structaudio__tools_1_1_opus_encoder_settings.html#a56381d5e2c16a04fd6d0490b29135539',1,'audio_tools::OpusEncoderSettings']]],
+ ['password_2826',['password',['../classaudio__tools_1_1_v_b_a_n_config.html#aa4a2ebcb494493f648ae1e6975672575',1,'audio_tools::VBANConfig']]],
+ ['prediction_5fdisabled_2827',['prediction_disabled',['../structaudio__tools_1_1_opus_encoder_settings.html#ad0efc56dbc533dc88f5b9eb78d7068af',1,'audio_tools::OpusEncoderSettings']]],
+ ['primary_5fmaster_5fkey_2828',['primary_master_key',['../structaudio__tools_1_1_e_s_p_now_stream_config.html#a4574b7c5bb954f02512bab0493b16955',1,'audio_tools::ESPNowStreamConfig']]]
];
diff --git a/search/variables_a.js b/search/variables_a.js
index 08a435e591..fb9072260a 100644
--- a/search/variables_a.js
+++ b/search/variables_a.js
@@ -1,9 +1,9 @@
var searchData=
[
- ['rate_2824',['rate',['../structaudio__tools_1_1_e_s_p_now_stream_config.html#add99443712e271bc9d643939e9d1eab7',1,'audio_tools::ESPNowStreamConfig']]],
- ['rmsbuffer_2825',['rmsBuffer',['../classaudio__tools_1_1_filter_effect_base.html#af98d43bb141b7271517441be89776234',1,'audio_tools::FilterEffectBase']]],
- ['rmsbufferindex_2826',['rmsBufferIndex',['../classaudio__tools_1_1_filter_effect_base.html#aaa8caba16ab06d8a73dd5a2e4c31d4dc',1,'audio_tools::FilterEffectBase']]],
- ['rmswindowsize_2827',['rmsWindowSize',['../classaudio__tools_1_1_filter_effect_base.html#ab547c2a820df89e5452b595bf9a17df5',1,'audio_tools::FilterEffectBase']]],
- ['rx_5ftx_5fmode_2828',['rx_tx_mode',['../classaudio__tools_1_1_i2_s_config.html#a31a454d24fb1f4d74779a0ff668d54cc',1,'audio_tools::I2SConfig']]],
- ['rxtxmodenames_2829',['RxTxModeNames',['../namespaceaudio__tools.html#ad79aae4ad20c15c6daa69209dc3d0535',1,'audio_tools']]]
+ ['rate_2829',['rate',['../structaudio__tools_1_1_e_s_p_now_stream_config.html#add99443712e271bc9d643939e9d1eab7',1,'audio_tools::ESPNowStreamConfig']]],
+ ['rmsbuffer_2830',['rmsBuffer',['../classaudio__tools_1_1_filter_effect_base.html#af98d43bb141b7271517441be89776234',1,'audio_tools::FilterEffectBase']]],
+ ['rmsbufferindex_2831',['rmsBufferIndex',['../classaudio__tools_1_1_filter_effect_base.html#aaa8caba16ab06d8a73dd5a2e4c31d4dc',1,'audio_tools::FilterEffectBase']]],
+ ['rmswindowsize_2832',['rmsWindowSize',['../classaudio__tools_1_1_filter_effect_base.html#ab547c2a820df89e5452b595bf9a17df5',1,'audio_tools::FilterEffectBase']]],
+ ['rx_5ftx_5fmode_2833',['rx_tx_mode',['../classaudio__tools_1_1_i2_s_config.html#a31a454d24fb1f4d74779a0ff668d54cc',1,'audio_tools::I2SConfig']]],
+ ['rxtxmodenames_2834',['RxTxModeNames',['../namespaceaudio__tools.html#ad79aae4ad20c15c6daa69209dc3d0535',1,'audio_tools']]]
];
diff --git a/search/variables_b.js b/search/variables_b.js
index 8fab48b14f..993469192c 100644
--- a/search/variables_b.js
+++ b/search/variables_b.js
@@ -1,9 +1,9 @@
var searchData=
[
- ['samplerate_2830',['sampleRate',['../classaudio__tools_1_1_modulation_base_class.html#ad16762d495115c2606417076f062c39d',1,'audio_tools::ModulationBaseClass']]],
- ['silence_5fon_5fnodata_2831',['silence_on_nodata',['../classaudio__tools_1_1_a2_d_p_config.html#a092bc928d6fab7ae135685c8c7ae0256',1,'audio_tools::A2DPConfig']]],
- ['singal_2832',['singal',['../structaudio__tools_1_1_opus_encoder_settings.html#aeb5762dddeaf976bef20625f7e665f5c',1,'audio_tools::OpusEncoderSettings']]],
- ['ssid_2833',['ssid',['../classaudio__tools_1_1_v_b_a_n_config.html#a587ba0cb07f02913598610049a3bbb79',1,'audio_tools::VBANConfig']]],
- ['stream_5fname_2834',['stream_name',['../classaudio__tools_1_1_v_b_a_n_config.html#ad44f4c7166311eca430e05cb1d485807',1,'audio_tools::VBANConfig']]],
- ['swing_2835',['swing',['../classaudio__tools_1_1_simple_chorus.html#a97f5a92ad2c16f85ca305be30ba8477b',1,'audio_tools::SimpleChorus']]]
+ ['samplerate_2835',['sampleRate',['../classaudio__tools_1_1_modulation_base_class.html#ad16762d495115c2606417076f062c39d',1,'audio_tools::ModulationBaseClass']]],
+ ['silence_5fon_5fnodata_2836',['silence_on_nodata',['../classaudio__tools_1_1_a2_d_p_config.html#a092bc928d6fab7ae135685c8c7ae0256',1,'audio_tools::A2DPConfig']]],
+ ['singal_2837',['singal',['../structaudio__tools_1_1_opus_encoder_settings.html#aeb5762dddeaf976bef20625f7e665f5c',1,'audio_tools::OpusEncoderSettings']]],
+ ['ssid_2838',['ssid',['../classaudio__tools_1_1_v_b_a_n_config.html#a587ba0cb07f02913598610049a3bbb79',1,'audio_tools::VBANConfig']]],
+ ['stream_5fname_2839',['stream_name',['../classaudio__tools_1_1_v_b_a_n_config.html#ad44f4c7166311eca430e05cb1d485807',1,'audio_tools::VBANConfig']]],
+ ['swing_2840',['swing',['../classaudio__tools_1_1_simple_chorus.html#a97f5a92ad2c16f85ca305be30ba8477b',1,'audio_tools::SimpleChorus']]]
];
diff --git a/search/variables_c.js b/search/variables_c.js
index 68566379b9..7c12ea2222 100644
--- a/search/variables_c.js
+++ b/search/variables_c.js
@@ -1,8 +1,8 @@
var searchData=
[
- ['tableindex_2836',['tableIndex',['../classaudio__tools_1_1_modulation_base_class.html#a368304108e41965fa62932f878a4cba1',1,'audio_tools::ModulationBaseClass']]],
- ['target_5fip_2837',['target_ip',['../classaudio__tools_1_1_v_b_a_n_config.html#a8e3be7119cfc230626838ce6cecd32cc',1,'audio_tools::VBANConfig']]],
- ['timestep_2838',['timeStep',['../classaudio__tools_1_1_modulation_base_class.html#ac80cb97c3e6b8eebe58efacba3b93351',1,'audio_tools::ModulationBaseClass::timeStep()'],['../classaudio__tools_1_1_simple_flanger.html#ac80cb97c3e6b8eebe58efacba3b93351',1,'audio_tools::SimpleFlanger::timeStep()']]],
- ['to_5fsample_5frate_2839',['to_sample_rate',['../structaudio__tools_1_1_resample_config.html#af736bd115bcd9ab90219d854b57642a5',1,'audio_tools::ResampleConfig']]],
- ['total_5fsize_2840',['total_size',['../structaudio__tools_1_1_m_p4_atom.html#a18eddfc116c781b3f547074046fd19b7',1,'audio_tools::MP4Atom']]]
+ ['tableindex_2841',['tableIndex',['../classaudio__tools_1_1_modulation_base_class.html#a368304108e41965fa62932f878a4cba1',1,'audio_tools::ModulationBaseClass']]],
+ ['target_5fip_2842',['target_ip',['../classaudio__tools_1_1_v_b_a_n_config.html#a8e3be7119cfc230626838ce6cecd32cc',1,'audio_tools::VBANConfig']]],
+ ['timestep_2843',['timeStep',['../classaudio__tools_1_1_modulation_base_class.html#ac80cb97c3e6b8eebe58efacba3b93351',1,'audio_tools::ModulationBaseClass::timeStep()'],['../classaudio__tools_1_1_simple_flanger.html#ac80cb97c3e6b8eebe58efacba3b93351',1,'audio_tools::SimpleFlanger::timeStep()']]],
+ ['to_5fsample_5frate_2844',['to_sample_rate',['../structaudio__tools_1_1_resample_config.html#af736bd115bcd9ab90219d854b57642a5',1,'audio_tools::ResampleConfig']]],
+ ['total_5fsize_2845',['total_size',['../structaudio__tools_1_1_m_p4_atom.html#a18eddfc116c781b3f547074046fd19b7',1,'audio_tools::MP4Atom']]]
];
diff --git a/search/variables_d.js b/search/variables_d.js
index aeac5d5360..e86ad9bd62 100644
--- a/search/variables_d.js
+++ b/search/variables_d.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['udp_5fport_2841',['udp_port',['../classaudio__tools_1_1_v_b_a_n_config.html#a8d93540b1ceafa3f9425c72763b256d0',1,'audio_tools::VBANConfig']]],
- ['update_5fcallback_2842',['update_callback',['../structaudio__tools_1_1_l_e_d_output_config.html#a407f72286192d582e451c779a24eee24',1,'audio_tools::LEDOutputConfig::update_callback()'],['../structaudio__tools_1_1_l_e_d_output_uno_r4_config.html#adcd1ef408be5d72c304e5580d82cfb0f',1,'audio_tools::LEDOutputUnoR4Config::update_callback()']]],
- ['update_5ffrequency_2843',['update_frequency',['../structaudio__tools_1_1_l_e_d_output_config.html#a637858590a54f57f8ce05bb395cc8798',1,'audio_tools::LEDOutputConfig::update_frequency()'],['../structaudio__tools_1_1_l_e_d_output_uno_r4_config.html#a637858590a54f57f8ce05bb395cc8798',1,'audio_tools::LEDOutputUnoR4Config::update_frequency()']]],
- ['use_5fdtx_2844',['use_dtx',['../structaudio__tools_1_1_opus_encoder_settings.html#a519462b22ce6239e3ec4834229d5361d',1,'audio_tools::OpusEncoderSettings']]]
+ ['udp_5fport_2846',['udp_port',['../classaudio__tools_1_1_v_b_a_n_config.html#a8d93540b1ceafa3f9425c72763b256d0',1,'audio_tools::VBANConfig']]],
+ ['update_5fcallback_2847',['update_callback',['../structaudio__tools_1_1_l_e_d_output_config.html#a407f72286192d582e451c779a24eee24',1,'audio_tools::LEDOutputConfig::update_callback()'],['../structaudio__tools_1_1_l_e_d_output_uno_r4_config.html#adcd1ef408be5d72c304e5580d82cfb0f',1,'audio_tools::LEDOutputUnoR4Config::update_callback()']]],
+ ['update_5ffrequency_2848',['update_frequency',['../structaudio__tools_1_1_l_e_d_output_config.html#a637858590a54f57f8ce05bb395cc8798',1,'audio_tools::LEDOutputConfig::update_frequency()'],['../structaudio__tools_1_1_l_e_d_output_uno_r4_config.html#a637858590a54f57f8ce05bb395cc8798',1,'audio_tools::LEDOutputUnoR4Config::update_frequency()']]],
+ ['use_5fdtx_2849',['use_dtx',['../structaudio__tools_1_1_opus_encoder_settings.html#a519462b22ce6239e3ec4834229d5361d',1,'audio_tools::OpusEncoderSettings']]]
];
diff --git a/search/variables_e.js b/search/variables_e.js
index a90285c4da..6fd0e43120 100644
--- a/search/variables_e.js
+++ b/search/variables_e.js
@@ -1,8 +1,8 @@
var searchData=
[
- ['vbr_2845',['vbr',['../structaudio__tools_1_1_opus_encoder_settings.html#a0384c7ae67dce93dfaf33f8fd40bd4e6',1,'audio_tools::OpusEncoderSettings']]],
- ['vbr_5fconstraint_2846',['vbr_constraint',['../structaudio__tools_1_1_opus_encoder_settings.html#a125cd54483bd7e5dbff7e8e0d3d3f6cb',1,'audio_tools::OpusEncoderSettings']]],
- ['vs1053_5fdump_2847',['vs1053_dump',['../classaudio__tools_1_1_w_m8960_config.html#ac422ac3c2e25766ec8115811b7b75a1d',1,'audio_tools::WM8960Config']]],
- ['vs1053_5fenable_5fpll_2848',['vs1053_enable_pll',['../classaudio__tools_1_1_w_m8960_config.html#a3f1c8e5721a062a24f7b7d2ef549601b',1,'audio_tools::WM8960Config']]],
- ['vs1053_5fmclk_5fhz_2849',['vs1053_mclk_hz',['../classaudio__tools_1_1_w_m8960_config.html#ad9b0acc96ff1397ffcf5d23829d1d437',1,'audio_tools::WM8960Config']]]
+ ['vbr_2850',['vbr',['../structaudio__tools_1_1_opus_encoder_settings.html#a0384c7ae67dce93dfaf33f8fd40bd4e6',1,'audio_tools::OpusEncoderSettings']]],
+ ['vbr_5fconstraint_2851',['vbr_constraint',['../structaudio__tools_1_1_opus_encoder_settings.html#a125cd54483bd7e5dbff7e8e0d3d3f6cb',1,'audio_tools::OpusEncoderSettings']]],
+ ['vs1053_5fdump_2852',['vs1053_dump',['../classaudio__tools_1_1_w_m8960_config.html#ac422ac3c2e25766ec8115811b7b75a1d',1,'audio_tools::WM8960Config']]],
+ ['vs1053_5fenable_5fpll_2853',['vs1053_enable_pll',['../classaudio__tools_1_1_w_m8960_config.html#a3f1c8e5721a062a24f7b7d2ef549601b',1,'audio_tools::WM8960Config']]],
+ ['vs1053_5fmclk_5fhz_2854',['vs1053_mclk_hz',['../classaudio__tools_1_1_w_m8960_config.html#ad9b0acc96ff1397ffcf5d23829d1d437',1,'audio_tools::WM8960Config']]]
];
diff --git a/search/variables_f.js b/search/variables_f.js
index 3e6eec80ac..a4e85545e6 100644
--- a/search/variables_f.js
+++ b/search/variables_f.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['wavetable_2850',['waveTable',['../classaudio__tools_1_1_modulation_base_class.html#ac7596f96fc6881f824a3b8cbe79075b2',1,'audio_tools::ModulationBaseClass']]],
- ['window_5ffunction_2851',['window_function',['../structaudio__tools_1_1_audio_f_f_t_config.html#a844cd7e00ad0a62016fe513da4d3bf73',1,'audio_tools::AudioFFTConfig']]],
- ['wire_2852',['wire',['../classaudio__tools_1_1_w_m8960_config.html#ab8d8f9af97a698a5a73132c347acbaf4',1,'audio_tools::WM8960Config']]]
+ ['wavetable_2855',['waveTable',['../classaudio__tools_1_1_modulation_base_class.html#ac7596f96fc6881f824a3b8cbe79075b2',1,'audio_tools::ModulationBaseClass']]],
+ ['window_5ffunction_2856',['window_function',['../structaudio__tools_1_1_audio_f_f_t_config.html#a844cd7e00ad0a62016fe513da4d3bf73',1,'audio_tools::AudioFFTConfig']]],
+ ['wire_2857',['wire',['../classaudio__tools_1_1_w_m8960_config.html#ab8d8f9af97a698a5a73132c347acbaf4',1,'audio_tools::WM8960Config']]]
];