commit 06/11/2025
This commit is contained in:
18
src/audio/BassEncOpus.java
Normal file
18
src/audio/BassEncOpus.java
Normal file
@@ -0,0 +1,18 @@
|
||||
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);
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user