Rabbit-R1/original r1/java/sources/org/webrtc/JniCommon.java

15 lines
364 B
Java
Raw Normal View History

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