Files
moonlight-embedded/src/com/limelight/binding/video/OmxDecoder.java
Iwan Timmer 38540d715c Cleanup code
2014-01-11 23:53:08 +01:00

20 lines
370 B
Java

package com.limelight.binding.video;
/**
* JNI Decoder bindings
* @author Iwan Timmer
*/
public class OmxDecoder {
static {
System.loadLibrary("nv_omx_dec");
}
public static native int init();
public static native void stop();
public static native void destroy();
public static native int decode(byte[] indata, int inoff, int inlen, boolean last);
}