(long[] context, int length)
| 15 | public class DecoderJNI { |
| 16 | private static native ByteBuffer nativeCreate(long[] context); |
| 17 | private static native void nativePush(long[] context, int length); |
| 18 | private static native ByteBuffer nativePull(long[] context); |
| 19 | private static native void nativeDestroy(long[] context); |
| 20 | private static native boolean nativeAttachDictionary(long[] context, ByteBuffer dictionary); |