Package com.avpkit.core.io
Class Helper
- java.lang.Object
-
- com.avpkit.core.io.Helper
-
public class Helper extends java.lang.Object
For Internal Use Only. This class only exists to help tests in other packages run the FFMPEG IO functions.Normal classes don't have access to these mechanisms, but we expose them here.
-
-
Constructor Summary
Constructors Constructor Description Helper()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static inturl_close(FfmpegIOHandle handle)static inturl_open(FfmpegIOHandle handle, java.lang.String filename, int flags)static inturl_read(FfmpegIOHandle handle, byte[] buffer, int length)static longurl_seek(FfmpegIOHandle handle, long position, int whence)static inturl_write(FfmpegIOHandle handle, byte[] buffer, int length)
-
-
-
Constructor Detail
-
Helper
public Helper()
-
-
Method Detail
-
url_open
public static int url_open(FfmpegIOHandle handle, java.lang.String filename, int flags)
-
url_read
public static int url_read(FfmpegIOHandle handle, byte[] buffer, int length)
-
url_close
public static int url_close(FfmpegIOHandle handle)
-
url_write
public static int url_write(FfmpegIOHandle handle, byte[] buffer, int length)
-
url_seek
public static long url_seek(FfmpegIOHandle handle, long position, int whence)
-
-