pullsourcestreaminputstream.java

来自「FMJ(freedom media for java)是java视频开发的新选择」· Java 代码 · 共 94 行

JAVA
94
字号
package net.sf.fmj.media;import java.io.IOException;import java.io.InputStream;import javax.media.protocol.PullSourceStream;import javax.media.protocol.Seekable;/** * Implements an InputStream by wrapping a PullSourceStream. * @author Ken Larson * */public class PullSourceStreamInputStream extends InputStream{	private final PullSourceStream pss;	private final Seekable seekable;	// == pss if pss instanceof Seekable.  Used for mark/reset	public PullSourceStreamInputStream(PullSourceStream pss)	{		super();		this.pss = pss;		if (pss instanceof Seekable)			seekable = (Seekable) pss;		else			seekable = null;	}	//@Override	public int read() throws IOException	{		final byte[] buffer = new byte[1];		final int nRead = pss.read(buffer, 0, 1);		if (nRead <= 0)			return -1;		return buffer[0] & 0xff;	}	//@Override	public int read(byte[] b, int off, int len) throws IOException	{		final int result = pss.read(b, off, len);		return result;	}	private long markPosition = -1L;	//@Override	public synchronized void mark(int readlimit)	{		if (!markSupported())			super.mark(readlimit);				markPosition = seekable.tell();	}	//@Override	public boolean markSupported()	{		return seekable != null;	}	//@Override	public synchronized void reset() throws IOException	{		if (!markSupported())			super.reset();				if (markPosition < 0)			throw new IOException("mark must be called before reset");				seekable.seek(markPosition);			}	//@Override	public long skip(long n) throws IOException	{		if (seekable == null)		{			return super.skip(n);		}		else		{			if (n <= 0)				return 0;						final long beforeSeek = seekable.tell();			final long afterSeek = seekable.seek(beforeSeek + n);			return afterSeek - beforeSeek;		}	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?