This commit is contained in:
ecpvint
2024-08-15 18:49:29 +08:00
commit b57655bd01
24 changed files with 1471 additions and 0 deletions

View File

@ -0,0 +1,12 @@
package net.droidtech.utils;
public class DRFStreamer {
static{
System.loadLibrary("drfstreamer");
}
public static native byte[] encode(byte[] data);
public static native byte[] decode(byte[] data);
}