Package com.apple.audio.jdirect

Examples of com.apple.audio.jdirect.MethodClosure


/*     */   private MIDIPacketList packetList;
/*     */   private MIDIEndpoint virtualDestEP;
/*     */
/*     */   MIDIDispatcher(MIDINotifyProc paramMIDINotifyProc)
/*     */   {
/*  26 */     this.midiMethodClosure = new MethodClosure(this, "notifyProc", "(II)V");
/*  27 */     this.notifyExecute = paramMIDINotifyProc;
/*  28 */     this.cacheNotify = new MIDINotification(0, this);
/*     */   }
View Full Code Here


/*  28 */     this.cacheNotify = new MIDINotification(0, this);
/*     */   }
/*     */
/*     */   MIDIDispatcher(MIDIReadProc paramMIDIReadProc)
/*     */   {
/*  36 */     this.midiMethodClosure = new MethodClosure(this, "readProc", "(III)V");
/*  37 */     this.readExecute = paramMIDIReadProc;
/*  38 */     this.packetList = new MIDIPacketList(true);
/*     */   }
View Full Code Here

/*  38 */     this.packetList = new MIDIPacketList(true);
/*     */   }
/*     */
/*     */   MIDIDispatcher(MIDISysexSendRequest paramMIDISysexSendRequest, MIDICompletionProc paramMIDICompletionProc)
/*     */   {
/*  46 */     this.midiMethodClosure = new MethodClosure(this, "completionProc", "(I)V");
/*  47 */     this.completionExecute = paramMIDICompletionProc;
/*  48 */     this.request = paramMIDISysexSendRequest;
/*     */   }
View Full Code Here

/*     */
/*     */   ATDispatcher(AUGraph paramAUGraph, AUGraphRenderNotification paramAUGraphRenderNotification)
/*     */   {
/*  18 */     this.callback = paramAUGraphRenderNotification;
/*  19 */     this.graph = paramAUGraph;
/*  20 */     this.mMethodClosure = new MethodClosure(this, "renderNotification", "(IIIII)I");
/*  21 */     this.cacheBuffer = new ATBuffer(this);
/*  22 */     this.cacheTimeStamp = new ATTimeStamp(this);
/*     */   }
View Full Code Here

/*     */   }
/*     */
/*     */   ATDispatcher(AudioConverter paramAudioConverter, AudioConverterDataSupplier paramAudioConverterDataSupplier) {
/*  26 */     this.inputCallback = paramAudioConverterDataSupplier;
/*  27 */     this.conv = paramAudioConverter;
/*  28 */     this.mMethodClosure = new MethodClosure(this, "converterInputProc", "(IIII)I");
/*     */   }
View Full Code Here

/*     */   private AHBufferList cacheInBufferList;
/*     */   private AHBufferList cacheOutBufferList;
/*     */
/*     */   HardwareDispatcher(AHardwarePropertyListener paramAHardwarePropertyListener)
/*     */   {
/*  18 */     this.mMethodClosure = new MethodClosure(this, "hardwareListenerProc", "(II)I");
/*  19 */     this.hardwarePropListener = paramAHardwarePropertyListener;
/*     */   }
View Full Code Here

/*  18 */     this.mMethodClosure = new MethodClosure(this, "hardwareListenerProc", "(II)I");
/*  19 */     this.hardwarePropListener = paramAHardwarePropertyListener;
/*     */   }
/*     */
/*     */   HardwareDispatcher(AudioDevice paramAudioDevice, ADevicePropertyListener paramADevicePropertyListener) {
/*  23 */     this.mMethodClosure = new MethodClosure(this, "deviceListenerProc", "(IIBII)I");
/*  24 */     this.devicePropListener = paramADevicePropertyListener;
/*  25 */     this.device = paramAudioDevice;
/*     */   }
View Full Code Here

/*  24 */     this.devicePropListener = paramADevicePropertyListener;
/*  25 */     this.device = paramAudioDevice;
/*     */   }
/*     */
/*     */   HardwareDispatcher(AudioStream paramAudioStream, AStreamPropertyListener paramAStreamPropertyListener) {
/*  29 */     this.mMethodClosure = new MethodClosure(this, "streamListenerProc", "(IIII)I");
/*  30 */     this.streamPropListener = paramAStreamPropertyListener;
/*  31 */     this.stream = paramAudioStream;
/*     */   }
View Full Code Here

/*  30 */     this.streamPropListener = paramAStreamPropertyListener;
/*  31 */     this.stream = paramAudioStream;
/*     */   }
/*     */
/*     */   HardwareDispatcher(AudioDevice paramAudioDevice, AudioDeviceIOProc paramAudioDeviceIOProc, int paramInt1, int paramInt2) {
/*  35 */     this.mMethodClosure = new MethodClosure(this, "ioProcFunc", "(IIIIIII)I");
/*  36 */     this.ioProcCB = paramAudioDeviceIOProc;
/*  37 */     this.device = paramAudioDevice;
/*  38 */     this.cacheInNow = new AHTimeStamp(this);
/*  39 */     this.cacheInInputTime = new AHTimeStamp(this);
/*  40 */     this.cacheInOutputTime = new AHTimeStamp(this);
View Full Code Here

TOP

Related Classes of com.apple.audio.jdirect.MethodClosure

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.