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
|
/*
* Copyright (C) 2020 Linux Studio Plugins Project <https://lsp-plug.in/>
* (C) 2020 Vladimir Sadovnikov <sadko4u@gmail.com>
*
* This file is part of lsp-plugins-comp-delay
* Created on: 25 нояб. 2020 г.
*
* lsp-plugins-comp-delay 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-comp-delay 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-comp-delay. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef PRIVATE_META_COMP_DELAY_H_
#define PRIVATE_META_COMP_DELAY_H_
#include <lsp-plug.in/plug-fw/meta/types.h>
#include <lsp-plug.in/plug-fw/const.h>
namespace lsp
{
//-------------------------------------------------------------------------
// Compensation delay metadata
namespace meta
{
typedef struct comp_delay
{
static constexpr float METERS_MIN = 0.0f;
static constexpr float METERS_MAX = 200.0f;
static constexpr float METERS_DFL = 0.0f;
static constexpr float METERS_STEP = 1.0f;
static constexpr float CENTIMETERS_MIN = 0.0f;
static constexpr float CENTIMETERS_MAX = 100.0f;
static constexpr float CENTIMETERS_DFL = 0.0f;
static constexpr float CENTIMETERS_STEP = 0.1f;
static constexpr float SAMPLES_MIN = 0.0f;
static constexpr float SAMPLES_MAX = 10000.0f;
static constexpr float SAMPLES_DFL = 0.0f;
static constexpr float SAMPLES_STEP = 1.0f;
static constexpr float TIME_MIN = 0.0f;
static constexpr float TIME_MAX = 1000.0f;
static constexpr float TIME_DFL = 0.0f;
static constexpr float TIME_STEP = 0.01f;
static constexpr float TEMPERATURE_MIN = -60.0f;
static constexpr float TEMPERATURE_MAX = +60.0f;
static constexpr float TEMPERATURE_DFL = 20.0f;
static constexpr float TEMPERATURE_STEP = 0.1f;
static constexpr float DELAY_OUT_MAX_TIME = 1000 /* TIME_MAX [ms] */;
static constexpr float DELAY_OUT_MAX_SAMPLES = 1000 /* TIME_MAX [ms] */ * 0.001 /* [ s/ms ] */ * MAX_SAMPLE_RATE /* [samples / s] */;
static constexpr float DELAY_OUT_MAX_DISTANCE = 1000 /* TIME_MAX [ms] */ * 0.001 /* [ s/ms ] */ * MAX_SOUND_SPEED /* [m/s] */ * 100 /* [cm / m ] */;
enum modes
{
M_SAMPLES,
M_DISTANCE,
M_TIME
};
} comp_delay;
// Plugin metadata
extern const plugin_t comp_delay_mono;
extern const plugin_t comp_delay_stereo;
extern const plugin_t comp_delay_x2_stereo;
}
}
#endif /* PRIVATE_META_COMP_DELAY_H_ */
|