1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-20 01:14:20 +00:00
Commit graph

441 commits

Author SHA1 Message Date
ed
c1c325c782 Fixed a few typos 2017-12-28 16:31:09 +00:00
Tom Poole
a2a3f32d8f Fixed some issues with IO channel counts in the StandaloneFilterWindow 2017-12-21 18:59:53 +00:00
Noah Dayan
75e6075474 Add documentation to juce_AudioChannelSet.h 2017-12-21 15:24:43 +00:00
Tom Poole
e174bb26bd A minor code tidyup 2017-12-19 16:12:31 +00:00
jules
d5bdca9695 Fixed some out-of-range channel copying in the AudioBuffer move operator 2017-12-19 14:23:14 +00:00
Tom Poole
cff37f5b6a Fixed some const violation errors 2017-12-19 12:44:24 +00:00
jules
3b8c533db5 Clarified a couple of comments 2017-12-10 21:24:24 +00:00
jules
4707ccfa37 Added some extra methods to the interpolator classes 2017-12-07 15:57:09 +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
jules
7dd8fa993e Fixes for templated code which could default-initialise a SIMDRegister object while expecting to get a zero-initialised value 2017-11-30 16:59:37 +00:00
jules
5f834225e0 Added a SampleType accessor definition to AudioBuffer 2017-11-30 10:05:36 +00:00
jules
a586966c65 Added lambda callback methods to ListenerList. Its old method-invocation callbacks were refactored to use variadic templates instead of the old awful macros they used in the past, but please move your code to use the new lambda functions, as the one stuff will eventually be deprecated! 2017-11-28 16:18:40 +00:00
jules
210bc5897b Clarified some documentation in AudioPlayHead 2017-11-28 11:26:13 +00:00
hogliux
183230d606 macOS: Remove explicit references to kAudioChannelLayoutTag_HOA_ACN_SN3D as this is only available in the latest and greatest Xcode. Replaced with the numerical value instead. 2017-11-24 11:41:22 +00:00
hogliux
8b78af48b9 Updated some outdated documentation in previous commit 2017-11-23 15:14:39 +00:00
hogliux
30269baed1 Added higher-order ambisonics support to JUCE 2017-11-23 15:11:26 +00:00
jules
b51d43d824 Converted a couple of lambdas to functors due to FUD about compilers generating heap allocations 2017-11-06 11:05:51 +00:00
jules
59b7c943c8 Made it possible for users to override the definition of JUCE_SNAP_TO_ZERO 2017-11-06 10:59:45 +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
0b19702306 Made Decibels::toString() do what you'd expect if decimalPlaces == 0, and optimised it a bit 2017-11-01 12:20:09 +00:00
ed
a9cfdc21d6 Added some additional, optional arguments to the Decibels::toString() method 2017-11-01 11:11:21 +00:00
tpoole
9436b5f392 A minor documentation update 2017-11-01 11:01:51 +00:00
jules
3d69ce6856 Avoided some unnecessary reallocations in AudioBuffer::setSize() 2017-11-01 10:24:43 +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
ed
dbb2f620b4 Bump version number to 5.2.0 2017-10-25 12:07:32 +01:00
tpoole
51b3eaebb2 Fixed some VS2013 compiler errors 2017-10-18 11:05:40 +01:00
hogliux
2ac2a39a21 Added disableDenormalisedNumberSupport to query if denormals are disabled and improved documentation 2017-10-17 09:57:39 +01:00
jules
bd9a8a8529 Removed a spurious #undef 2017-10-17 09:50:36 +01:00
hogliux
70dae9b517 ARM: Don't change rounding mode when disabling denormals 2017-10-13 11:03:27 +01:00
jules
b5432c710a Added a method MidiMessage::withTimeStamp, and some MidiMessageSequence unit-tests 2017-10-13 09:27:34 +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
369d59f656 Added a template to allow the HeapBlock class to be given signed ints or other types that are not size_t for its size parameters 2017-10-11 12:10:58 +01:00
hogliux
6867772374 MPE: Change MPEInstrument::voicesLock member from private to protected so that sub-classes can lock the voicedLock 2017-10-11 09:12:16 +01:00
jules
31c99d3680 Cleaned up some missing std:: namespaces for maths functions, and updated some old documentation for AudioProcessor 2017-10-10 09:01:35 +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
hogliux
6e23c4806b MPE: Change MPESynthesizer::voicesLock member from private to protected so that sub-classes can lock the voicedLock 2017-10-09 10:57:47 +01:00
hogliux
f59a5dfc7f Fixed an issue where ScopedNoDenormals would do nothing on all platforms and added arm implementation 2017-10-02 18:23:51 +01:00
jules
37a92aec63 Fixed an edge-case error in the LaGrange and Catmull-Rom interpolators when the ratio changes to exactly 1.0 2017-09-29 16:28:40 +01:00
jules
27a6903cac Changed the way isPositiveAndBelow is written to avoid needing to cast the second parameter to an int 2017-09-27 12:24:02 +01:00
hogliux
82bc9da02c Added support for Atmos 7.0.2 and 7.1.2 Surround formats 2017-09-25 12:06:01 +01:00
jules
94669f2b14 whitespace 2017-09-19 16:28:35 +01:00
jules
2878bc2f75 Added a copy constructor for MidiBuffer::Iterator 2017-09-19 16:21:03 +01:00
tpoole
0ae8aa812c Bump version number to 5.1.2 2017-09-18 14:59:57 +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
jules
1cc371cae9 Fix for an AudioBuffer move operator bug 2017-09-05 16:39:51 +01:00
jules
7c6f3d40b6 Tidied up some method calls involving HeapBlock 2017-09-05 16:06:57 +01:00
jules
baa5907668 Added some setter methods to SynthesiserVoice 2017-09-05 10:03:45 +01:00