1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
|
/*
* Copyright (C) 2021 Linux Studio Plugins Project <https://lsp-plug.in/>
* (C) 2021 Stefano Tronci <stefano.tronci@protonmail.com>
*
* This file is part of lsp-dsp-units
* Created on: 13 May 2021
*
* lsp-plugins is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* lsp-plugins is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with lsp-plugins. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef LSP_PLUG_IN_DSP_UNITS_NOISE_MLS_H_
#define LSP_PLUG_IN_DSP_UNITS_NOISE_MLS_H_
#include <lsp-plug.in/common/types.h>
#include <lsp-plug.in/dsp-units/iface/IStateDumper.h>
namespace lsp
{
namespace dspu
{
/** MLS stands for Maximum Length Sequence.
* MLS is a type of pseudorandom sequence with a number of desirable properties:
*
* * Smallest crest factor;
* * 2^N - 1 period length;
* * MLS sequences are ideally decorrelated from themselves;
* * MLS spectrum is flat;
*
* Where N is the number of bits.
*
* MLS is implemented with a linear shift feedback register of N bits. At each step:
* * The leftmost bit is taken as output.
* * The values of certain bits in the register are passed through an XOR gate.
* * The values in the registers are shifted by one to the left.
* * The XOR gate output is now put into the rightmost bit.
*
* If the bits that feed the XOR gate (taps) are chosen appropriately, the resulting sequence will be an MLS of period 2^N - 1.
* Typically, if the output bit is 1 the value of the sequence will be 1. -1 otherwise.
* The register can be initialised (seeded) with any non-zero value.
*
* This class supports MLS generation with registers up to 128 bits depending on platform.
*
* Basic MLS Theory at:
*
* http://www.kempacoustics.com/thesis/node83.html
* https://dspguru.com/dsp/tutorials/a-little-mls-tutorial/
* http://in.ncu.edu.tw/ncume_ee/digilogi/prbs.htm
*/
class LSP_DSP_UNITS_PUBLIC MLS
{
private:
MLS & operator = (const MLS &);
MLS(const MLS &);
public:
typedef umword_t mls_t;
private:
size_t nBits;
size_t nFeedbackBit;
mls_t nFeedbackMask;
mls_t nActiveMask;
mls_t nTapsMask;
mls_t nOutputMask;
mls_t nState;
float fAmplitude;
float fOffset;
bool bSync;
public:
explicit MLS();
~MLS();
void construct();
void destroy();
protected:
mls_t xor_gate(mls_t value);
mls_t progress();
void update_settings();
public:
/** Return the max supported number of bits by the generator (platform dependent).
*
* @return maximum number of supported bits.
*/
size_t maximum_number_of_bits() const;
/** Check that MLS needs settings update.
*
* @return true if MLS needs settings update.
*/
bool needs_update() const;
/** Set the number of bits of the generator. This causes reset.
*
* @param nbits number of bits
*/
void set_n_bits(size_t nbits);
/** Set the state (seed). This causes reset. States must be non-zero. If 0 is passed, all the active bits will be flipped to 1.
*
* @param targetstate state to be set.
*/
void set_state(mls_t targetstate);
/** Set the amplitude of the MLS sequence.
*
* @param amplitude amplitude value for the sequence.
*/
void set_amplitude(float amplitude);
/** Set the offset of the MLS sequence.
*
* @param offset offset value for the sequence.
*/
void set_offset(float offset);
/** Get the sequence period
*
* @return sequence period
*/
mls_t get_period() const;
/** Get a sample from the MLS generator.
*
* @return the next sample in the MLS sequence.
*/
float process_single();
/** Output sequence to the destination buffer in additive mode
*
* @param dst output wave destination
* @param src input source, allowed to be NULL
* @param count number of samples to synthesise
*/
void process_add(float *dst, const float *src, size_t count);
/** Output sequence to the destination buffer in multiplicative mode
*
* @param dst output wave destination
* @param src input source, allowed to be NULL
* @param count number of samples to process
*/
void process_mul(float *dst, const float *src, size_t count);
/** Output sequence to a destination buffer overwriting its content
*
* @param dst output wave destination
* @param src input source, allowed to be NULLL
* @param count number of samples to process
*/
void process_overwrite(float *dst, size_t count);
/**
* Dump the state
* @param dumper dumper
*/
void dump(IStateDumper *v) const;
};
}
}
#endif /* LSP_PLUG_IN_DSP_UNITS_NOISE_MLS_H_ */
|