vvopensource
vvopensource copied to clipboard
OSC and MIDI frameworks for OS X and iOS, a framework for managing and rendering to GL textures in OS X, and a functional ISF (interactive shader format) implementation for OS X.
Something weird is going on with iOS 10 with these two lines in OSCBundle (lines 218, 219): ``` long time_s = NSSwapHostLongToBig(floor(interval)); long time_us = NSSwapHostLongToBig((long)(floor((double)1000000.0 * ((double)(interval - (double)time_s)))));...
I'm using a single OSCInPort to receive OSC messages and I noticed that it's responsible for a lot of thread sleeping / waking. With the default interval of 0.01secs I'm...
As per http://opensoundcontrol.org/node/3/#timetags the TimeTag should be seconds since midnight on January 1, 1900, but OSCBundle is incorrectly sending seconds since Jan 1, 2001. Quick fix: NSDate\* timestamp = [NSDate...
Is there a way to use the VVMIDI framework in an iOS app? What modifications or special steps might I need to follow to make this work? (Assume that I've...
With the "iPhone sim SDK" build targets, even though I have the iOS 6.1 SDK installed I still get the "SDK not found" message under "Build Settings > Base SDK"....