Rabbit-R1/android (non root)/java/sources/org/webrtc/JniCommon.java

15 lines
364 B
Java
Raw Permalink Normal View History

2024-05-21 21:08:36 +00:00
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);
}