Tom Poole
|
1ff97d3688
|
DSP: Fixed a bug when oversampling multiple channels
|
2017-11-20 18:01:23 +00:00 |
|
ed
|
a7055c3a96
|
Fixed a parameter name in Oscillator.h
|
2017-11-20 09:26:23 +00:00 |
|
hogliux
|
e2ae08e111
|
DSP: Added an alignment argument to AudioBlock
|
2017-11-07 14:41:33 +00:00 |
|
hogliux
|
328c0f6593
|
DSP: Add "DSP" UnitTest category to dsp module UnitTests
|
2017-11-07 14:41:25 +00:00 |
|
hogliux
|
eb8400b366
|
DSP: Added SIMDRegister::copyToRawArray and SIMDRegister::fromRawArray to easily convert between raw arrays and SIMD registers
|
2017-11-07 14:40:25 +00:00 |
|
jules
|
d4a7afa73f
|
Replaced some old juce-style sort operations with std::sort and lambdas
|
2017-11-03 16:35:11 +00:00 |
|
jules
|
c1bdfc6a55
|
Added a safety assertion to check if an Oscillator's been initialised
|
2017-11-01 17:31:00 +00:00 |
|
jules
|
1e3e4ab195
|
Fixed a compiler warning
|
2017-10-31 11:47:06 +00:00 |
|
jules
|
8bcb06ce6c
|
DSP module: Various fixes and features including new LadderFilter
|
2017-10-31 11:18:00 +00:00 |
|
jules
|
aecb819985
|
Replaced all our internal use of the old AudioSampleBuffer name with AudioBuffer<float> (for which AudioSampleBuffer is just a typedef)
|
2017-10-30 14:52:47 +00:00 |
|
hogliux
|
13d18e406c
|
Linux: Fixed a build error with gcc on linux when using SIMD registers in the DSP module's IIR filter
|
2017-10-28 15:08:17 +01:00 |
|
hogliux
|
7c6d25681e
|
Convolution: Added a flag to disable normalisation of loaded impulse responses and fixed a potential crash
|
2017-10-27 13:00:37 +01:00 |
|
ed
|
dbb2f620b4
|
Bump version number to 5.2.0
|
2017-10-25 12:07:32 +01:00 |
|
jules
|
a6deec4670
|
Couple of initialiser-list fixes for the DSP module
|
2017-10-16 12:23:28 +01:00 |
|
tpoole
|
3cb185fcc3
|
A minor code cleanup
|
2017-10-12 12:31:55 +01:00 |
|
jules
|
dd4230586f
|
Noticed that we still had some template whitespace workarounds for older compilers, so tidied them up
|
2017-10-11 12:26:05 +01:00 |
|
jules
|
ff99aec1ab
|
Converted some old uses of non-C++ maths functions to their std equivalents
|
2017-10-09 17:45:44 +01:00 |
|
jules
|
3d7c777238
|
Some light modernisation of a bunch of old code
|
2017-10-04 12:47:43 +01:00 |
|
jules
|
5eb8f9c2c2
|
Normalised all the copy/move/assignment constructors for the dsp module IIR and FIR filter classes. These now do NOT reset the filter when they get copied, and they expect that the user-supplied process state class is copyable
|
2017-10-02 14:59:54 +01:00 |
|
jules
|
82648926c6
|
Whitespace
|
2017-10-02 10:03:00 +01:00 |
|
jules
|
82073da570
|
Made the dsp::Filter copy constructor reset the state. Also added a couple of missing move constructors to that class
|
2017-10-02 09:23:17 +01:00 |
|
jules
|
e0c079c448
|
Added a couple of assertions in IIR::Coefficients
|
2017-09-19 12:05:11 +01:00 |
|
tpoole
|
0ae8aa812c
|
Bump version number to 5.1.2
|
2017-09-18 14:59:57 +01:00 |
|
hogliux
|
2729625efb
|
Improved the confusing nomenclature of some of the SIMDRegister typedefs
|
2017-09-14 17:16:19 +01:00 |
|
hogliux
|
74c7633aab
|
DSP: snapToZero is now a public method of the IIR and StateVariable filters so that they can be called manually after sample by sample processing
|
2017-09-13 10:06:36 +01:00 |
|
hogliux
|
e2c8e30d72
|
Added a ScopedNoDenormal class to temporarily disable denormals
|
2017-09-12 11:32:32 +01:00 |
|
jules
|
eda613c6db
|
Moved all "namespace juce" declarations from module headers to the individual .h and .cpp source files. This makes life a lot easier for Intellisense and other IDE autocompletion tools
|
2017-09-08 08:59:55 +01:00 |
|
hogliux
|
11d031f9f0
|
DSP: Added missing snapToZero in the StateVariableFilter
|
2017-09-06 16:22:03 +01:00 |
|
hogliux
|
f1d6298206
|
DSP: Fixed multiple issues with the DSP Oversampling class and updated DSP module plug-in demo code accordingly
|
2017-09-06 10:17:09 +01:00 |
|
hogliux
|
7a34790388
|
DSP: Made trimming of the convolution impulse response optional
|
2017-09-06 10:04:12 +01:00 |
|
tpoole
|
9b687968db
|
Fixed some g++ compiler warnings
|
2017-08-29 14:47:04 +01:00 |
|
tpoole
|
9600016294
|
Fixed some undefined (or implementation defined) behavior
|
2017-08-24 18:16:03 +01:00 |
|
hogliux
|
bd6ca234cb
|
Added Oversampling processor to DSP module
|
2017-08-23 16:15:58 +01:00 |
|
tpoole
|
945b3e8a14
|
DSP: Added template specialisations of the Matrix class
|
2017-08-23 14:33:14 +01:00 |
|
hogliux
|
e61292fe57
|
DSP: Added hint flag to tell juce's FFT to only calculate positive frequencies when perforing real to complex transforms
|
2017-08-22 13:54:38 +01:00 |
|
hogliux
|
a5311ff753
|
Fixed a few harmless sign conversion warnings in the dsp's SIMD code
|
2017-08-21 11:07:22 +01:00 |
|
hogliux
|
293e746e57
|
Fixed a live-build compiler-error when building the DSP module
|
2017-08-07 10:56:28 +01:00 |
|
hogliux
|
c02ef79fd6
|
Bump version number to 5.1.1
|
2017-08-02 18:35:29 +01:00 |
|
hogliux
|
606a81cc14
|
DSP: Fixed a potential crash when using the default constructor of ProcessorDuplicator
|
2017-08-01 18:06:41 +01:00 |
|
tpoole
|
6e818d42f4
|
Documentation fixes
|
2017-08-01 11:23:17 +01:00 |
|
tpoole
|
7c4a23bac7
|
Documentation fixes
|
2017-07-31 18:29:53 +01:00 |
|
hogliux
|
264ccf5191
|
Fixed a compiler error when using the default constructor of dsp::IIR::Filter
|
2017-07-31 15:55:10 +01:00 |
|
hogliux
|
cafee4af97
|
Whitespace
|
2017-07-31 15:51:30 +01:00 |
|
hogliux
|
d3e4d9cc56
|
DSP: Added a second reset method to flush the IIR filter to a specific value
|
2017-07-31 15:51:21 +01:00 |
|
hogliux
|
a6b128affb
|
Fixed a window naming typo in the DSP module
|
2017-07-31 15:25:55 +01:00 |
|
jules
|
2f34b90f63
|
Fixed a typo in comments for Oscillator
|
2017-07-28 15:03:48 +01:00 |
|
jules
|
c99b061ac4
|
Correct a spelling mistake in "ellipticIntegralK"
|
2017-07-28 14:56:54 +01:00 |
|
hogliux
|
3b8f33e9a8
|
Fix the documentation of the Oscillator class
|
2017-07-28 11:35:11 +01:00 |
|
hogliux
|
1089f3837c
|
Make it easier to use a static version of fftw in the dsp module
|
2017-07-27 16:47:35 +01:00 |
|
hogliux
|
87de30bcc5
|
Fixed an issue with the bypass logic of the convolution engine
|
2017-07-27 15:58:57 +01:00 |
|