Commit graph

33372 commits

Author SHA1 Message Date
Paul Davis
b47fbc91e0 canvas: provide Rect::shrink () with four arguments 2021-08-30 17:39:39 -06:00
Paul Davis
2aa313eb4e triggerbox: actually fully stop trigger when explicitly requested, rather than use follow action 2021-08-30 16:32:02 -06:00
Paul Davis
13a0f74ce4 triggerbox: add more debugging 2021-08-30 16:31:35 -06:00
Paul Davis
940f3022c1 prevent addition of events to a ControlList whose time-domain does not match the ControlList's own time-domain 2021-08-30 15:15:14 -06:00
Paul Davis
4fb3e24bd6 evoral: tentative fix for problems with Curve::multipoint_eval()
Now that we use superclock_t for audio time, it is possible for the square of an audio time value to overflow int64_t quite easily.
This change fixes that (and cleans up other code a little), but probably a different solution would be a good idea
2021-08-30 14:29:11 -06:00
Paul Davis
e75e8ea645 copy of kruger's spline paper 2021-08-30 12:54:53 -06:00
Paul Davis
25093af986 triggerbox: fix uninitialized variable 2021-08-30 09:13:48 -06:00
Paul Davis
0699449f29 evoral: debugging curve errors 2021-08-30 09:04:27 -06:00
Paul Davis
4cef8c681c evoral: fix for Curve coefficient computation 2021-08-30 09:04:27 -06:00
Nil Geisweiller
21c94b23f3 Make BBT_Time::print_padded const
As this method does not modify BBT_Time it can be const.  This allows such
method to be called over a const BBT_Time instance.
2021-08-30 02:24:38 +03:00
John Emmas
2de2ab8f91 Use std::vector<Sample*> rather than a simple array
(for a simple stack-based array, MSVC requires that the size should be known at compile time)
2021-08-29 15:40:59 +01:00
John Emmas
d3cd621f7a Initial changes needed for building libtemporal with MSVC
Later I'll need to push some extra changes (to support 'tempo_map_p' and 'boost::intrusive::list' etc) but these initial ones (hopefully!) won't cause any issues for the other builds.
2021-08-29 11:03:58 +01:00
Paul Davis
19d99b0a4b fix logic of MIdiTimeAxisView::add_region() to interoperate correctly with editor source list 2021-08-28 16:00:53 -06:00
Paul Davis
07324bd1e2 change the way source list adds new regions to match the way the region list does it
This avoids duplicates, updates rows etc
2021-08-28 15:29:44 -06:00
Paul Davis
d5223c0c2c allow Editor source list to contain empty MIDI whole file regions 2021-08-28 15:28:41 -06:00
Paul Davis
cd792f3713 avoid intermediate unnecessary shared_ptr 2021-08-27 17:25:51 -06:00
Paul Davis
fad71ce748 when creating new MIDI sources, be sure that we create a stub file on disk
These files will be removed at session close if they are still empty. Their existence prevents
collisions across snapshots and likely some other wierdness that relied on file existence for
various tests and conditions
2021-08-27 16:52:53 -06:00
Robin Gareus
eb0f353716
Session-cleanup: clear route references from graph
resort_routes() is a no-op during session destruction,
however _current_route_graph can still hold references
to routes. A GraphVertex is-a boost::shared_ptr<Route>.
2021-08-27 06:42:56 +02:00
Robin Gareus
8c7f2c93f0
VST3: Ignore .vst3 dll in bundle of wrong architecture 2021-08-24 21:58:02 +02:00
Paul Davis
fee4292bde allow negative superclock -> negative beats computation 2021-08-23 11:36:54 -06:00
Robin Gareus
1e84f217ac
VST3: clear in-place MIDI buffers #8789 2021-08-23 07:09:16 +02:00
Robin Gareus
73326ade90
Don't include i18n in headers
The i18n header needs to be included last, since it defines
`_` which results in conflicts with other headers.

see #8361 and e.g.
boost/function_types/detail/class_transform.hpp:23:26:
error: ‘boost::mpl::placeholders::_’ has not been declared
using mpl::placeholders::_;
2021-08-23 06:43:16 +02:00
Hector Martin
9b99633abe
Fix MIDI send latency compensation 2021-08-20 17:37:09 +02:00
Robin Gareus
a556e96ed0
Fix latency report for unconnected tracks
When a track's output is not connected, its alignment
can /float/. Previously it assumed the worst (compensate
for worst-case latency).

The track itself has no playback latency, so any send would
delay the 'thru' path to match the send's playback latency.
This resulted in the track reporting a non-zero latency which
is not really present, nor relevant.
2021-08-16 22:33:15 +02:00
Paul Davis
535a6728a0 todo list text for nutempo-related tasks 2021-08-16 13:41:49 -06:00
Robin Gareus
b4b4745bd4
Amend 55211b8d (PRNG seed, use local address) 2021-08-16 04:59:10 +02:00
Robin Gareus
baf5a13f17
Update atomic/volatile compat
With glib 2.64, volatile gint produce annoying Wcast-qual
compiler warnings with mingw/gcc-8.

Even though the the build succeeds, and only glib 2.68+
requires non-volatile atomics this results in a much
cleaner build-log.
2021-08-16 04:26:55 +02:00
Robin Gareus
55211b8dd6
Update triggerbox RNG API calls 2021-08-15 16:04:08 +02:00
Robin Gareus
a3b28b4114
Move PCG RNG implementation out of header, update API 2021-08-15 16:03:01 +02:00
Robin Gareus
e4d1d82ea7
Fix rt-safe PRNG (seed once, not every call) 2021-08-15 15:24:23 +02:00
Robin Gareus
76a01bab63
Hide splash screen for new-user-wizard 2021-08-14 22:03:57 +02:00
Paul Davis
63fbc87177 triggerbox: use new rt-safe RNG 2021-08-13 17:34:07 -06:00
Robin Gareus
10253a6ae4
Fix Windows builds, remove unnecessary srandom() calls
Since fc90c92a49 Gtkmm2ext::random_color () uses g_random_int()
which is implicitly seeded when first used.
2021-08-14 01:29:49 +02:00
Paul Davis
bf26be71aa move constraint packing tests out of the way 2021-08-13 17:27:20 -06:00
Robin Gareus
bbe1dbc3a0
Amend previous commit (missing brace) 2021-08-14 01:16:49 +02:00
Robin Gareus
c3de8c0b16
Fix Windows builds (missing Temporal Lua declarations) 2021-08-14 01:13:36 +02:00
Robin Gareus
f5b6f76e12
Fix Windows builds (disambiguate API calls) 2021-08-14 01:08:23 +02:00
Robin Gareus
fc90c92a49
Fix Windows builds (rand/random API) 2021-08-14 01:07:13 +02:00
Robin Gareus
79baf356b9
Add realtime safe random number generator 2021-08-14 01:03:37 +02:00
Paul Davis
41796ecc14 soundtouch support is not enabled by default and currently will not compile 2021-08-13 16:19:47 -06:00
Paul Davis
2f90425173 amend 506d0efc32 and improve; use g_random_int() instead of random() 2021-08-13 16:09:59 -06:00
Paul Davis
506d0efc32 compilation fix for windows (random() <=> rand() 2021-08-13 16:08:17 -06:00
Paul Davis
fe271f04c7 maybe fix a gcc error/warning 2021-08-13 16:03:36 -06:00
Paul Davis
55025cc82a remove some more unnecessary headers 2021-08-13 15:34:39 -06:00
Paul Davis
2f4a623c56 remove unnecessary headers 2021-08-13 15:31:43 -06:00
Paul Davis
3fe0a2f53a fix warning noted by macOS compiler 2021-08-13 14:11:41 -06:00
Paul Davis
6ac4d37bea fixes for macOS where Rect is a MacType 2021-08-13 14:11:41 -06:00
Paul Davis
0095681493 fix cast in call to time(2) 2021-08-13 14:11:41 -06:00
Robin Gareus
b3fff25d5c
Fix --maschine builds (pure virtual) 2021-08-13 21:53:18 +02:00
Paul Davis
a563d5f0d7 triggerbox: add more framwork to looping sections and fixup issue with uninitialized variable 2021-08-13 12:51:37 -06:00