summaryrefslogtreecommitdiff
path: root/libs/midi++2
AgeCommit message (Collapse)Author
2016-12-03Remove Evoral::MIDIEventDavid Robillard
It is slightly questionable whether type specific methods like velocity() belong on Event at all, these may be better off as free functions. However the code currently uses them as methods in many places, and it seems like a step in the right direction, since, for example, we might some day have events that have a velocity but aren't stored as MIDI messages (e.g. if Ardour uses an internal musical model that is more expressive). In any case, the former inheritance and plethora of sloppy casts is definitely not the right thing.
2016-12-03Factor out and extend MIDIXML implementationDavid Robillard
2016-11-29Making buildable under OpenBSD.David Carlier
2016-10-29Allow to dynamically un/load Midnam PatchesRobin Gareus
2016-08-30Update our MSVC project files to generate the most recent Ardour session ↵John Emmas
file format (ver 5) rather than the older v3 format
2016-06-26Enable build for FreeBSD (part 1/2)Robin Gareus
Adopted from Michael Beer -- GH pull-request #232 with minor changes: * rebased on master, * removed trailing whitespace, * don't explicitly change saved configuration defaults (wscript) * moved sys/wait (WNOHANG) to header include * separate changes in GUI and lib
2016-05-21Accommodate the fact that 'msvc_resources.rc.in' got moved to a new pathJohn Emmas
2016-02-22Spelling correction patch from DebianAdrian Knoth
Patch taken (and forward-ported to HEAD) from <https://anonscm.debian.org/cgit/pkg-multimedia/ardour.git/plain/debian/patches/0100-fix-typos.patch>
2016-02-01change API of MIDI::Port::drain() to include a maximum blocking timePaul Davis
2016-01-18add explanatory comment regarding IP_MULTICAST_LOOP, remove cout debug msgPaul Davis
2016-01-18try using reversed IP_MULTICAST_LOOP semantics for windowsPaul Davis
2016-01-18momo ip midi debuggingPaul Davis
2016-01-18mo' ip midi debuggingPaul Davis
2016-01-18remove ipmidi debuggingPaul Davis
2016-01-18windows, i love you, morePaul Davis
2016-01-18windows, i love youPaul Davis
2016-01-18debug IP multicast loopbackPaul Davis
2016-01-18use cout instead of cerr, since this debugging is for windowsPaul Davis
2016-01-18IP MIDI debuggingPaul Davis
2015-12-12even more attempted changes for ipMIDI on windowsPaul Davis
2015-12-12further attempted changes for ipMIDI on windowsPaul Davis
2015-12-12some attempted changes for ipMIDI on windowsPaul Davis
2015-12-12try just removing all PLATFORM_WINDOWS conditionals in ipmidi code to see if ↵Paul Davis
it will compile
2015-12-03netbsd: Fix unportable shell constructKamil Rytarowski
Caught with pkgsrc on NetBSD
2015-11-29NOOP, remove trailing whitespace, replace tabs in python scriptsRobin Gareus
2015-11-24get faderport i/o working, basics of identifying control activityPaul Davis
2015-11-23more corrections for libmidi++ (N)RPN APIPaul Davis
2015-11-23change API for libmidi++ RPN-related signals to be more usefulPaul Davis
2015-11-23add (N)RPN handling to libmidi++Paul Davis
2015-10-22Store the file path when constructing MidiNameDocumentTim Mayberry
This is so we can compare and see if we have already parsed the file
2015-10-05NOOP, remove trailing tabs/whitespace.Robin Gareus
2015-10-04globally remove all trailing whitespace from .cpp and .hpp files missed by ↵Paul Davis
previous commit
2015-10-04globally remove all trailing whitespace from ardour code base.Paul Davis
Paul Davis was responsible for introducing almost all of this.
2015-09-13allow to run unit-test under wine from srcdir.Robin Gareus
2015-09-12plug some memory leaks in libsRobin Gareus
2015-06-29copy all XCode project files from Tracks.Paul Davis
Rationale: the Waves team maintains the XCode project files, the Ardour crew doesn't. Thus, the Waves' version is more canonical
2015-06-09Add the new (UINTSDEFINED) preprocessor directive to all out MSVC projects ↵John Emmas
(just to be on the safe side)
2015-01-09remove cruft (old unused pre-git version files)Robin Gareus
2015-01-07MusicalTime => Beats.David Robillard
2014-12-29Fix off-by-one MIDI note names.David Robillard
Much like everything else in midnam, it's not specified whether the numbers are 0 or 1 relative, but everything out there seems to be 0 relative and this matches the canvas, so go with that.
2014-12-17Remove some aborts that don't really need to be.David Robillard
Enforce PatchPrimaryKey sanity at the type level rather than attempting to check for it everywhere. Remove dead file.
2014-12-06midnam test: don't clutter up output.Robin Gareus
2014-12-03Call PBD::init() from libmidi++ test runnerTim Mayberry
This is mostly just to be able to set PBD_DEBUG for testing if necessary
2014-12-03export MIDIPP_TEST_PATH in midi++ test script so test files can be locatedTim Mayberry
Modify formatting of script to be consistant with other test scripts
2014-12-03Add test_search_path to find test files in MidnamTestTim Mayberry
2014-11-30Remove bogus test and noisy output.David Robillard
2014-11-26ensure that Ardour recognizes its own MMC device ID as "all-call" when set ↵Paul Davis
to 0x7f (127)
2014-11-22Wrap MusicalTime in a class.David Robillard
This lets us get a more explicit handle on time conversions, and is the main step towards using actual beat:tick time and getting away from floating point precision problems.
2014-11-14add abort() to non-reached codeRobin Gareus
This cleans up a lot of false-positives in static analysis and also helps compilers to optimize code paths in general. (tagging the fatal stingstream operator as ‘noreturn’ is far less trivial)
2014-10-29Add support for USE_CAIRO_IMAGE_SURFACE when building with MSVCJohn Emmas
(new preprocessor directive - greatly improves CPU loading)