19 lines
636 B
Java
19 lines
636 B
Java
package audio;
|
|
|
|
import com.sun.jna.Library;
|
|
|
|
@SuppressWarnings("unused")
|
|
public interface BassEncOpus extends Library {
|
|
BassEncOpus Instance = (BassEncOpus) com.sun.jna.Native.load("bassenc_opus", BassEncOpus.class);
|
|
int BASS_ENCODE_OPUS_RESET = 0x1000000;
|
|
int BASS_ENCODE_OPUS_CTLONLY = 0x2000000;
|
|
|
|
|
|
int BASS_Encode_OPUS_GetVersion();
|
|
int BASS_Encode_OPUS_Start(int handle, String options, int flags, BassEnc.ENCODEPROC proc, Object user);
|
|
int BASS_Encode_OPUS_StartFile(int handle, String options, int flags, String filename);
|
|
boolean BASS_Encode_OPUS_NewStream(int handle, String options, int flags);
|
|
|
|
|
|
}
|