1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00
Commit graph

344 commits

Author SHA1 Message Date
tpoole
2e84129479 Updated the juce_audio_basics, juce_audio_devices, juce_blocks_basics, juce_core and juce_events modules to a new ISC license 2016-12-14 10:07:26 +00:00
ed
9a130f2810 Set avoidReallocating argument of AudioBuffer::makeCopyOf() to true in some audio class methods to avoid unnecessary reallocations in double-float buffer conversion 2016-12-07 10:10:20 +00:00
ed
cd752ed6af MidiFile::writeTo() method now returns false if unsuccessful 2016-12-05 12:56:34 +00:00
ed
17600a2902 Added copy constructor and copy assignment operator to MidiFile 2016-12-02 12:45:52 +00:00
Timur Doumler
40dfba17db MPESynthesiser: Added interface to set tracking mode for pressure/pitchbend/timbre. 2016-11-29 17:50:40 +00:00
hogliux
8154ccc4e5 Added a fix for a potential wrap-around bug in BufferingAudioSource 2016-11-22 11:44:11 +00:00
hogliux
eba80c3258 Tweaked buffering audio source so it can more easily be used in a realtime and non-realtime setting 2016-11-21 09:08:32 +00:00
hogliux
363ceb08cf Bump version number to 4.3.0 2016-11-02 14:02:52 +00:00
hogliux
7cdcb19d25 Added a convenient function to get all channel sets with a particular number of channels 2016-10-29 17:20:55 +01:00
hogliux
a931b472d0 Added a non-sense if statement to BufferingAudioSource to surpress an MSVC linker warning 2016-10-20 15:45:30 +01:00
jules
c587d4b495 Minor code style tidy-ups 2016-10-20 10:55:27 +01:00
hogliux
285635cdf0 Added notch and all pass filters 2016-10-15 15:45:40 +02:00
hogliux
d892109298 Fixed a warning in recent commit 2016-10-03 15:06:14 +01:00
hogliux
225e8dafd9 Added waitForNextAudioBlockReady method to BufferingAudioSource 2016-10-01 10:39:22 +01:00
hogliux
2104c506b6 Added const qualifier to MidiEventHolder argument of MidiMessageSequence::getIndex 2016-09-30 16:10:41 +01:00
hogliux
21c6fc7a8e Added an option to enable/disable pre-buffering in BufferingAudioSource 2016-09-23 09:42:54 +01:00
hogliux
1be76c1ac0 Added more methods to IIRCoefficients to generate coeffecients for commonly used filters 2016-09-20 10:19:12 +01:00
hogliux
4fa0516f40 Revised multibus API and added support for multibus hosting 2016-09-16 17:06:19 +01:00
hogliux
4eb89336f9 Bump version number to 4.2.4 2016-09-16 16:42:43 +01:00
ed
29320a01cc Changed maxSensibleMidiFileSize in MidiFile from 2mb to 200mb to allow loading of large MIDI files 2016-09-05 10:23:42 +01:00
hogliux
e6ad9b52da Add option to not re-allocate memory when making a copy of an AudioBuffer 2016-07-30 12:38:13 +01:00
Timur Doumler
9100d1c89e Synthesiser and MPESynthesiser: added an additional parameter to setMinimumRenderingSubdivisionSize to allow for both the legacy behaviour (setting the strict minimum on subdivision size) and the current behaviour (first sample will always be sample-accurate, but then the first subdivision may be < minimum). 2016-07-28 17:52:09 +01:00
hogliux
630ab88f8b Version number update 2016-07-05 11:27:53 +01:00
hogliux
329e54d21f Replace std::move with static_cast to fix errors in old compilers 2016-06-17 11:18:54 +01:00
hogliux
4eec61469b Remove default keywords from MidiMessageSequence to be compatible with VS 2013 2016-06-15 15:42:35 +01:00
jules
ec40f0940c Updated version numbers in modules, and resaved example projects 2016-06-07 12:52:59 +01:00
jules
dcf9246395 Reduced the footprint of MidiMessage, and added some move operators to MidiMessageSequence 2016-05-28 21:36:42 +01:00
Timur Doumler
93b8fc18b6 Reverted MPEZone: added copy constructor and copy assignment operator. (reverted from commit 42a3145153). Reason: the methods auto-generated by the compiler are fine. 2016-05-26 12:53:53 +01:00
Timur Doumler
42a3145153 MPEZone: added copy constructor and copy assignment operator. 2016-05-26 12:49:06 +01:00
Timur Doumler
c807cbc7fc MPEZone: cleaned up and clarified doxygen comments. 2016-05-26 12:49:06 +01:00
hogliux
cf39ad4b02 Fix multiple compile errors on older gcc versions 2016-05-26 11:50:04 +01:00
Timur Doumler
8c99b63a5d Fixed a warning and a wrong indentation in MidiMessage. 2016-05-26 10:07:49 +01:00
Timur Doumler
07bc151ce3 MidiMessage: moved two useful helper functions into the public interface; minor cleanup of some member function declarations. 2016-05-25 15:54:07 +01:00
jules
b9aaa880c4 Fix for Synthesiser rendering 0 length blocks 2016-04-26 10:50:00 +01:00
jules
c1799c9f82 Fixed a problem with negative values in MidiMessage::getKeySignatureNumberOfSharpsOrFlats() 2016-04-25 12:10:30 +01:00
jules
46a090bfdc Tweaked the login in the Synthesiser and MPESynthesiserBase classes to avoid losing timing accuracy on the first event in a buffer 2016-04-21 11:01:37 +01:00
jules
0b3a11ee07 Updated version number to 4.2.1 2016-04-21 10:08:47 +01:00
jules
905533c68e Minor formatting tidyups 2016-04-19 09:47:22 +01:00
Timur Doumler
70949aa0c6 Added several new features: support for AudioUnit v3, new simplified JUCE module format, deleted the Introjucer and replaced it by the Projucer, various improvements for exporting of iOS and Android projects. 2016-04-06 18:31:24 +01:00
Timur Doumler
86aacef11e MPE: changed default initial pressure for new notes to 0 if no pressure messages have been received before the note-on; removed virtual functions getInitialPitchbend/Pressure/TimbreForNoteOn as they are confusing and the default behaviour is reasonable. 2016-03-23 23:44:19 +01:00
jules
a5ec538596 Added a couple of methods to LinearSmoothedValue 2016-03-21 09:12:36 +00:00
Timur Doumler
74447991ec Fixed various compile errors due to rename of empty() to isEmpty(). 2016-03-18 16:01:01 +00:00
jules
64e702bcea Added some minor comments 2016-03-17 09:14:46 +00:00
jules
ff79ea06c7 Whitespace 2016-03-08 11:26:48 +00:00
Timur Doumler
8f73a8b671 MPE: added descriptive comment to MPEZone::getZoneByIndex. 2016-03-08 10:26:53 +00:00
Timur Doumler
067c78dbdb MPE: added missing call to MPEZoneLayout listeners if the layout is changed by its assignment operator. 2016-03-08 10:10:52 +00:00
Timur Doumler
228e4b732c MPE: made lock inside MPESynthesiserBase private and gave it a more descriptive name. 2016-03-08 10:09:46 +00:00
Timur Doumler
9e317babd6 Made const casts added to avoid problems in the old 10.8 SDK more conspicuous. 2016-03-07 12:46:41 +00:00
jules
51f284bf0f Added some casts to avoid problems in the old 10.8 SDK 2016-03-07 11:43:48 +00:00
jules
14ef8ee8b3 Fixed a missing 'const' in FloatVectorOperations 2016-03-05 13:51:22 +00:00