mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 01:52:26 -06:00
14 lines
364 B
Java
14 lines
364 B
Java
package org.webrtc;
|
|
|
|
import java.nio.ByteBuffer;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class JniCommon {
|
|
public static native void nativeAddRef(long j);
|
|
|
|
public static native ByteBuffer nativeAllocateByteBuffer(int i);
|
|
|
|
public static native void nativeFreeByteBuffer(ByteBuffer byteBuffer);
|
|
|
|
public static native void nativeReleaseRef(long j);
|
|
}
|