⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tclip.java

📁 linux下建立JAVA虚拟机的源码KAFFE
💻 JAVA
字号:
/* *	TClip.java *//* *  Copyright (c) 1999, 2000 by Matthias Pfisterer <Matthias.Pfisterer@gmx.de> * * *   This program is free software; you can redistribute it and/or modify *   it under the terms of the GNU Library General Public License as published *   by the Free Software Foundation; either version 2 of the License, or *   (at your option) any later version. * *   This program is distributed in the hope that it will be useful, *   but WITHOUT ANY WARRANTY; without even the implied warranty of *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the *   GNU Library General Public License for more details. * *   You should have received a copy of the GNU Library General Public *   License along with this program; if not, write to the Free Software *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */package	org.tritonus.share.sampled.mixer;import java.io.ByteArrayInputStream;import java.io.IOException;import java.util.Collection;import javax.sound.sampled.AudioFormat;import javax.sound.sampled.AudioInputStream;import javax.sound.sampled.AudioSystem;import javax.sound.sampled.Clip;import javax.sound.sampled.DataLine;import javax.sound.sampled.LineUnavailableException;import org.tritonus.share.TDebug;public class TClip	extends	TDataLine	implements	Clip{	private static final Class[]	CONTROL_CLASSES = {/*GainControl.class*/};	private static final int	BUFFER_FRAMES = 16384;	// private Mixer			m_mixer;	// private SourceDataLine		m_line;	public TClip(DataLine.Info info)	{		super(null,	// TMixer		      info);	}	public TClip(DataLine.Info info,		     Collection controls)	{		super(null,	// TMixer		      info,		      controls);	}	public void open(AudioFormat audioFormat,			 byte[] abData,			 int nOffset,			 int nLength)		throws	LineUnavailableException	{		// int	nBufferLength = nNumFrames * audioFormat.getFrameSize();		// TODO: check if nOffset + nBufferLength <= abData.length		// perhaps truncate automatically		ByteArrayInputStream	bais = new ByteArrayInputStream(abData, nOffset, nLength);		AudioInputStream	audioInputStream = new AudioInputStream(bais, audioFormat, AudioSystem.NOT_SPECIFIED);		try		{			open(audioInputStream);		}		catch (IOException e)		{			if (TDebug.TraceAllExceptions)			{				TDebug.out(e);			}			throw new LineUnavailableException("IOException occured");		}	}	public void open(AudioInputStream audioInputStream)		throws	LineUnavailableException, IOException	{		AudioFormat	audioFormat = audioInputStream.getFormat();		// TOOD:		DataLine.Info	info = new DataLine.Info(Clip.class,							 audioFormat, -1/*nBufferSize*/);/*  setLineInfo(info);  int	nFrameSize = audioFormat.getFrameSize();  long	lTotalLength = audioInputStream.getFrameLength() * nFrameSize;  int	nFormat = Esd.ESD_STREAM | Esd.ESD_PLAY | EsdUtils.getEsdFormat(audioFormat);  if (TDebug.TraceClip)  {  TDebug.out("format: " + nFormat);  TDebug.out("sample rate: " + audioFormat.getSampleRate());  }  // m_esdSample.open(nFormat, (int) audioFormat.getSampleRate(), (int) lTotalLength);  if (TDebug.TraceClip)  {  TDebug.out("size in esd: " + audioInputStream.getFrameLength() * nFrameSize);  }  int	nBufferLength = BUFFER_FRAMES * nFrameSize;  byte[]	abData = new byte[nBufferLength];  int	nBytesRead = 0;  int	nTotalBytes = 0;  while (nBytesRead != -1)  {  try  {  nBytesRead = audioInputStream.read(abData, 0, abData.length);  }  catch (IOException e)  {  if (TDebug.TraceClip || TDebug.TraceAllExceptions)  {  TDebug.out(e);  }  }  if (nBytesRead >= 0)  {  nTotalBytes += nBytesRead;  if (TDebug.TraceClip)  {  TDebug.out("TClip.open(): total bytes: " + nTotalBytes);  TDebug.out("TClip.open(): Trying to write: " + nBytesRead);  }  int	nBytesWritten = 0; //m_esdSample.write(abData, 0, nBytesRead);  if (TDebug.TraceClip)  {  TDebug.out("TClip.open(): Written: " + nBytesWritten);  }  }  }  // to trigger the events  // open();  */	}	public int getFrameLength()	{		// TODO:		return -1;	}	public long getMicrosecondLength()	{		// TODO:		return -1;	}	public void setFramePosition(int nPosition)	{		// TOOD:	}	public void setMicrosecondPosition(long lPosition)	{		// TOOD:	}	public int getFramePosition()	{		// TOOD:		return -1;	}	public long getMicrosecondPosition()	{		// TOOD:		return -1;	}	public void setLoopPoints(int nStart, int nEnd)	{		// TOOD:	}	public void loop(int nCount)	{		if (TDebug.TraceClip)		{			TDebug.out("TClip.loop(int): called; count = " + nCount);		}		if (false/*isStarted()*/)		{			/*			 *	only allow zero count to stop the looping			 *	at the end of an iteration.			 */			if (nCount == 0)			{				if (TDebug.TraceClip)				{					TDebug.out("TClip.loop(int): stopping sample");				}				// m_esdSample.stop();			}		}		else		{			if (nCount == 0)			{				if (TDebug.TraceClip)				{					TDebug.out("TClip.loop(int): starting sample (once)");				}				// m_esdSample.play();			}			else			{				/*				 *	we're ignoring the count, because esd				 *	cannot loop for a fixed number of				 *	times.				 */				// TDebug.out("hallo");				if (TDebug.TraceClip)				{					TDebug.out("TClip.loop(int): starting sample (forever)");				}				// m_esdSample.loop();			}		}		// TOOD:	}	public void flush()	{		// TOOD:	}	public void drain()	{		// TOOD:	}	public void close()	{		// m_esdSample.free();		// m_esdSample.close();		// TOOD:	}	public void open()	{		// TODO:	}	public void start()	{		if (TDebug.TraceClip)		{			TDebug.out("TClip.start(): called");		}		/*		 *	This is a hack. What start() really should do is		 *	start playing at the position playback was stopped.		 */		if (TDebug.TraceClip)		{			TDebug.out("TClip.start(): calling 'loop(0)' [hack]");		}		loop(0);	}	public void stop()	{		// TODO:		// m_esdSample.kill();	}	/*	 *	This method is enforced by DataLine, but doesn't make any	 *	sense for Clips.	 */	public int available()	{		return -1;	}}/*** TClip.java ***/

⌨️ 快捷键说明

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