
org.jcodec.movtool.streaming.tracks.ByteChannelPool Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcodec-streaming Show documentation
Show all versions of jcodec-streaming Show documentation
Pure Java implementation of video/audio codecs and formats
The newest version!
package org.jcodec.movtool.streaming.tracks;
import java.lang.IllegalStateException;
import java.lang.System;
import org.jcodec.common.io.SeekableByteChannel;
import java.io.IOException;
/**
* This class is part of JCodec ( www.jcodec.org ) This software is distributed
* under FreeBSD License
*
* A pool of open data channels used to read data
*
* @author The JCodec project
*
*/
public interface ByteChannelPool {
SeekableByteChannel getChannel() throws IOException;
void close();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy