1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 05:58:11 +00:00
serenity/Userland/Libraries/LibDSP/Effects.h
kleines Filmröllchen 00e13b5b27 LibDSP: Rename library namespace to DSP
That's the standard naming convention, but I didn't follow it when
originally creating LibDSP and nobody corrected me, so here I am one
year later :^)
2022-07-19 11:17:45 +01:00

44 lines
1.1 KiB
C++

/*
* Copyright (c) 2021-2022, kleines Filmröllchen <filmroellchen@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Types.h>
#include <LibDSP/Processor.h>
#include <LibDSP/ProcessorParameter.h>
#include <LibDSP/Transport.h>
namespace DSP::Effects {
// A simple digital delay effect using a delay buffer.
// This is based on Piano's old built-in delay.
class Delay : public EffectProcessor {
public:
Delay(NonnullRefPtr<Transport>);
private:
virtual void process_impl(Signal const&, Signal&) override;
void handle_delay_time_change();
ProcessorRangeParameter m_delay_decay;
ProcessorRangeParameter m_delay_time;
ProcessorRangeParameter m_dry_gain;
Vector<Sample> m_delay_buffer;
size_t m_delay_index { 0 };
};
// A simple effect that applies volume, mute and pan to its input signal.
// Convenient for attenuating signals in the middle of long chains.
class Mastering : public EffectProcessor {
public:
Mastering(NonnullRefPtr<Transport>);
private:
virtual void process_impl(Signal const&, Signal&) override;
};
}