VideoRenderer.java
339 Bytes
package cn.syar.engine;
public class VideoRenderer{
public VideoRenderer() {
create();
}
private native void create();
public native void destroy();
public native void init(int width, int height);
public native void render();
public native void draw(byte[] data, int width, int height, int rotation);
}