mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
16 lines
472 B
Java
16 lines
472 B
Java
package androidx.emoji2.text.flatbuffer;
|
|
|
|
import java.nio.ByteBuffer;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class ByteBufferUtil {
|
|
public static int getSizePrefix(ByteBuffer byteBuffer) {
|
|
return byteBuffer.getInt(byteBuffer.position());
|
|
}
|
|
|
|
public static ByteBuffer removeSizePrefix(ByteBuffer byteBuffer) {
|
|
ByteBuffer duplicate = byteBuffer.duplicate();
|
|
duplicate.position(duplicate.position() + 4);
|
|
return duplicate;
|
|
}
|
|
}
|