nziebart

Results 3 comments of nziebart

I changed the midiRead: function in PGMidi.mm to this: (void) midiRead:(const MIDIPacketList *)pktlist { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; [delegate midiSource:self midiReceived:pktlist]; [pool drain]; } and disabled ARC (-fno-objc-arc)...

+1 for approach #1 (exposing intermediate output). I think this is an important primitive

OK, will do. Thanks for the reply.