org.jaudiolibs.jnajack.JackLatencyCallbackMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jnajack Show documentation
Show all versions of jnajack Show documentation
Unofficial Java bindings to JACK Audio Connection Kit
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright 2014 Daniel Hams
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation; either version 2.1 of the License,
* or (at your option) any later version.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this work; if not, see http://www.gnu.org/licenses/
*
*
* Please visit http://neilcsmith.net if you need additional information or
* have any questions.
*
*/
package org.jaudiolibs.jnajack;
import org.jaudiolibs.jnajack.lowlevel.JackLibrary;
/**
* Type of latency callback (playback or capture)
*/
public enum JackLatencyCallbackMode {
JackCaptureLatency( JackLibrary.jack_latency_callback_mode.JackCaptureLatency),
JackPlaybackLatency( JackLibrary.jack_latency_callback_mode.JackPlaybackLatency);
int val;
JackLatencyCallbackMode(int val) {
this.val = val;
}
public int getIntValue() {
return val;
}
}