Hannu Haahti
5fef919c4a
SamplePlayHandle: clear unused frames from buffer
2014-07-15 11:28:53 +03:00
Hannu Haahti
37a90cabcf
SamplePlayHandle: increment the right buffer
2014-07-15 11:12:04 +03:00
Vesa V
86c8fc55e1
Merge pull request #993 from diizy/master
...
NPH fix: prevent offsets from going over period limit
2014-07-14 23:50:22 +03:00
Vesa
768cc9cb81
Forgot to remove qdebug
2014-07-14 23:49:37 +03:00
Vesa V
2e480c948a
Merge pull request #992 from LMMS/stable-1.1
...
sync
2014-07-14 23:48:55 +03:00
Vesa
fcf3242b7e
NPH fix: prevent offsets from going over period limit
2014-07-14 23:47:41 +03:00
Vesa
5ed8f70633
Mixer: optimize peak value measuring functions
2014-07-14 21:49:34 +03:00
Vesa
8a35a57efa
InstrumentSoundShaping: ensure that release time is never longer than the volume envelope, if volume envelope is active
...
This saves CPU on certain instruments, like Monstro.
There's no point in running the note beyond the end of the volume envelope, ever, so let's not do that.
2014-07-14 18:17:02 +03:00
Vesa
d4e30d5ff8
Add safeguard for beat pattern wheelevent
...
Fix #963
2014-07-14 00:37:43 +03:00
Vesa
921943bce1
Merge branch 'stable-1.1'
...
Conflicts:
include/MixHelpers.h
src/core/FxMixer.cpp
2014-07-13 22:20:10 +03:00
Vesa
e06c281132
Sanitize master output
...
Replace any inf/nan in master output with zero, to prevent corrupted files/audio.
2014-07-13 22:11:17 +03:00
Vesa V
00aba44251
Merge pull request #961 from diizy/master-atomic
...
Improve RT-safety by eliminating some global locks
2014-07-12 19:12:58 +03:00
Vesa
6f8c910f5c
Peak Controller: improve envelope calculation
2014-07-12 05:27:05 +03:00
Vesa
4855634bf4
ProjectJournal: cap the number of undo states to prevent infinite memory buildup
...
The cap is hardcoded to 100 for now, TODO: make this number configurable (or even better: use a max. memory amount instead of max number of states)
2014-07-10 14:22:40 +03:00
Vesa
cacb27d12f
Move playhandle-adding to the correct spot so playhandles won't get delayed
2014-07-09 21:39:04 +03:00
Vesa
b8d4ee3047
visualization_widget: remove unnecessary global locks
2014-07-09 21:22:46 +03:00
Vesa
4d321516e9
file_browser: remove unnecessary global locks
2014-07-09 21:20:22 +03:00
Vesa
4be118162f
TrackContainerView: remove unnecessary global locks (improve rt safety)
2014-07-09 21:14:47 +03:00
Vesa
a4c4ea90dc
Pattern.cpp: Remove unnecessary global locks (improve rt safety)
2014-07-09 21:02:50 +03:00
Vesa
ae5e0c3202
Rebase on master to fix older bugs
2014-07-09 20:45:19 +03:00
Vesa
f33d1f4972
Instrument track, mixer...
2014-07-09 20:42:54 +03:00
Vesa
4eb486be1e
Attempt to remove mutex calls from instrumenttrack::processinevent
2014-07-09 20:39:41 +03:00
Vesa
2d93e19f72
Fix erroneous note offset in instrumenttrack
2014-07-09 20:36:49 +03:00
Arnout Engelen
2cb458a958
Add 'Recently opened project' menu hotkey
2014-07-08 20:24:03 +02:00
Vesa V
833fdaab13
Merge pull request #953 from LMMS/stable-1.1
...
Stable 1.1
2014-07-08 19:46:24 +03:00
Tres Finocchiaro
27b7d36181
Prevent changing vertical size on fx mixer
2014-07-08 12:43:52 -04:00
Vesa
ff0c9beadd
SF2: Make timing more accurate, also some fixes
...
I'm not saying sample-accurate, because it turns out, Fluidsynth has an internal buffer size and thus timing granularity of 64 frames. So 64 frames is the max. accuracy attainable for SF2. But it's better than nothing. Big thanks to David Henningsson of the Fluidsynth dev team, who very helpfully answered questions. A great guy.
In addition, there are some fixes to earlier commits here, which I ran into while working on the SF2 timing.
2014-07-06 16:11:35 +03:00
Vesa V
8407427c4b
Merge pull request #933 from LMMS/stable-1.1
...
Stable 1.1
2014-07-05 16:34:34 +03:00
Vesa
06b47a52a2
Fix styling of textFloat & whatsthis, make text floats consistent in style with tooltips
...
Should fix #925
2014-07-03 14:09:31 +03:00
Vesa
ec495716f4
Trailing spaces
2014-06-30 13:04:48 +03:00
Vesa V
6ffcc0e799
Merge pull request #911 from diizy/master-nph
...
Revision of handling of frameoffset for NPH, SPH
2014-06-30 12:52:44 +03:00
Vesa V
9c8c80683b
Merge pull request #913 from LMMS/stable-1.1
...
Syncing...
2014-06-30 12:49:02 +03:00
Vesa
23433a70b5
Sample-exact models: improve
...
- Remove the redundant hasSampleExactData() function. Instead, signal lack of s.ex.data by returning a NULL in valueBuffer()
- Cache s.ex.buffers and only update them once per period
- Make valueBuffer() in AutomatableModel threadsafe so that it can be used for NPH's sharing the same model
- Add sample-exactness to instrumenttrack's vol & pan knobs
2014-06-30 01:59:18 +03:00
Vesa
270af579b8
Revision of handling of frameoffset for NPH, SPH
...
Change in handling of frameoffset for multistreamed instruments and sampletracks.
- Instead of holding the offset for the lifetime of the playhandle, negate the offset in the first period
- Multistream-instruments require some small changes: they have to now check for the offset and accordingly leave empty space in the start of the period (already done in this commit)
- There are possibly optimizations that can be done later
- This change is necessary so that we can have sample-exact models, and sample-exact vol/pan knobs for all instruments. Earlier multistream instruments were always rendering some frames ahead-of-time, so applying sample-exact data for them would have been impossible, since we don't have the future-values yet...
2014-06-29 23:13:00 +03:00
Vesa
fe3c5a9aa4
Use channel -1 for GUI-generated MIDI events, fixes #807
2014-06-29 10:19:28 +03:00
Vesa
a7bb31159e
Merge branch 'stable-1.1'
...
Conflicts:
include/basic_filters.h
src/core/FxMixer.cpp
2014-06-28 17:24:23 +03:00
Vesa
0058b1064f
Update channel send model names properly
2014-06-28 10:06:52 +03:00
Vesa
9243d94484
Fix qstring arg
2014-06-27 23:17:21 +03:00
Vesa
d9d085d14e
FxMixer: rewrite mixer routing
2014-06-27 18:21:18 +03:00
Raine M. Ekman
7921a326f7
Add loading of artwork in other formats as well as .png
2014-06-24 22:44:47 +03:00
Vesa
a463594bb2
FxMixerView, FxLine: graphics & layout fixes
2014-06-24 21:07:15 +03:00
Vesa
4185eac023
Merge branch 'stable-1.1'
...
Conflicts:
src/core/AutomatableModel.cpp
2014-06-23 22:10:27 +03:00
Tobias Doerffel
1287aec800
Merge pull request #875 from diizy/logs
...
Logscale models: fix all issues and finalize the implementation
2014-06-21 23:43:05 +02:00
Tobias Doerffel
eee2ba7f16
Merge remote-tracking branch 'origin/stable-1.1'
...
Conflicts:
data/locale/de.qm
data/locale/de.ts
2014-06-21 23:30:59 +02:00
Tobias Doerffel
6d8890b4ff
Merge remote-tracking branch 'origin/stable-1.0' into stable-1.1
2014-06-21 23:29:32 +02:00
Vesa
f7042977a9
Logscale: Fix negative ranges
...
This fixes errors that happen on models that have both logarithmic scale and a range that goes to the negative.
2014-06-21 10:56:28 +03:00
Vesa
14909bdf1b
Log scales finalized
2014-06-20 22:46:10 +03:00
Vesa
83cc446807
FxMixerView: fix disappearing effects
2014-06-19 22:17:59 +03:00
Vesa
4bcbb1abcc
FxMixer GUI updates: code
2014-06-19 17:59:37 +03:00
Vesa
0237da44b5
... somehow didn't notice the already existing engine::mixer()->lock() there...
2014-06-19 00:38:48 +03:00