40 class SoundFilter_Impl;
41 class SoundFilterProvider;
97 void filter(
float **sample_data,
int num_samples,
int channels);
104 std::shared_ptr<SoundFilter_Impl>
impl;
bool operator==(const SoundFilter &other) const
Equality operator.
Definition: soundfilter.h:66
void throw_if_null() const
Throw an exception if this object is invalid.
std::shared_ptr< SoundFilter_Impl > impl
Definition: soundfilter.h:104
Sound Filter Class.
Definition: soundfilter.h:44
bool is_null() const
Returns true if this object is invalid.
Definition: soundfilter.h:84
SoundFilterProvider * get_provider() const
Retrieves the provider.
Sound Filter Interface.
Definition: soundfilter_provider.h:40
void filter(float **sample_data, int num_samples, int channels)
Filter callback.
bool operator!=(const SoundFilter &other) const
Inequality operator.
Definition: soundfilter.h:72
SoundFilter()
Constructs a NULL instance.
Definition: soundfilter.h:52