Class RenderCallbackAdapter

java.lang.Object
uk.co.caprica.vlcj.player.embedded.videosurface.callback.RenderCallbackAdapter
All Implemented Interfaces:
RenderCallback

public abstract class RenderCallbackAdapter extends Object implements RenderCallback
A render callback adapter implementation that fills an array of integer data for an entire video frame.

If you simply want access to the native memory buffer you should consider implementing RenderCallback directly rather than using this class.

This is probably not the most efficient implementation possible of a render callback, ideally the native video data would be written directly to some other construct (like a texture).

Having said that, the supplied buffer could be a buffer direct from an image raster, in which case it should be quite quick.