summaryrefslogtreecommitdiff
path: root/libs
AgeCommit message (Collapse)Author
2013-09-03fix error introduced during recent changes to Mackie control support, ↵Paul Davis
involving ambiguous enum usage
2013-09-03updated .po files from waf i18n, plus an updated gtk2_ardour/de.po from ↵Paul Davis
Edgar Aichinger
2013-09-02add std:: to clarify use of llabs on OS XPaul Davis
2013-09-01improve scroll and drag behaviour of volume-controller knobRobin Gareus
2013-08-31fix keyboard interaction with volume knobs (monitor section)Robin Gareus
2013-08-29fix typo in IEC-meter 'weird-float' protection.Robin Gareus
2013-08-29protect meters against weird float valuesRobin Gareus
2013-08-29update external plugin UI handlingRobin Gareus
amend to 4cdb018 and 1d972d0 override ui_closed() behavior for lv2ui:external Keep UI around and do not re-instantiate, but simply show it again. (this is against the original specs but was agreed upon by various authors and the previous behavior or Ardour.) kx:external-ui are cleaned up after ui_closed().
2013-08-27fix vari-speed phase (when used for calculation only)Robin Gareus
and clarify an old comment.
2013-08-25add LV2 support for kx:external-ui#Robin Gareus
the ABI of http://kxstudio.sf.net/ns/lv2ext/external-ui# is identical to http://lv2plug.in/ns/extensions/ui#external It just adds a distinction between #Host and #Widget for cosmetic reasons. Sadly some newer plugins are released with only support for kxstudio URI :(
2013-08-24pot/po file updates caused by waf i18nPaul Davis
2013-08-24fix confusion about whether flip_mode in the Mackie support code is a bool ↵Paul Davis
or an enum
2013-08-24export: add support for CAFTim Blechmann
2013-08-22undo the hiding of SR-dependent LV2 portsPaul Davis
2013-08-15update czech translations from pavel fric, part 2Paul Davis
2013-08-15update czech translations from pavel fricPaul Davis
2013-08-15fix newly-appearing crash-at-close caused by muddled thinking in ↵Paul Davis
pbd/pthread_utils threads created with this code can now just return a value as they normally would, and the infrastructure will ensure cleanup. there is no longer any reason to call pthread_exit_pbd() and so that has been removed.
2013-08-15check master sources when determining whether a region uses a source. should ↵Paul Davis
fix #5618
2013-08-13Call setup_libpbd_enums in PBD::init for portabilityTim Mayberry
2013-08-13Call Gio::init from PBD::init instead of ARDOUR::initTim Mayberry
PBD needs Gio for PBD::copy_file and perhaps others
2013-08-13Call PBD::init in ARDOUR::init and PBD::cleanup in ARDOUR::cleanupTim Mayberry
2013-08-13Add PBD::init and PBD::cleanupTim Mayberry
A bit of refactoring to move initialization of libpbd into libpbd rather than rely on "client" code(ui,libardour,tests etc) to do it
2013-08-13Prevent libardour from being initialized more than onceTim Mayberry
This is not thread safe of course, it is not intended to be. This was implemented as at one stage ARDOUR::init was being called multiple times in the testsuite which was causing a subtle bug that took some time to track down.
2013-08-13Change ARDOUR::init return type to bool type for success/failureTim Mayberry
2013-08-11fix thinko in 5dee49e19Robin Gareus
2013-08-11fix 5dee49e19 (32/64 bit unsigned int compatibility)Robin Gareus
2013-08-11make LV2 communication buffers independent from jack-midi buffer-sizeRobin Gareus
fixes issues with plugin communication that are common with jack1 use due to its very small midi-buffers.
2013-08-07fix compiler warningRobin Gareus
2013-08-04Timecode: fix subframe roundingRobin Gareus
if sub-frames are used, frames are rounded up for the later half of a sub-frame. e.g. @48KSPS, 25fps, 100 subframes per frame audio-samples >=1910 already yield 00:00:00:01
2013-08-04fix no-roll LTC encoder, honor locates when transport is stoppedRobin Gareus
2013-08-04make master-meter in toolbar optionalRobin Gareus
2013-08-03advance track's play-position even if processing is lockedRobin Gareus
fixes * http://tracker.ardour.org/view.php?id=5628 * http://tracker.ardour.org/view.php?id=5561
2013-08-03properly handle port removal in route.Robin Gareus
bug: - add midi track - add additional midi port - remove additional midi port - press play -> crash because.. ARDOUR::MidiTrack::roll's route_buffer still has 2 midi-channels. This is because processor_max_streams was not updated (no plugins added/removed) fill_buffers_with_input() eventually asserts when trying to get the 2nd (nonexistant) midi port via ARDOUR::PortSet::nth_midi_port() in ARDOUR::PortSet::port().
2013-08-03Merge branch 'midiclock' of https://github.com/axetota/ardourRobin Gareus
2013-08-02Send and Read MIDI Positions the right wayMichael Fisher
2013-08-03on session-load: skip output-change-handler until IOs are restoredRobin Gareus
fixes loading a session with tracks that have more input-ports than output-ports. the problem: input -ports are added first, when added, IO::ensure_port() emits IOChange::ConfigurationChanged which in turn triggers the route to allocate corresponding output ports. Due to this callback the output-ports were created before the actual output-port-configuration and plugin-configuration from the session-state was parsed and set.
2013-08-03disallow invalid port-removalRobin Gareus
do not allow port-removal if the port would be re-added immediately after that again because the main-delivery actually needs it. As a side effect this prevents this crash: * create a stereo-track, then remove one output -> unhandled exception "AudioEngine::PortRegistrationFailure&" The problem: - the port is removed from the RCU ports list, but Port::drop() (which calls jack_port_unregister) is only called from the Port's destructor at some later time. (because a reference to the port still exists elsewhere) - the jack-port is not yet removed. - meanwhile Delivery::configure_io comes along and notices that there are more audio-buffers than ports and tries to re-register the port. - but the port still exists in jack, so it fails and throws an exception ...which is not handled.
2013-08-02fix typos in display of error message about an LV2 plugin presetPaul Davis
2013-08-02Resolve duplicate symbol 'cocoa_open_uri' on OSX builds.Michael Fisher
cocoa_open_uri.mm was being added to the source list twice and also compiling twice. This patch enusres it is only added once.
2013-08-02Midi clock housekeepingMichael Fisher
2013-08-02Make Session::send_song_position_pointer a no-opMichael Fisher
2013-08-02Revamp clock processing so it uses an internal frame reference.Michael Fisher
MidiClockTicker::Position managed by boost::scoped_ptr
2013-08-02WIP - Experimenting with an alternative clock generating algoMichael Fisher
- Transport debug output (tracing where transport_frame is updated
2013-08-02- Send position data from internal position classMichael Fisher
- Proper midi beat conversions for all time signatures - Disable responding to Session::PositionChanged in place of Session::Located.
2013-08-02Test code removal...Michael Fisher
2013-08-02MIDI Clock - Shuffling locate code (not actually used yet)Michael Fisher
- Subscribe to Session::Locate to detect seeks - Shuffle Mclk locating computations into a separate private class
2013-08-02Stop compiler warning about NSURLMichael Fisher
2013-08-02rework MIDI [processor|plugin] chainRobin Gareus
* forward midi-data around plugins that have no MIDI-out * allow to insert plugins with no MIDI-input at a point with one MIDI-channel This works because excess ports (both plugin and route) remain unconnected and use scratch-buffers. Tested with LV2, LXVST and LADSPA. (AU plugins with variable in/out retain the old behavior, no bypass) fixes http://tracker.ardour.org/view.php?id=5630
2013-08-01remove an identical odd namespacing typoPaul Davis
2013-08-01remove odd namespacing typoPaul Davis