Tom Poole
6cff481c6a
Fixed some gcc 8 compiler warnings
2018-07-11 09:17:31 +01:00
jules
1e6bbb8da9
Added some methods to allow ReferenceCountedObjectPtrs to be constructed or copied from references as well as pointers - as well as increasing safety, this actually makes things a bit more efficient as it skips a nullptr check. Updated lots of places in the code that could take advantage of this
2018-07-03 11:51:13 +01:00
hogliux
544e35655a
DSP: Solved an issue with dsp::Convolution algorithm initialisation
2018-06-29 10:02:33 +01:00
Tom Poole
102ed4a9f2
Fixed some compiler warnings
2018-06-27 17:02:25 +01:00
jules
49aa9c9db4
Added flag JUCE_STRICT_REFCOUNTEDPOINTER which is recommended to avoid accidental leaks when using ref-counted pointers. Enabled this flag in the demo projects, and used it to help tidy up some dubious smart-pointer use
2018-06-26 14:06:52 +01:00
Noah Dayan
f2824e96ef
Fixed typos in the DSP module
2018-05-24 10:08:39 +01:00
hogliux
dc7217fbbb
DSP: Fixed a bug in AudioBlock::multiply where the linear smoothed value would not be applied
2018-05-14 18:02:06 +01:00
jules
87042769b6
Tidied up some more old typedefs
2018-05-11 14:44:51 +01:00
ed
2d79cc78c0
Bump version number to 5.3.2
2018-05-09 12:34:36 +01:00
Noah Dayan
5de929de5e
Fixed some Doxygen warnings in AudioBlock and SIMDRegister
2018-05-03 10:02:58 +01:00
jules
38295f332b
Converted some old typedefs to using declarations
2018-05-03 09:59:05 +01:00
Noah Dayan
a21ff3356d
Fixed some Doxygen warnings in juce_AudioBlock.h
2018-05-02 13:01:35 +01:00
hogliux
5faef29f3e
DSP: added the methods AudioBlock::copyTo/AudioBlock::copyFrom which facilitate copying to/from an AudioBuffer
2018-04-30 14:59:54 +01:00
hogliux
b719acf3e2
DSP: Fixed various undefined behavior in SIMDRegister
2018-04-26 21:35:26 +01:00
hogliux
f0e035f742
Fixed a compiler error in the DSP module when using clang C++17 support
2018-04-25 12:01:00 +01:00
hogliux
bb78ed2006
Make sure that a recent dsp compiler warnings fix is only applied to newer gcc versions
2018-04-23 15:22:26 +01:00
hogliux
d7528138cb
DSP SIMD: Fixed a potential compiler error and warning on some versions of gcc and added a unit-test to test some untested comparison SIMD operations
2018-04-23 12:15:11 +01:00
Tom Poole
ab863a6dc2
Replaced all usage of ScopedPointer with std::unique_ptr
2018-04-19 20:27:47 +01:00
Tom Poole
c7c26fa9f0
Removed the OS X 10.5 and 10.6 deployment target options from the Projucer and enabled more C++11 features across all platforms
2018-04-17 18:46:55 +01:00
hogliux
2f2ff9437b
Windows: Fixed various compiler warnings and errors when building JUCE with MSVC's latest C++ 2017 support
2018-04-16 14:36:49 +01:00
Tom Poole
4229dc0a4f
Made a lot of ScopedPointer usage conform to the std::unique_ptr interface
2018-04-10 18:34:20 +01:00
Noah Dayan
1a31c86f39
Bump version number to 5.3.1
2018-04-10 17:01:54 +01:00
jules
d691838765
Tidied up a few minor coding style discrepencies
2018-04-10 09:50:11 +01:00
ed
262dff8854
Bump version number to 5.3.0
2018-03-15 12:23:30 +00:00
ed
cdbc28c18b
Add documentation tags
2018-03-15 12:10:32 +00:00
ed
8aa40a72c8
Add guards to juce_blocks_basics, juce_dsp and juce_osc modules to ensure that they are not built if the compiler does not support them
2018-03-15 12:10:32 +00:00
Lukasz Kozakiewicz
3f7220c2af
AudioBlock: remove unnecessary cast from size_t to int.
2018-03-06 17:53:32 +01:00
Tom Poole
7ec4cbdec0
Fixed a typo
2018-03-01 14:54:34 +00:00
Tom Poole
400691b8e0
DSP: Fixed an issue calling reset() on IIRFilters with SIMDRegister template types
2018-02-20 13:49:07 +00:00
hogliux
2577ed103f
DSP: When given an input signal, the Oscillator processor will now mix it's output signal to the input, instead of replacing it
2018-02-16 12:34:21 +00:00
hogliux
0ba6cb4ecf
DSP: Added bypass support to ProcessChain and ensured that all DSP processors respect the process context's bypass flag
2018-02-14 09:07:05 +00:00
ed
fa0f7a4281
Bump version number to 5.2.1
2018-02-08 10:55:52 +00:00
hogliux
f73fc41af1
DSP: Various improvements to the convolution engine (see commit message for more info)
...
* The stereo option now works like in most guitar amplifier simulations : whatever the number of channels in the process function, or defined in the prepare function, the parameter "wantsStereo" allows the class to do all the time mono or stereo processing
* Fixed a few issues when the user tries to change the normalization or trimming option without changing the impulse response itself
* Reduced memory consumption in various places
* Various improvements to the documentation
2018-02-08 10:07:40 +00:00
jules
f71df8704a
Added an AudioBlock::multiply() overload for LinearSmoothedValue
2018-01-31 15:04:29 +00:00
Noah Dayan
365507d7fd
Fixed typo in juce_SIMDRegister.h
2018-01-26 09:03:34 +00:00
Noah Dayan
e1abac681d
Fixed typos in juce_SIMDRegister.h
2018-01-23 10:56:05 +00:00
ed
6d8d90e9d8
Fixed a typo
2018-01-18 15:17:17 +00:00
Tom Poole
7d943e76dc
Tidied up some module dependencies
2018-01-15 12:20:35 +00:00
jules
48a5fbd333
Another batch of ScopedPointer cleanups
2018-01-10 14:49:57 +00:00
jules
f9313c8338
Deprecated some old functions roundDoubleToInt and roundFloatToInt - these can both be trivially replaced by roundToInt, and should have been deprecated long ago!
2018-01-09 16:28:14 +00:00
jules
7326a37795
Added some missing math constants to the Javascript parser, and a constant MathConstants::sqrt2
2018-01-09 15:15:33 +00:00
jules
81a76efcd3
Fix for dsp::ProcessorChain when used with a non-replacing context
2018-01-08 12:36:24 +00:00
Tom Poole
e3aede39d8
DSP: Fixed an overly restrictive assertion in the Matrix multiplication operator
2018-01-02 10:09:15 +00:00
jules
30a97ec91b
Added some assertions to StateVariableFilter
2017-12-20 09:32:58 +00:00
jules
c4342e684d
Added some get/set/addSample methods to AudioBlock
2017-12-18 15:31:16 +00:00
jules
4797b29b27
DSP: Added Butterworth methods to the FilterDesign class
2017-12-18 10:39:56 +00:00
jules
fdebb67071
DSP module: Added a Phase class
2017-12-12 12:52:25 +00:00
jules
73c319d249
Tidied up a few issues in AudioBlock
2017-12-07 17:01:00 +00:00
jules
d727f2a35a
Added MathConstants::halfPi to improve readability
2017-12-06 12:56:00 +00:00
jules
d0111a4f96
Began phasing out double_Pi and float_Pi in favour of MathConstants::pi. Also added MathConstants::twoPi
2017-12-06 11:16:22 +00:00