HephAudio v3.0.6
A cross-platform C++ library for recording, playing, and processing audio on Windows, Android, Linux, iOS, and macOS.
|
base class for panning effects. More...
#include <PanningEffect.h>
Public Member Functions | |
virtual | ~PanningEffect ()=default |
virtual void | Process (AudioBuffer &buffer, size_t startIndex, size_t frameCount) override |
virtual double | GetFactor () const =0 |
virtual void | SetFactor (double factor)=0 |
virtual void | Process (AudioBuffer &buffer) |
virtual void | Process (AudioBuffer &buffer, size_t startIndex) |
Public Member Functions inherited from HephAudio::AudioEffect | |
virtual | ~AudioEffect ()=default |
virtual std::string | Name () const =0 |
virtual bool | HasMTSupport () const |
virtual bool | HasRTSupport () const |
virtual size_t | GetThreadCount () const |
virtual void | SetThreadCount (size_t threadCount) |
virtual size_t | CalculateRequiredFrameCount (size_t outputFrameCount, const AudioFormatInfo &formatInfo) const |
virtual size_t | CalculateOutputFrameCount (const AudioBuffer &buffer) const |
Protected Member Functions | |
PanningEffect () | |
virtual void | ProcessST (const AudioBuffer &inputBuffer, AudioBuffer &outputBuffer, size_t startIndex, size_t frameCount) override |
Protected Member Functions inherited from HephAudio::AudioEffect | |
AudioEffect () | |
virtual void | ProcessMT (const AudioBuffer &inputBuffer, AudioBuffer &outputBuffer, size_t startIndex, size_t frameCount) |
Protected Attributes | |
double | leftVolume |
double | rightVolume |
Protected Attributes inherited from HephAudio::AudioEffect | |
size_t | threadCount |
base class for panning effects.
|
protected |
creates a new instance and initializes it with default values.
|
virtualdefault |
releases the resources and destroys the instance.
|
overridevirtual |
Applies the effect.
buffer | contains the audio data which will be processed. |
startIndex | index of the first audio frame to process. |
frameCount | number of frames to process. |
Reimplemented from HephAudio::AudioEffect.
|
pure virtual |
gets the panning factor.
Implemented in HephAudio::LinearPanning, HephAudio::SineLawPanning, and HephAudio::SquareLawPanning.
|
pure virtual |
sets the panning factor.
factor | determines how the channels' volume will be changed. Ranges between -1 and 1. -1 means only the left channel will be audible and 1 means only the right channel will be audible. |
Implemented in HephAudio::LinearPanning, HephAudio::SineLawPanning, and HephAudio::SquareLawPanning.
|
overrideprotectedvirtual |
applies the effect using single thread.
inputBuffer | contains the dry data. |
outputBuffer | contains the wet data. |
startIndex | index of the first sample to process. |
frameCount | number of frames to process. |
Implements HephAudio::AudioEffect.
|
virtual |
Applies the effect.
buffer | contains the audio data which will be processed. |
Reimplemented from HephAudio::AudioEffect.
|
virtual |
Applies the effect.
buffer | contains the audio data which will be processed. |
startIndex | index of the first audio frame to process. |
Reimplemented from HephAudio::AudioEffect.
|
protected |
multiplication factor for the left channel.
|
protected |
multiplication factor for the right channel.