All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mp4parser.muxer.RandomAccessSource Maven / Gradle / Ivy

Go to download

This package has a focus on file operation. It can read A/V data from Random Access Datasources

There is a newer version: 1.9.56
Show newest version
package org.mp4parser.muxer;

import java.io.Closeable;
import java.io.IOException;
import java.nio.ByteBuffer;

/**
 * Allows random access to some data source as some data structure such as chunks in an mdat
 * require random access with absolute offsets.
 */
public interface RandomAccessSource extends Closeable {
    ByteBuffer get(long offset, long size) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy