21 lines
714 B
Java
21 lines
714 B
Java
package audio;
|
|
|
|
import codes.Somecodes;
|
|
import com.sun.jna.Library;
|
|
import com.sun.jna.Native;
|
|
|
|
@SuppressWarnings({"unused"})
|
|
public interface BassEncOpus extends Library {
|
|
BassEncOpus Instance = (BassEncOpus) Native.load(Somecodes.Companion.LibraryFullPath("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);
|
|
|
|
|
|
}
|