mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 18:12:31 -06:00
15 lines
364 B
Java
15 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);
|
||
|
}
|