Commit graph

16137 commits

Author SHA1 Message Date
Robin Gareus
c936c973b5 AU blacklist 2015-02-28 15:52:28 +01:00
Robin Gareus
ee0826c823 AU fix potential endless loop during discovery 2015-02-28 15:52:28 +01:00
Robin Gareus
7a1baeee79 promote sustain pedal from meh to reasonable. 2015-02-28 15:52:28 +01:00
John Emmas
803a239310 MSVC - accommodate some newly introduced calls to 'rintf()'
('rintf()' isn't available in MSVC)
2015-02-28 13:01:02 +00:00
John Emmas
32e23db665 In libpbd the sources 'localeguard.cc/.h' and 'locale_guard.cc/.h' are essentially identical now - so let's remove the former pair which were only ever needed when building with MSVC
(should hopefully avoid future confusion !!)
2015-02-28 12:59:00 +00:00
Robin Gareus
3c3586a4e1 AU presets: allow to save & directly use. 2015-02-28 08:04:14 +01:00
Robin Gareus
60c39849cf include AU control outputs (as meters on generic UI) 2015-02-28 07:24:33 +01:00
Robin Gareus
1b0574540f automated toggles? yes we can! 2015-02-28 07:24:13 +01:00
Robin Gareus
b362f45738 fix AU generic GUI and automation lanes
Don’t include non-automatable params.
2015-02-28 07:23:45 +01:00
Robin Gareus
105ecfa464 fix routing midi data on export:
MidiPort::cycle_end() was never called, hence after the 
first cycle all midi buffers were assumed to be 
“mixed down” already.

this fixes 
Midi-track 1 -[midi]-> Midi-track2 synth -[audio]-> out
on export.
2015-02-28 05:49:16 +01:00
Robin Gareus
60bb5986e2 rework video-export dialog, remember settings 2015-02-28 02:38:18 +01:00
Robin Gareus
09e187630a VTL: add webm export-preset and amend 1184660. 2015-02-28 02:36:59 +01:00
Robin Gareus
c90400364a prepare saving video-export settings.
* migrate dialog from Editor to UI.
* make it a WM proxied window
* prepare applying state after construction..
2015-02-28 02:36:58 +01:00
Robin Gareus
c0411de949 video export: allow to use ffmpeg format-defaults 2015-02-28 02:36:58 +01:00
Robin Gareus
15f57d01cf video-export dialog: allow keyboard navigation 2015-02-28 02:36:58 +01:00
David Robillard
933e9c2919 Fix unnecessary const violation. 2015-02-27 14:21:45 -05:00
Robin Gareus
e77e7f1f3d fix carbon GUI focus/re-exposure 2015-02-27 19:43:36 +01:00
Ben Loftis
24efaa2992 likely fix for broken fades (imported from v2 sessions) 2015-02-27 11:31:56 -06:00
Ben Loftis
763a7c8161 potential fix for the_CLA reported problem: v2 fader values are lost if you are using a non-US locale 2015-02-27 11:31:55 -06:00
Robin Gareus
b11a18d226 fix generic GUI for AU.
Ardour only queries AU writable (or read+writable)
parameters, hence announce them as such.
2015-02-26 23:57:09 +01:00
Robin Gareus
23f822afe6 rsync & cache plugins locally 2015-02-26 21:57:07 +01:00
Robin Gareus
82b2f27e57 really thin bundled plugins 2015-02-26 21:12:12 +01:00
Robin Gareus
2249b98f53 cabron? 2015-02-26 19:51:30 +01:00
Robin Gareus
b1795550f3 include x42 plugins in mixbus bundle 2015-02-26 19:51:30 +01:00
Ben Loftis
f4203cce7e Potential fix for confusion for Input/Output buttons on tracks with audio+midi ports 2015-02-25 17:19:44 -06:00
Robin Gareus
8ed5633367 fix osx version detection in da975ae 2015-02-25 21:11:55 +01:00
Robin Gareus
da975ae27b allow carbon support on 10.6, 32bit 2015-02-25 20:50:41 +01:00
Robin Gareus
7f27d658e1 annotate prev commit. 2015-02-25 00:43:58 +01:00
Robin Gareus
e38eb0613e no more AU warnings…
Ardour calls input_streams(), output_streams() to determine
if the plugin is about to be re-configured (old stream I/O count
!= new I/O count) and emit PluginIoReConfigure() if that’s true.

If the plugin has not been initialized (no format set), we can
safely assume that it will need to be reconfigured.

Forcing Audio=Midi=0 will do so.

The only time where the format is not yet set and hence the actual
channel count is still unknown) is during the first call to 
PluginInsert::configure_io().

At the time of writing, this all is a NOOP anyway! The only user
of the PluginIoReConfigure() signal is the GUI to update connection
lines…  and since the first PluginInsert::configure_io() happens 
during insertion before the plugin is painted and subscribed to 
PluginIoReConfigure(), this function could return any value.

Still 0,0 is just more appropriate than assuming mono audio in/out
and no midi.
2015-02-25 00:42:54 +01:00
Ben Loftis
fbdf6a8151 recover the most recent audio setup settings from config 2015-02-24 14:29:02 -06:00
Robin Gareus
6774aef412 AU synth. prefer stereo variant if available. 2015-02-24 18:31:35 +01:00
Robin Gareus
acd6810860 AU: fix return value reference 2015-02-23 02:49:37 +01:00
Robin Gareus
b75a826b9a fix return value on AU error in e070701 2015-02-22 23:44:23 +01:00
Robin Gareus
9359a157fa fix logical-op-parentheses 2015-02-22 23:38:42 +01:00
Robin Gareus
e070701f14 support AudioUnit Generators without global Channel Info 2015-02-22 23:37:18 +01:00
Paul Davis
10e183f518 fix two other potential issues with leftover 32 bit integers when reading from sndfilesource.
It is less likely that these would cause issues because the
variables involved define the size of the data read, which
is almost certainly less than the 32 bit limit (i.e. they are
not positional). But to keep things clean and to keep questions
at bay, make them 64 bit values.
2015-02-22 11:12:11 -05:00
Paul Davis
b40a305b5a fix incorrect use of int32_t for current position in file while writing to non-destructive sndfilesources 2015-02-22 11:12:11 -05:00
Robin Gareus
bf1d12708d dummy: add square wave frequency sweep generators 2015-02-21 05:05:48 +01:00
Robin Gareus
a0eeb80885 fix embedded plugin UI keyboard handling
When the GUI is opened the first time all is fine, focus is on the
embedded widget. However once a user presses one of the preset buttons
(Add, Save,...) there is no possibility to return focus to the
embedded widget. Ardour always 'sees' it as focus=GtkButton and passes
the event to the editor.
2015-02-21 03:16:04 +01:00
Robin Gareus
642e4950b9 hook up focus_button for LV2 GUIs 2015-02-21 03:00:33 +01:00
Paul Davis
a2e4d6260c fix logic of Session::audio_source_name_is_unique() 2015-02-20 14:12:40 -05:00
Paul Davis
7024232855 ensure that stub audio file sources are removed when we destroy a track 2015-02-20 14:12:40 -05:00
Paul Davis
dcf69ab3e6 fix erroneous merge for wavesaudio backend 2015-02-20 13:21:44 -05:00
Valeriy Kamyshniy
d5e375f784 [Summary] In internal Waves backend API, switching sample time from 32 bits to 64 bits.
Conflicts:
	libs/backends/wavesaudio/wavesapi/devicemanager/WCMRCoreAudioDeviceManager.cpp
2015-02-20 13:05:43 -05:00
VKamyshniy
3b5da657af [Summary] In internal Waves backend API, switching sample time from 32 bits to 64 bits. Fixing logical inconsistency: None device always brought sample time=0 to the audio engine callback. 2015-02-20 13:03:09 -05:00
nick_m
5d5f83c56b The commit 3da9c3b740
wasn't the no-op it claimed to be.
2015-02-20 23:30:48 +11:00
David Robillard
b68a4e5cdc Normalize notes on all channels.
Probably.
2015-02-19 20:23:11 -05:00
David Robillard
450291adfc Fix record/import of note ons with velocity 0.
Best to just do this as early as possible to avoid having to deal with this
situation all over the code.

Also fixes violation of LV2 MIDI specification, which requires no such events
are delivered to plugins.
2015-02-19 18:38:30 -05:00
David Robillard
6fb4bd578e Don't allocate then discard notes on note off.
Silly to make a junk Note just to pass to append_note_off_unlocked, which just
uses the fields that are on the MIDIEvent anyway then throws it away.

Also explicitly dispatch to append_note_off_unlocked in the caller for note ons
with velocity 0 rather than make append_note_on_unlocked deal with it.
2015-02-19 18:38:30 -05:00
David Robillard
6a033a093b Remove unused ifdef gunk. 2015-02-19 18:38:30 -05:00