feat: LibPasada player using stretcher

This commit is contained in:
2026-06-03 18:13:55 +02:00
parent 922cc5d82a
commit 096c676ce2
6 changed files with 89 additions and 2 deletions

View File

@@ -21,7 +21,7 @@ public final class LibPasada {
if (loaded) {
return;
}
System.loadLibrary("pasada");
System.loadLibrary("lockstep-native");
loaded = true;
}
@@ -72,4 +72,7 @@ public final class LibPasada {
/** Register listener for async events raised from the audio/native thread. */
public static native void setPlaybackListener(PasadaPlaybackListener listener);
/** native version string */
public static native String getVersion();
}