Filewatcher File Search
FTP Search
  
Directory (beta)
  
Content Search (beta)
   
pkg://javalayer-0.4-1jpp.src.rpm:355582/javalayer0.4.tar.gz  info  downloads

doc/ 40755      0      0           0  7776346140   6653 5ustar     0      0 doc/javazoom/ 40755      0      0           0  7776346140  10501 5ustar     0      0 doc/javazoom/jl/ 40755      0      0           0  7776346140  11106 5ustar     0      0 doc/javazoom/jl/converter/ 40755      0      0           0  7776346140  13115 5ustar     0      0 doc/javazoom/jl/decoder/ 40755      0      0           0  7776346140  12513 5ustar     0      0 doc/javazoom/jl/player/ 40755      0      0           0  7776346140  12402 5ustar     0      0 doc/javazoom/jl/player/advanced/ 40755      0      0           0  7776346140  14147 5ustar     0      0 src/ 40755      0      0           0  7776346140   6675 5ustar     0      0 src/javazoom/ 40755      0      0           0  7776346140  10523 5ustar     0      0 src/javazoom/jl/ 40755      0      0           0  7776346140  11130 5ustar     0      0 src/javazoom/jl/converter/ 40755      0      0           0  7776346140  13137 5ustar     0      0 src/javazoom/jl/decoder/ 40755      0      0           0  7776346140  12535 5ustar     0      0 src/javazoom/jl/player/ 40755      0      0           0  7776346140  12424 5ustar     0      0 src/javazoom/jl/player/advanced/ 40755      0      0           0  7776346140  14171 5ustar     0      0 srctest/ 40755      0      0           0  7776346140   7575 5ustar     0      0 srctest/javazoom/ 40755      0      0           0  7776346140  11423 5ustar     0      0 srctest/javazoom/jl/ 40755      0      0           0  7776346140  12030 5ustar     0      0 srctest/javazoom/jl/decoder/ 40755      0      0           0  7776346140  13435 5ustar     0      0 srctest/javazoom/jl/player/ 40755      0      0           0  7776346140  13324 5ustar     0      0 classes/ 40755      0      0           0  7776346140   7543 5ustar     0      0 classes/javazoom/ 40755      0      0           0  7776346140  11371 5ustar     0      0 classes/javazoom/jl/ 40755      0      0           0  7776346140  11776 5ustar     0      0 classes/javazoom/jl/converter/ 40755      0      0           0  7776346140  14005 5ustar     0      0 classes/javazoom/jl/decoder/ 40755      0      0           0  7776346140  13403 5ustar     0      0 classes/javazoom/jl/player/ 40755      0      0           0  7776346140  13272 5ustar     0      0 classes/javazoom/jl/player/advanced/ 40755      0      0           0  7776346140  15037 5ustar     0      0 build-unix.sh100644      0      0        2361  7775043242  10615 0ustar     0      0 #!/bin/sh
#######################################################
#         JavaLayer 0.4 Un*x Build Script
#
# Project Homepage :
#   http://www.javazoom.net/javalayer/javalayer.html
#
# Java and MP3 online Forums :
#   http://www.javazoom.net/services/forums/index.jsp
#
#######################################################

# JAVA_HOME and JL must be set below
JAVA_HOME=/usr/local/java/jdk1.3.1
JL=/home/javazoom/JavaLayer0.4

#---------------------------
# Do not modify lines below
#---------------------------
CLASSPATH=$JAVA_HOME/lib/tools.jar
PATH=$PATH:$JAVA_HOME/bin
JLDECODERSRC=$JL/src/javazoom/jl/decoder
JLCONVERTERSRC=$JL/src/javazoom/jl/converter
JLSIMPLEPLAYER=$JL/src/javazoom/jl/player
JLADVPLAYER=$JL/src/javazoom/jl/player/advanced
javac -classpath $CLASSPATH:$JL/classes -d $JL/classes $JLDECODERSRC/*.java
javac -classpath $CLASSPATH:$JL/classes -d $JL/classes $JLCONVERTERSRC/*.java
cd $JLDECODERSRC
cp *.ser $JL/classes/javazoom/jl/decoder

# MP3 Simple + Advanced Player support :
#
# Comment both lines below for JDK1.1.x or JDK 1.2.x
cd $JLSIMPLEPLAYER
javac -classpath $JL/classes -d $JL/classes *.java
cd $JLADVPLAYER
javac -classpath $JL/classes -d $JL/classes *.java

# Jar Generation
cd $JL/classes
jar cvf ../jl04.jar *
cd $JL
build-win32.bat100644      0      0        2576  7775043204  10736 0ustar     0      0 rem #######################################################
rem #         JavaLayer 0.4 WIN32 Build Script
rem #
rem # Project Homepage :
rem #   http://www.javazoom.net/javalayer/javalayer.html 
rem #
rem # Java and MP3 online Forums :
rem #   http://www.javazoom.net/services/forums/index.jsp
rem #
rem #######################################################

rem # JAVA_HOME and JL must be set below
set JAVA_HOME=c:\jdk1.3.1
set JL=c:\JavaLayer0.4

rem #---------------------------
rem # Do not modify lines below
rem #---------------------------
set CLASSPATH=%JAVA_HOME%\lib\tools.jar
set PATH=%PATH%;%JAVA_HOME%\bin
set JLDECODERSRC=%JL%\src\javazoom\jl\decoder
set JLCONVERTERSRC=%JL%\src\javazoom\jl\converter
set JLSIMPLEPLAYER=%JL%\src\javazoom\jl\player
set JLADVPLAYER=%JL%\src\javazoom\jl\player\advanced
javac -classpath %CLASSPATH%;%JL%\classes -d %JL%\classes %JLDECODERSRC%\*.java
javac -classpath %CLASSPATH%;%JL%\classes -d %JL%\classes %JLCONVERTERSRC%\*.java
cd %JLDECODERSRC%
copy *.ser %JL%\classes\javazoom\jl\decoder

rem # MP3 Simple + Advanced Player support :
rem #
rem # Comment both lines below for JDK1.1.x or JDK 1.2.x
cd %JLSIMPLEPLAYER%
javac -classpath %JL%\classes -d %JL%\classes *.java

cd %JLADVPLAYER%
javac -classpath %JL%\classes -d %JL%\classes *.java

rem # JAR Generation
cd %JL%\classes
jar cvf ..\jl04.jar *
cd %JL%
build.xml100644      0      0        4002  7776346506  10026 0ustar     0      0 <project name="javalayer" default="usage" basedir=".">

  <!-- Initializations -->
  <target name="init">    
    <echo message="-------------------------------------------------------------"/>  
    <echo message="------------        BUILDING JAVALAYER PACKAGE     ----------"/>
    <echo message=""/>
    <property name="year" value="1999-2004"/>
    <property name="jars" value="${basedir}"/>
    <property name="sources" value="${basedir}/src"/>
    <property name="classes" value="${basedir}/classes"/>
    <property name="api" value="${basedir}/doc"/>    
  </target>

  <!-- Build -->
  <target name="build" depends="init">
    <echo message="------ Compiling application"/>
    <javac srcdir="${sources}" destdir="${classes}" includes="**"/>
    <copy todir="${classes}">
       <fileset dir="${sources}" >
           <include name="javazoom/jl/decoder/*.ser"/>
       </fileset>
     </copy>
  </target>

  <!-- Archive -->
  <target name="dist" depends="build">
    <echo message="------ Building Jar file"/>
    <jar jarfile="${jars}/jl0.4.jar" basedir="${classes}" />
  </target>

  <!-- JavaDoc -->
  <target name="all" depends="dist">
     <echo message="------ Running JavaDoc"/>
     <javadoc packagenames="javazoom.*"
              sourcepath="${sources}"
              destdir="${api}"
              bottom="JavaZOOM ${year}"
              author="false">
      <classpath>
        <pathelement location="${classes}"/>
      </classpath>
     </javadoc>
  </target>

  <!-- Usage -->
  <target name="usage">
     <echo message="*** JavaLayer ANT build script ***"/>
     <echo message="Usage : "/>
     <echo message="   ant [target]"/>
     <echo message=""/>     
     <echo message="   target : "/>     
     <echo message="            build : Build Application"/>     
     <echo message="            dist  : Build Application + Archive (JAR)"/>     
     <echo message="            all   : Build Application + Archive + JavaDoc"/>       
  </target>
       
</project>
CHANGES.txt100644      0      0        6464  7776352236  10031 0ustar     0      0  JavaLayer 0.4
 JavaZOOM 1999-2004

 Project Homepage :
   http://www.javazoom.net/javalayer/javalayer.html 

 JAVA and MP3 online Forums :
   http://www.javazoom.net/services/forums/index.jsp
-----------------------------------------------------


01/02/2004: JavaLayer 0.4
-------------------------
- XING VBR header frame support improved in Header.java :
    + public boolean vbr() added.
    + public int vbr_scale() added.
    + public byte[] vbr_toc() added.
    total_ms(), ms_per_frame(), min_number_of_frames(int), max_number_of_frames(int),
    bitrate_string(), bitrate() methods check for VBR status.

- ID3v2 frames support improved :
    + public InputStream getRawID3v2() added in Bitstream.java

- Misc : 
    Bug fixed in the decoder for some +320kbps stream.
    Bug fixed : SYNC conflict with some ID3v2 frames.
    + public int bitrate() added.
    + public int bitrate_instant() added.
    jUnit tests added (see srctest/ folder)


08/04/2003: JavaLayer 0.3.0
---------------------------
- Advanced threaded player classes added.


04/01/2002: JavaLayer 0.2.0
---------------------------
 - MPEG 2.5 support added.
   Encoded files with LAME are supported.
 - Bug fixes for ms time computation with free format.
 + Bench notes :
    + Heap use range : 1380KB to 1900KB - 370 classes loaded. 
    + Footprint : ~8MB under WinNT4 + J2SE 1.3 (Hotspot).
    + CPU usage : ~12% under PIII 800Mhz/WinNT4+J2SE 1.3 (Hotspot).
    + CPU usage : ~11% under PIII 1Ghz/Win2K+J2SE 1.4 (Hotspot).


03/04/2002: JavaLayer 0.1.2
---------------------------
 - API improved to let developers get MP3 bitrate, framelength and total time features.
 - Additionnal files added (CHANGES.txt and LICENSE.txt).


10/01/2001: JavaLayer 0.1.1
---------------------------
 - Bugs fixes in the decoder (Layer III).


07/02/2001: JavaLayer 0.1.0
---------------------------
 - Streaming support added to the simple player (jlp). 
 - Bugs fixes in the simple player (too fast playback for low rate files).


06/04/2001: JavaLayer 0.0.9
---------------------------
 - Bugs fixes in Layer I and Layer II decoder. 
 - ANT build script added.
 - HTML page added to play MP3 through PlayerApplet in a JavaSound 1.0 (JDK 1.3) 
   compliant browser.


04/16/2000: JavaLayer 0.0.8 
---------------------------
A simple player have been added and you can now play MP3 in real time with JVM 
that supports JavaSound 1.0 (i.e JDK 1.3). 

 - Bug fixes. 
 - Decoder improvements. 
 - Build Scripts have been added for Win32 and Unix platforms. 


12/16/1999: JavaLayer 0.0.7 
---------------------------
JavaLayer 0.0.7 contains significant improvements over version 0.0 :

 - API and documentation added.
 - The decoder is much more faster. Fast enough for real-time decoding.
 - Huffman/Layer3 tables serialization added. 
 - New buffers management. 
 - Exceptions + Utils added. 
 - Bugs fixes.


02/28/1999: JavaLayer 0.0
-------------------------
JavaLayer V0.0 does not play any MP3 but it allows the MP3toWAV conversion.
This is the first step in this project. We do it thanks to free mp3 ressources 
available on the net:

 - MAPlay for the OO MP3 decoder (C++).
 - WAV format description from Microsoft. 

The MP3 decoder works now but it is too slow to allow real time implementation. 
playerapplet.html100644      0      0        3611  7776351556  11603 0ustar     0      0 <html>
<head>
<title>MP3 Player - Applet Sample</title>
</head>
<body bgcolor="#FFFFFF">
<div align="center">
  <p><font color="#FF0000"><b><font face="Arial, Helvetica, sans-serif" size="+1">JavaLayer
    0.4</font></b></font></p>
  <p>&nbsp;</p>
  <p><font face="Verdana, Arial, Helvetica, sans-serif" size="-1"><b> - PlayerApplet
    Sample - </b></font></p>
  <p><font face="Verdana, Arial, Helvetica, sans-serif" size="-1"><b><br>
    </b>To play any MP3 file (e.g. : 44Khz, 128Kbps) , you need a browser JavaSound
    1.0 compliant.<br>
    e.g : <font color="#0000CC">Mozilla, Netscape 6+,</font> or <font color="#CC0000">Internet
    Explorer + JDK1.3 plugin (or higher)</font>.</font></p>
  <p>&nbsp;</p>
  <p><font face="Verdana, Arial, Helvetica, sans-serif" size="-1" color="#0000CC"><u><font color="#0000FF">Playing</font></u><font color="#0000FF">
    : test.mp3</font></font></p>
  <p>&nbsp;</p>
  <p>

<OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
WIDTH = "32" HEIGHT = "32"  codebase="http://java.sun.com/products/plugin/1.3/jinstall-13-win32.cab#Version=1,3,0,0">
<PARAM NAME = CODE VALUE = "javazoom.jl.player.PlayerApplet" >
<PARAM NAME = ARCHIVE VALUE = "jl0.4.jar" >

<PARAM NAME="type" VALUE="application/x-java-applet;version=1.3">
<PARAM NAME="scriptable" VALUE="false">
<PARAM NAME = "audioURL" VALUE ="test.mp3">
<COMMENT>
<EMBED type="application/x-java-applet;version=1.3"  CODE = "javazoom.jl.player.PlayerApplet" ARCHIVE = "jl0.4.jar" WIDTH = "32" HEIGHT = "32" audioURL = "test.mp3"  scriptable=false pluginspage="http://java.sun.com/products/plugin/1.3/plugin-install.html"><NOEMBED></COMMENT>

</NOEMBED></EMBED>
</OBJECT>

</p>
  <p>&nbsp;</p>
  <hr noshade size="1">
  <p><font face="Verdana, Arial, Helvetica, sans-serif" size="-1" color="#0000CC"><font size="-2"><b>&copy;
    JavaZOOM 1999-2004</b></font></font></p>
  </div>
</body>
</html>
setEnvAnt.bat100644      0      0         256  7776346244  10572 0ustar     0      0 SET JAVA_HOME=c:\jdk1.3
SET ANT_HOME=c:\Ant
SET PATH=%JAVA_HOME%\bin;%ANT_HOME%\bin
SET CLASSPATH=%ANT_HOME%\lib\crimson.jar;%ANT_HOME%\lib\jaxp.jar;%ANT_HOME%\lib\ant.jarREADME.txt100644      0      0        5530  7776346474   7716 0ustar     0      0  JavaLayer 0.4
 JavaZOOM 1999-2004

 Project Homepage :
   http://www.javazoom.net/javalayer/javalayer.html 

 JAVA and MP3 online Forums :
   http://www.javazoom.net/services/forums/index.jsp
-----------------------------------------------------

DESCRIPTION :
-----------
JavaLayer is a library that decodes/plays/converts MPEG 1/2/2.5 Layer 1/2/3
(i.e. MP3) in real time for the JAVA(tm) platform. This is a non-commercial project 
and anyone can add his contribution. JavaLayer is licensed under GPL (see LICENSE.txt).


FAQ : 
---

- How to install Javalayer ?
  Before running JavaLayer you must set PATH and CLASSPATH for JAVA
  and you must add jl0.4.jar to the CLASSPATH.

- Do I need JMF to run JavaLayer player ?
  No, JMF is not required. You just need a JVM JavaSound 1.0 compliant.
  (i.e. JVM1.3 or higher).

- How to run the MP3TOWAV converter ?
  java javazoom.jl.converter.jlc -v -p output.wav yourfile.mp3
  (Note : MP3TOWAV converter should work under jdk1.1.x or higher)

- How to run the simple MP3 player ?
  java javazoom.jl.player.jlp localfile.mp3
   or
  java javazoom.jl.player.jlp -url http://www.aserver.com/remotefile.mp3
  Note : MP3 simple player only works under JVM that supports JavaSound 1.0 (i.e JDK1.3.x+)

- How to run the advanced (threaded) MP3 player ?
  java javazoom.jl.player.advanced.jlap localfile.mp3

- Does simple MP3 player support streaming ?
  Yes, use the following command to play music from stream :
  java javazoom.jl.player.jlp -url http://www.shoutcastserver.com:8000

- Does JavaLayer support MPEG 2.5 ?
  Yes, it works fine for all files generated with LAME.

- Does JavaLayer support VBR ?
  Yes, It supports XING VBR header too. 

- How to get ID3v1 or ID3v2 tags from JavaLayer API ?
  The API provides a getRawID3v2() method to get an InputStream on ID3v2 frames.

- How to skip frames to have a seek feature ?
  See javazoom.jl.player.advanced.jlap source to learn how to skip frames.

- How much memory/CPU JavaLayer needs to run ?
  Here are our benchmark notes :
    - Heap use range : 1380KB to 1900KB - 370 classes loaded. 
    - Footprint : ~8MB under WinNT4/Win2K + J2SE 1.3 (Hotspot).
                  ~10MB under WinNT4/Win2K + J2SE 1.4.1 (Hotspot).
    - CPU usage : ~12% under PIII 800Mhz/WinNT4+J2SE 1.3 (Hotspot).
                  ~8% under PIII 1Ghz/Win2K+J2SE 1.3.1 (Hotspot).
                  ~12% under PIII 1Ghz/Win2K+J2SE 1.4.1 (Hotspot).

- How to contact JavaLayer developers ?
  Try to post a thread on Java&MP3 online forums at :
  http://www.javazoom.net/services/forums/index.jsp
  You can also contact us at javalayer@javazoom.net for contributions.
 

KNOWN PROBLEMS :
--------------
99% of MP3 plays well with JavaLayer but some (1%) return an ArrayIndexOutOfBoundsException 
while playing. It's a bug (hard to fix) in the decoder.LICENSE.txt100644      0      0       43655  7435737612  10063 0ustar     0      0 		    GNU GENERAL PUBLIC LICENSE
		       Version 2, June 1991

 Copyright (C) 1989, 1991 Free Software Foundation, Inc.
                       59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

			    Preamble

  The licenses for most software are designed to take away your
freedom to share and change it.  By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users.  This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it.  (Some other Free Software Foundation software is covered by
the GNU Library General Public License instead.)  You can apply it to
your programs, too.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.

  To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have.  You must make sure that they, too, receive or can get the
source code.  And you must show them these terms so they know their
rights.

  We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.

  Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software.  If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.

  Finally, any free program is threatened constantly by software
patents.  We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary.  To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.

  The precise terms and conditions for copying, distribution and
modification follow.

		    GNU GENERAL PUBLIC LICENSE
   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

  0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License.  The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language.  (Hereinafter, translation is included without limitation in
the term "modification".)  Each licensee is addressed as "you".

Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope.  The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.

  1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.

You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.

  2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:

    a) You must cause the modified files to carry prominent notices
    stating that you changed the files and the date of any change.

    b) You must cause any work that you distribute or publish, that in
    whole or in part contains or is derived from the Program or any
    part thereof, to be licensed as a whole at no charge to all third
    parties under the terms of this License.

    c) If the modified program normally reads commands interactively
    when run, you must cause it, when started running for such
    interactive use in the most ordinary way, to print or display an
    announcement including an appropriate copyright notice and a
    notice that there is no warranty (or else, saying that you provide
    a warranty) and that users may redistribute the program under
    these conditions, and telling the user how to view a copy of this
    License.  (Exception: if the Program itself is interactive but
    does not normally print such an announcement, your work based on
    the Program is not required to print an announcement.)

These requirements apply to the modified work as a whole.  If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works.  But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.

Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.

In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.

  3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:

    a) Accompany it with the complete corresponding machine-readable
    source code, which must be distributed under the terms of Sections
    1 and 2 above on a medium customarily used for software interchange; or,

    b) Accompany it with a written offer, valid for at least three
    years, to give any third party, for a charge no more than your
    cost of physically performing source distribution, a complete
    machine-readable copy of the corresponding source code, to be
    distributed under the terms of Sections 1 and 2 above on a medium
    customarily used for software interchange; or,

    c) Accompany it with the information you received as to the offer
    to distribute corresponding source code.  (This alternative is
    allowed only for noncommercial distribution and only if you
    received the program in object code or executable form with such
    an offer, in accord with Subsection b above.)

The source code for a work means the preferred form of the work for
making modifications to it.  For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable.  However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.

If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.

  4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License.  Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.

  5. You are not required to accept this License, since you have not
signed it.  However, nothing else grants you permission to modify or
distribute the Program or its derivative works.  These actions are
prohibited by law if you do not accept this License.  Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.

  6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions.  You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.

  7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all.  For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.

If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.

It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices.  Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.

This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.

  8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded.  In such case, this License incorporates
the limitation as if written in the body of this License.

  9. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time.  Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

Each version is given a distinguishing version number.  If the Program
specifies a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation.  If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.

  10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission.  For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this.  Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.

			    NO WARRANTY

  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.

  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.

		     END OF TERMS AND CONDITIONS

	    How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU 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 General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA


Also add information on how to contact you by electronic and paper mail.

If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:

    Gnomovision version 69, Copyright (C) year name of author
    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    This is free software, and you are welcome to redistribute it
    under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License.  Of course, the commands you use may
be called something other than `show w' and `show c'; they could even be
mouse-clicks or menu items--whatever suits your program.

You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary.  Here is a sample; alter the names:

  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
  `Gnomovision' (which makes passes at compilers) written by James Hacker.

  <signature of Ty Coon>, 1 April 1989
  Ty Coon, President of Vice

This General Public License does not permit incorporating your program into
proprietary programs.  If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library.  If this is what you want to do, use the GNU Library General
Public License instead of this License.
doc/overview-tree.html100644      0      0       26267  7775053464  12501 0ustar     0      0 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN""http://www.w3.org/TR/REC-html40/frameset.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc on Thu Jan 01 18:21:54 CET 2004 -->
<TITLE>
: Class Hierarchy
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
</HEAD>
<BODY BGCOLOR="white">

<!-- ========== START OF NAVBAR ========== -->
<A NAME="navbar_top"><!-- --></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
  <TR ALIGN="center" VALIGN="top">
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
  </TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>

<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
&nbsp;PREV&nbsp;
&nbsp;NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
  <A HREF="index.html" TARGET="_top"><B>FRAMES</B></A>  &nbsp;
&nbsp;<A HREF="overview-tree.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD>
</TR>
</TABLE>
<!-- =========== END OF NAVBAR =========== -->

<HR>
<CENTER>
<H2>
Hierarchy For All Packages</H2>
</CENTER>
<DL>
<DT><B>Package Hierarchies: </B><DD><A HREF="javazoom/jl/converter/package-tree.html">javazoom.jl.converter</A>, <A HREF="javazoom/jl/decoder/package-tree.html">javazoom.jl.decoder</A>, <A HREF="javazoom/jl/player/package-tree.html">javazoom.jl.player</A>, <A HREF="javazoom/jl/player/advanced/package-tree.html">javazoom.jl.player.advanced</A></DL>
<HR>
<H2>
Class Hierarchy
</H2>
<UL>
<LI TYPE="circle">class java.lang.Object<UL>
<LI TYPE="circle">class javazoom.jl.player.advanced.<A HREF="javazoom/jl/player/advanced/AdvancedPlayer.html"><B>AdvancedPlayer</B></A><LI TYPE="circle">class javazoom.jl.player.<A HREF="javazoom/jl/player/AudioDeviceBase.html"><B>AudioDeviceBase</B></A> (implements javazoom.jl.player.<A HREF="javazoom/jl/player/AudioDevice.html">AudioDevice</A>)
<UL>
<LI TYPE="circle">class javazoom.jl.player.<A HREF="javazoom/jl/player/JavaSoundAudioDevice.html"><B>JavaSoundAudioDevice</B></A><LI TYPE="circle">class javazoom.jl.player.<A HREF="javazoom/jl/player/NullAudioDevice.html"><B>NullAudioDevice</B></A></UL>
<LI TYPE="circle">class javazoom.jl.player.<A HREF="javazoom/jl/player/AudioDeviceFactory.html"><B>AudioDeviceFactory</B></A><UL>
<LI TYPE="circle">class javazoom.jl.player.<A HREF="javazoom/jl/player/FactoryRegistry.html"><B>FactoryRegistry</B></A><LI TYPE="circle">class javazoom.jl.player.<A HREF="javazoom/jl/player/JavaSoundAudioDeviceFactory.html"><B>JavaSoundAudioDeviceFactory</B></A></UL>
<LI TYPE="circle">class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Bitstream.html"><B>Bitstream</B></A> (implements javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/BitstreamErrors.html">BitstreamErrors</A>)
<LI TYPE="circle">class java.awt.Component (implements java.awt.image.ImageObserver, java.awt.MenuContainer, java.io.Serializable)
<UL>
<LI TYPE="circle">class java.awt.Container<UL>
<LI TYPE="circle">class java.awt.Panel (implements javax.accessibility.Accessible)
<UL>
<LI TYPE="circle">class java.applet.Applet<UL>
<LI TYPE="circle">class javazoom.jl.player.<A HREF="javazoom/jl/player/PlayerApplet.html"><B>PlayerApplet</B></A> (implements java.lang.Runnable)
</UL>
</UL>
</UL>
</UL>
<LI TYPE="circle">class javazoom.jl.converter.<A HREF="javazoom/jl/converter/Converter.html"><B>Converter</B></A><LI TYPE="circle">class javazoom.jl.converter.<A HREF="javazoom/jl/converter/Converter.PrintWriterProgressListener.html"><B>Converter.PrintWriterProgressListener</B></A> (implements javazoom.jl.converter.<A HREF="javazoom/jl/converter/Converter.ProgressListener.html">Converter.ProgressListener</A>)
<LI TYPE="circle">class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Crc16.html"><B>Crc16</B></A><LI TYPE="circle">class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Decoder.html"><B>Decoder</B></A> (implements javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/DecoderErrors.html">DecoderErrors</A>)
<LI TYPE="circle">class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Decoder.Params.html"><B>Decoder.Params</B></A> (implements java.lang.Cloneable)
<LI TYPE="circle">class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Equalizer.html"><B>Equalizer</B></A><LI TYPE="circle">class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Equalizer.EQFunction.html"><B>Equalizer.EQFunction</B></A><LI TYPE="circle">class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Header.html"><B>Header</B></A><LI TYPE="circle">class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/InputStreamSource.html"><B>InputStreamSource</B></A> (implements javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Source.html">Source</A>)
<LI TYPE="circle">class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/JavaLayerUtils.html"><B>JavaLayerUtils</B></A><LI TYPE="circle">class javazoom.jl.player.advanced.<A HREF="javazoom/jl/player/advanced/jlap.html"><B>jlap</B></A><LI TYPE="circle">class javazoom.jl.converter.<A HREF="javazoom/jl/converter/jlc.html"><B>jlc</B></A><LI TYPE="circle">class javazoom.jl.player.<A HREF="javazoom/jl/player/jlp.html"><B>jlp</B></A><LI TYPE="circle">class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Manager.html"><B>Manager</B></A><LI TYPE="circle">class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Obuffer.html"><B>Obuffer</B></A><UL>
<LI TYPE="circle">class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/SampleBuffer.html"><B>SampleBuffer</B></A><LI TYPE="circle">class javazoom.jl.converter.<A HREF="javazoom/jl/converter/WaveFileObuffer.html"><B>WaveFileObuffer</B></A></UL>
<LI TYPE="circle">class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/OutputChannels.html"><B>OutputChannels</B></A><LI TYPE="circle">class javazoom.jl.player.advanced.<A HREF="javazoom/jl/player/advanced/PlaybackEvent.html"><B>PlaybackEvent</B></A><LI TYPE="circle">class javazoom.jl.player.advanced.<A HREF="javazoom/jl/player/advanced/PlaybackListener.html"><B>PlaybackListener</B></A><UL>
<LI TYPE="circle">class javazoom.jl.player.advanced.<A HREF="javazoom/jl/player/advanced/jlap.InfoListener.html"><B>jlap.InfoListener</B></A></UL>
<LI TYPE="circle">class javazoom.jl.player.<A HREF="javazoom/jl/player/Player.html"><B>Player</B></A><LI TYPE="circle">class javazoom.jl.converter.<A HREF="javazoom/jl/converter/RiffFile.html"><B>RiffFile</B></A><UL>
<LI TYPE="circle">class javazoom.jl.converter.<A HREF="javazoom/jl/converter/WaveFile.html"><B>WaveFile</B></A></UL>
<LI TYPE="circle">class java.lang.Throwable (implements java.io.Serializable)
<UL>
<LI TYPE="circle">class java.lang.Error<UL>
<LI TYPE="circle">class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/JavaLayerError.html"><B>JavaLayerError</B></A></UL>
<LI TYPE="circle">class java.lang.Exception<UL>
<LI TYPE="circle">class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/JavaLayerException.html"><B>JavaLayerException</B></A><UL>
<LI TYPE="circle">class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/BitstreamException.html"><B>BitstreamException</B></A> (implements javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/BitstreamErrors.html">BitstreamErrors</A>)
<LI TYPE="circle">class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/DecoderException.html"><B>DecoderException</B></A> (implements javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/DecoderErrors.html">DecoderErrors</A>)
</UL>
</UL>
</UL>
<LI TYPE="circle">class javazoom.jl.converter.<A HREF="javazoom/jl/converter/WaveFile.WaveFileSample.html"><B>WaveFile.WaveFileSample</B></A></UL>
</UL>
<H2>
Interface Hierarchy
</H2>
<UL>
<LI TYPE="circle">interface javazoom.jl.player.<A HREF="javazoom/jl/player/AudioDevice.html"><B>AudioDevice</B></A><LI TYPE="circle">interface javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Control.html"><B>Control</B></A><LI TYPE="circle">interface javazoom.jl.converter.<A HREF="javazoom/jl/converter/Converter.ProgressListener.html"><B>Converter.ProgressListener</B></A><LI TYPE="circle">interface javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/FrameDecoder.html"><B>FrameDecoder</B></A><LI TYPE="circle">interface javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/JavaLayerErrors.html"><B>JavaLayerErrors</B></A><UL>
<LI TYPE="circle">interface javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/BitstreamErrors.html"><B>BitstreamErrors</B></A><LI TYPE="circle">interface javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/DecoderErrors.html"><B>DecoderErrors</B></A></UL>
<LI TYPE="circle">interface javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/JavaLayerHook.html"><B>JavaLayerHook</B></A><LI TYPE="circle">interface javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Source.html"><B>Source</B></A></UL>
<HR>

<!-- ========== START OF NAVBAR ========== -->
<A NAME="navbar_bottom"><!-- --></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
  <TR ALIGN="center" VALIGN="top">
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
  </TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>

<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
&nbsp;PREV&nbsp;
&nbsp;NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
  <A HREF="index.html" TARGET="_top"><B>FRAMES</B></A>  &nbsp;
&nbsp;<A HREF="overview-tree.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD>
</TR>
</TABLE>
<!-- =========== END OF NAVBAR =========== -->

<HR>
JavaZOOM 1999-2004
</BODY>
</HTML>
doc/index-all.html100644      0      0      332765  7775053464  11576 0ustar     0      0 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN""http://www.w3.org/TR/REC-html40/frameset.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc on Thu Jan 01 18:21:54 CET 2004 -->
<TITLE>
: Index
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
</HEAD>
<BODY BGCOLOR="white">

<!-- ========== START OF NAVBAR ========== -->
<A NAME="navbar_top"><!-- --></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
  <TR ALIGN="center" VALIGN="top">
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
  </TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>

<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
&nbsp;PREV&nbsp;
&nbsp;NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
  <A HREF="index.html" TARGET="_top"><B>FRAMES</B></A>  &nbsp;
&nbsp;<A HREF="index-all.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD>
</TR>
</TABLE>
<!-- =========== END OF NAVBAR =========== -->

<A HREF="#_A_">A</A> <A HREF="#_B_">B</A> <A HREF="#_C_">C</A> <A HREF="#_D_">D</A> <A HREF="#_E_">E</A> <A HREF="#_F_">F</A> <A HREF="#_G_">G</A> <A HREF="#_H_">H</A> <A HREF="#_I_">I</A> <A HREF="#_J_">J</A> <A HREF="#_L_">L</A> <A HREF="#_M_">M</A> <A HREF="#_N_">N</A> <A HREF="#_O_">O</A> <A HREF="#_P_">P</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_T_">T</A> <A HREF="#_U_">U</A> <A HREF="#_V_">V</A> <A HREF="#_W_">W</A> <HR>
<A NAME="_A_"><!-- --></A><H2>
<B>A</B></H2>
<DL>
<DT><A HREF="javazoom/jl/decoder/Crc16.html#add_bits(int, int)"><B>add_bits(int, int)</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Crc16.html">Crc16</A>
<DD>Feed a bitstring to the crc calculation (0 < length <= 32).
<DT><A HREF="javazoom/jl/decoder/Manager.html#addControl(javazoom.jl.decoder.Control)"><B>addControl(Control)</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Manager.html">Manager</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/player/FactoryRegistry.html#addFactory(javazoom.jl.player.AudioDeviceFactory)"><B>addFactory(AudioDeviceFactory)</B></A> - 
Method in class javazoom.jl.player.<A HREF="javazoom/jl/player/FactoryRegistry.html">FactoryRegistry</A>
<DD>Registers an <code>AudioDeviceFactory</code> instance
 with this registry.
<DT><A HREF="javazoom/jl/player/advanced/AdvancedPlayer.html"><B>AdvancedPlayer</B></A> - class javazoom.jl.player.advanced.<A HREF="javazoom/jl/player/advanced/AdvancedPlayer.html">AdvancedPlayer</A>.<DD>a hybrid of javazoom.jl.player.Player tweeked to include <code>play(startFrame, endFrame)</code>
 hopefully this will be included in the api<DT><A HREF="javazoom/jl/player/advanced/AdvancedPlayer.html#AdvancedPlayer(java.io.InputStream)"><B>AdvancedPlayer(InputStream)</B></A> - 
Constructor for class javazoom.jl.player.advanced.<A HREF="javazoom/jl/player/advanced/AdvancedPlayer.html">AdvancedPlayer</A>
<DD>Creates a new <code>Player</code> instance.
<DT><A HREF="javazoom/jl/player/advanced/AdvancedPlayer.html#AdvancedPlayer(java.io.InputStream, javazoom.jl.player.AudioDevice)"><B>AdvancedPlayer(InputStream, AudioDevice)</B></A> - 
Constructor for class javazoom.jl.player.advanced.<A HREF="javazoom/jl/player/advanced/AdvancedPlayer.html">AdvancedPlayer</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/converter/WaveFileObuffer.html#append(int, short)"><B>append(int, short)</B></A> - 
Method in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/WaveFileObuffer.html">WaveFileObuffer</A>
<DD>Takes a 16 Bit PCM sample.
<DT><A HREF="javazoom/jl/decoder/Obuffer.html#append(int, short)"><B>append(int, short)</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Obuffer.html">Obuffer</A>
<DD>Takes a 16 Bit PCM sample.
<DT><A HREF="javazoom/jl/decoder/SampleBuffer.html#append(int, short)"><B>append(int, short)</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/SampleBuffer.html">SampleBuffer</A>
<DD>Takes a 16 Bit PCM sample.
<DT><A HREF="javazoom/jl/decoder/Obuffer.html#appendSamples(int, float[])"><B>appendSamples(int, float[])</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Obuffer.html">Obuffer</A>
<DD>Accepts 32 new PCM samples.
<DT><A HREF="javazoom/jl/decoder/SampleBuffer.html#appendSamples(int, float[])"><B>appendSamples(int, float[])</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/SampleBuffer.html">SampleBuffer</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/player/PlayerApplet.html#AUDIO_PARAMETER"><B>AUDIO_PARAMETER</B></A> - 
Static variable in class javazoom.jl.player.<A HREF="javazoom/jl/player/PlayerApplet.html">PlayerApplet</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/player/AudioDevice.html"><B>AudioDevice</B></A> - interface javazoom.jl.player.<A HREF="javazoom/jl/player/AudioDevice.html">AudioDevice</A>.<DD>The <code>AudioDevice</code> interface provides an abstraction for
 a device capable of sounding audio samples.<DT><A HREF="javazoom/jl/player/AudioDeviceBase.html"><B>AudioDeviceBase</B></A> - class javazoom.jl.player.<A HREF="javazoom/jl/player/AudioDeviceBase.html">AudioDeviceBase</A>.<DD>The <code>AudioDeviceBase</code> class provides a simple thread-safe
 implementation of the <code>AudioDevice</code> interface.<DT><A HREF="javazoom/jl/player/AudioDeviceBase.html#AudioDeviceBase()"><B>AudioDeviceBase()</B></A> - 
Constructor for class javazoom.jl.player.<A HREF="javazoom/jl/player/AudioDeviceBase.html">AudioDeviceBase</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/player/AudioDeviceFactory.html"><B>AudioDeviceFactory</B></A> - class javazoom.jl.player.<A HREF="javazoom/jl/player/AudioDeviceFactory.html">AudioDeviceFactory</A>.<DD>An <code>AudioDeviceFactory</code> class is responsible for creating
 a specific <code>AudioDevice</code> implementation.<DT><A HREF="javazoom/jl/player/AudioDeviceFactory.html#AudioDeviceFactory()"><B>AudioDeviceFactory()</B></A> - 
Constructor for class javazoom.jl.player.<A HREF="javazoom/jl/player/AudioDeviceFactory.html">AudioDeviceFactory</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_B_"><!-- --></A><H2>
<B>B</B></H2>
<DL>
<DT><A HREF="javazoom/jl/converter/RiffFile.html#Backpatch(long, byte[], int)"><B>Backpatch(long, byte[], int)</B></A> - 
Method in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/RiffFile.html">RiffFile</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/converter/RiffFile.html#Backpatch(long, javazoom.jl.converter.RiffFile.RiffChunkHeader, int)"><B>Backpatch(long, RiffFile.RiffChunkHeader, int)</B></A> - 
Method in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/RiffFile.html">RiffFile</A>
<DD>Write Data to specified offset.
<DT><A HREF="javazoom/jl/decoder/Equalizer.html#BAND_NOT_PRESENT"><B>BAND_NOT_PRESENT</B></A> - 
Static variable in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Equalizer.html">Equalizer</A>
<DD>Equalizer setting to denote that a given band will not be
 present in the output signal.
<DT><A HREF="javazoom/jl/decoder/Header.html#bitrate_index()"><B>bitrate_index()</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Header.html">Header</A>
<DD>Returns bitrate index.
<DT><A HREF="javazoom/jl/decoder/Header.html#bitrate_instant()"><B>bitrate_instant()</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Header.html">Header</A>
<DD>Return Instant Bitrate.
<DT><A HREF="javazoom/jl/decoder/Header.html#bitrate_str"><B>bitrate_str</B></A> - 
Static variable in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Header.html">Header</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/Header.html#bitrate_string()"><B>bitrate_string()</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Header.html">Header</A>
<DD>Return Bitrate.
<DT><A HREF="javazoom/jl/decoder/Header.html#bitrate()"><B>bitrate()</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Header.html">Header</A>
<DD>Return Bitrate.
<DT><A HREF="javazoom/jl/decoder/Header.html#bitrates"><B>bitrates</B></A> - 
Static variable in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Header.html">Header</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/converter/WaveFile.html#BitsPerSample()"><B>BitsPerSample()</B></A> - 
Method in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/WaveFile.html">WaveFile</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/Bitstream.html"><B>Bitstream</B></A> - class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Bitstream.html">Bitstream</A>.<DD>The <code>Bistream</code> class is responsible for parsing
 an MPEG audio bitstream.<DT><A HREF="javazoom/jl/decoder/JavaLayerErrors.html#BITSTREAM_ERROR"><B>BITSTREAM_ERROR</B></A> - 
Static variable in interface javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/JavaLayerErrors.html">JavaLayerErrors</A>
<DD>The first bitstream error code.
<DT><A HREF="javazoom/jl/decoder/BitstreamErrors.html#BITSTREAM_LAST"><B>BITSTREAM_LAST</B></A> - 
Static variable in interface javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/BitstreamErrors.html">BitstreamErrors</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/Bitstream.html#Bitstream(java.io.InputStream)"><B>Bitstream(InputStream)</B></A> - 
Constructor for class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Bitstream.html">Bitstream</A>
<DD>Construct a IBitstream that reads data from a
 given InputStream.
<DT><A HREF="javazoom/jl/decoder/BitstreamErrors.html"><B>BitstreamErrors</B></A> - interface javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/BitstreamErrors.html">BitstreamErrors</A>.<DD>This interface describes all error codes that can be thrown 
 in <code>BistreamException</code>s.<DT><A HREF="javazoom/jl/decoder/BitstreamException.html"><B>BitstreamException</B></A> - exception javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/BitstreamException.html">BitstreamException</A>.<DD>Instances of <code>BitstreamException</code> are thrown 
 when operations on a <code>Bitstream</code> fail.<DT><A HREF="javazoom/jl/decoder/BitstreamException.html#BitstreamException(int, java.lang.Throwable)"><B>BitstreamException(int, Throwable)</B></A> - 
Constructor for class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/BitstreamException.html">BitstreamException</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/BitstreamException.html#BitstreamException(java.lang.String, java.lang.Throwable)"><B>BitstreamException(String, Throwable)</B></A> - 
Constructor for class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/BitstreamException.html">BitstreamException</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/OutputChannels.html#BOTH"><B>BOTH</B></A> - 
Static variable in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/OutputChannels.html">OutputChannels</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/OutputChannels.html#BOTH_CHANNELS"><B>BOTH_CHANNELS</B></A> - 
Static variable in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/OutputChannels.html">OutputChannels</A>
<DD>Flag to indicate output should include both channels.
</DL>
<HR>
<A NAME="_C_"><!-- --></A><H2>
<B>C</B></H2>
<DL>
<DT><A HREF="javazoom/jl/decoder/Header.html#calculate_framesize()"><B>calculate_framesize()</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Header.html">Header</A>
<DD>Calculate Frame size.
<DT><A HREF="javazoom/jl/converter/WaveFile.WaveFileSample.html#chan"><B>chan</B></A> - 
Variable in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/WaveFile.WaveFileSample.html">WaveFile.WaveFileSample</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/Header.html#checksum"><B>checksum</B></A> - 
Variable in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Header.html">Header</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/Header.html#checksum_ok()"><B>checksum_ok()</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Header.html">Header</A>
<DD>Returns Checksum flag.
<DT><A HREF="javazoom/jl/decoder/Crc16.html#checksum()"><B>checksum()</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Crc16.html">Crc16</A>
<DD>Return the calculated checksum.
<DT><A HREF="javazoom/jl/decoder/Header.html#checksums()"><B>checksums()</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Header.html">Header</A>
<DD>Returns Protection bit.
<DT><A HREF="javazoom/jl/converter/WaveFileObuffer.html#clear_buffer()"><B>clear_buffer()</B></A> - 
Method in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/WaveFileObuffer.html">WaveFileObuffer</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/Obuffer.html#clear_buffer()"><B>clear_buffer()</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Obuffer.html">Obuffer</A>
<DD>Clears all data in the buffer (for seeking).
<DT><A HREF="javazoom/jl/decoder/SampleBuffer.html#clear_buffer()"><B>clear_buffer()</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/SampleBuffer.html">SampleBuffer</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/Decoder.Params.html#clone()"><B>clone()</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Decoder.Params.html">Decoder.Params</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/converter/WaveFileObuffer.html#close()"><B>close()</B></A> - 
Method in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/WaveFileObuffer.html">WaveFileObuffer</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/Obuffer.html#close()"><B>close()</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Obuffer.html">Obuffer</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/Bitstream.html#close()"><B>close()</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Bitstream.html">Bitstream</A>
<DD>Close the Bitstream.
<DT><A HREF="javazoom/jl/decoder/SampleBuffer.html#close()"><B>close()</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/SampleBuffer.html">SampleBuffer</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/player/AudioDeviceBase.html#close()"><B>close()</B></A> - 
Method in class javazoom.jl.player.<A HREF="javazoom/jl/player/AudioDeviceBase.html">AudioDeviceBase</A>
<DD>Closes this audio device.
<DT><A HREF="javazoom/jl/player/Player.html#close()"><B>close()</B></A> - 
Method in class javazoom.jl.player.<A HREF="javazoom/jl/player/Player.html">Player</A>
<DD>Cloases this player.
<DT><A HREF="javazoom/jl/player/AudioDevice.html#close()"><B>close()</B></A> - 
Method in interface javazoom.jl.player.<A HREF="javazoom/jl/player/AudioDevice.html">AudioDevice</A>
<DD>Closes this audio device.
<DT><A HREF="javazoom/jl/player/advanced/AdvancedPlayer.html#close()"><B>close()</B></A> - 
Method in class javazoom.jl.player.advanced.<A HREF="javazoom/jl/player/advanced/AdvancedPlayer.html">AdvancedPlayer</A>
<DD>Cloases this player.
<DT><A HREF="javazoom/jl/converter/RiffFile.html#Close()"><B>Close()</B></A> - 
Method in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/RiffFile.html">RiffFile</A>
<DD>Close Riff File.
<DT><A HREF="javazoom/jl/converter/WaveFile.html#Close()"><B>Close()</B></A> - 
Method in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/WaveFile.html">WaveFile</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/Bitstream.html#closeFrame()"><B>closeFrame()</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Bitstream.html">Bitstream</A>
<DD>Close MP3 frame.
<DT><A HREF="javazoom/jl/player/AudioDeviceBase.html#closeImpl()"><B>closeImpl()</B></A> - 
Method in class javazoom.jl.player.<A HREF="javazoom/jl/player/AudioDeviceBase.html">AudioDeviceBase</A>
<DD>Template method to provide the implementation for
 closing the audio device.
<DT><A HREF="javazoom/jl/player/JavaSoundAudioDevice.html#closeImpl()"><B>closeImpl()</B></A> - 
Method in class javazoom.jl.player.<A HREF="javazoom/jl/player/JavaSoundAudioDevice.html">JavaSoundAudioDevice</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/Control.html"><B>Control</B></A> - interface javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Control.html">Control</A>.<DD>Work in progress.<DT><A HREF="javazoom/jl/converter/Converter.html#convert(java.io.InputStream, java.lang.String, javazoom.jl.converter.Converter.ProgressListener, javazoom.jl.decoder.Decoder.Params)"><B>convert(InputStream, String, Converter.ProgressListener, Decoder.Params)</B></A> - 
Method in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/Converter.html">Converter</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/converter/Converter.html#convert(java.lang.String, java.lang.String)"><B>convert(String, String)</B></A> - 
Method in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/Converter.html">Converter</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/converter/Converter.html#convert(java.lang.String, java.lang.String, javazoom.jl.converter.Converter.ProgressListener)"><B>convert(String, String, Converter.ProgressListener)</B></A> - 
Method in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/Converter.html">Converter</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/converter/Converter.html#convert(java.lang.String, java.lang.String, javazoom.jl.converter.Converter.ProgressListener, javazoom.jl.decoder.Decoder.Params)"><B>convert(String, String, Converter.ProgressListener, Decoder.Params)</B></A> - 
Method in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/Converter.html">Converter</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/converter/Converter.html"><B>Converter</B></A> - class javazoom.jl.converter.<A HREF="javazoom/jl/converter/Converter.html">Converter</A>.<DD>The <code>Converter</code> class implements the conversion of
 an MPEG audio file to a .WAV file.<DT><A HREF="javazoom/jl/converter/Converter.PrintWriterProgressListener.html"><B>Converter.PrintWriterProgressListener</B></A> - class javazoom.jl.converter.<A HREF="javazoom/jl/converter/Converter.PrintWriterProgressListener.html">Converter.PrintWriterProgressListener</A>.<DD>Implementation of <code>ProgressListener</code> that writes
 notification text to a <code>PrintWriter</code>.<DT><A HREF="javazoom/jl/converter/Converter.PrintWriterProgressListener.html#Converter.PrintWriterProgressListener(java.io.PrintWriter, int)"><B>Converter.PrintWriterProgressListener(PrintWriter, int)</B></A> - 
Constructor for class javazoom.jl.converter.<A HREF="javazoom/jl/converter/Converter.PrintWriterProgressListener.html">Converter.PrintWriterProgressListener</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/converter/Converter.ProgressListener.html"><B>Converter.ProgressListener</B></A> - interface javazoom.jl.converter.<A HREF="javazoom/jl/converter/Converter.ProgressListener.html">Converter.ProgressListener</A>.<DD>This interface is used by the Converter to provide
 notification of tasks being carried out by the converter,
 and to provide new information as it becomes available.<DT><A HREF="javazoom/jl/converter/Converter.html#Converter()"><B>Converter()</B></A> - 
Constructor for class javazoom.jl.converter.<A HREF="javazoom/jl/converter/Converter.html">Converter</A>
<DD>Creates a new converter instance.
<DT><A HREF="javazoom/jl/converter/Converter.ProgressListener.html#converterException(java.lang.Throwable)"><B>converterException(Throwable)</B></A> - 
Method in interface javazoom.jl.converter.<A HREF="javazoom/jl/converter/Converter.ProgressListener.html">Converter.ProgressListener</A>
<DD>Called when an exception is thrown during while converting
 a frame.
<DT><A HREF="javazoom/jl/converter/Converter.PrintWriterProgressListener.html#converterException(java.lang.Throwable)"><B>converterException(Throwable)</B></A> - 
Method in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/Converter.PrintWriterProgressListener.html">Converter.PrintWriterProgressListener</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/converter/Converter.ProgressListener.html#converterUpdate(int, int, int)"><B>converterUpdate(int, int, int)</B></A> - 
Method in interface javazoom.jl.converter.<A HREF="javazoom/jl/converter/Converter.ProgressListener.html">Converter.ProgressListener</A>
<DD>Notifies the listener that new information is available.
<DT><A HREF="javazoom/jl/converter/Converter.PrintWriterProgressListener.html#converterUpdate(int, int, int)"><B>converterUpdate(int, int, int)</B></A> - 
Method in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/Converter.PrintWriterProgressListener.html">Converter.PrintWriterProgressListener</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/Header.html#copyright()"><B>copyright()</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Header.html">Header</A>
<DD>Returns Copyright.
<DT><A HREF="javazoom/jl/converter/Converter.html#countFrames(java.io.InputStream)"><B>countFrames(InputStream)</B></A> - 
Method in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/Converter.html">Converter</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/Crc16.html"><B>Crc16</B></A> - class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Crc16.html">Crc16</A>.<DD>16-Bit CRC checksum<DT><A HREF="javazoom/jl/decoder/Crc16.html#Crc16()"><B>Crc16()</B></A> - 
Constructor for class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Crc16.html">Crc16</A>
<DD>Dummy Constructor
<DT><A HREF="javazoom/jl/player/AudioDeviceFactory.html#createAudioDevice()"><B>createAudioDevice()</B></A> - 
Method in class javazoom.jl.player.<A HREF="javazoom/jl/player/AudioDeviceFactory.html">AudioDeviceFactory</A>
<DD>Creates a new <code>AudioDevice</code>.
<DT><A HREF="javazoom/jl/player/JavaSoundAudioDeviceFactory.html#createAudioDevice()"><B>createAudioDevice()</B></A> - 
Method in class javazoom.jl.player.<A HREF="javazoom/jl/player/JavaSoundAudioDeviceFactory.html">JavaSoundAudioDeviceFactory</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/player/FactoryRegistry.html#createAudioDevice()"><B>createAudioDevice()</B></A> - 
Method in class javazoom.jl.player.<A HREF="javazoom/jl/player/FactoryRegistry.html">FactoryRegistry</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/player/JavaSoundAudioDeviceFactory.html#createAudioDeviceImpl()"><B>createAudioDeviceImpl()</B></A> - 
Method in class javazoom.jl.player.<A HREF="javazoom/jl/player/JavaSoundAudioDeviceFactory.html">JavaSoundAudioDeviceFactory</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/player/jlp.html#createInstance(java.lang.String[])"><B>createInstance(String[])</B></A> - 
Static method in class javazoom.jl.player.<A HREF="javazoom/jl/player/jlp.html">jlp</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/player/PlayerApplet.html#createPlayerThread()"><B>createPlayerThread()</B></A> - 
Method in class javazoom.jl.player.<A HREF="javazoom/jl/player/PlayerApplet.html">PlayerApplet</A>
<DD>Creates a new thread used to run the audio player.
<DT><A HREF="javazoom/jl/player/JavaSoundAudioDevice.html#createSource()"><B>createSource()</B></A> - 
Method in class javazoom.jl.player.<A HREF="javazoom/jl/player/JavaSoundAudioDevice.html">JavaSoundAudioDevice</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/converter/RiffFile.html#CurrentFileMode()"><B>CurrentFileMode()</B></A> - 
Method in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/RiffFile.html">RiffFile</A>
<DD>Return File Mode.
<DT><A HREF="javazoom/jl/converter/RiffFile.html#CurrentFilePosition()"><B>CurrentFilePosition()</B></A> - 
Method in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/RiffFile.html">RiffFile</A>
<DD>Return File Position.
<DT><A HREF="javazoom/jl/converter/WaveFile.html#CurrentFilePosition()"><B>CurrentFilePosition()</B></A> - 
Method in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/WaveFile.html">WaveFile</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_D_"><!-- --></A><H2>
<B>D</B></H2>
<DL>
<DT><A HREF="javazoom/jl/converter/RiffFile.html#DDC_FAILURE"><B>DDC_FAILURE</B></A> - 
Static variable in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/RiffFile.html">RiffFile</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/converter/RiffFile.html#DDC_FILE_ERROR"><B>DDC_FILE_ERROR</B></A> - 
Static variable in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/RiffFile.html">RiffFile</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/converter/RiffFile.html#DDC_INVALID_CALL"><B>DDC_INVALID_CALL</B></A> - 
Static variable in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/RiffFile.html">RiffFile</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/converter/RiffFile.html#DDC_INVALID_FILE"><B>DDC_INVALID_FILE</B></A> - 
Static variable in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/RiffFile.html">RiffFile</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/converter/RiffFile.html#DDC_OUT_OF_MEMORY"><B>DDC_OUT_OF_MEMORY</B></A> - 
Static variable in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/RiffFile.html">RiffFile</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/converter/RiffFile.html#DDC_SUCCESS"><B>DDC_SUCCESS</B></A> - 
Static variable in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/RiffFile.html">RiffFile</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/converter/RiffFile.html#DDC_USER_ABORT"><B>DDC_USER_ABORT</B></A> - 
Static variable in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/RiffFile.html">RiffFile</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/converter/Converter.PrintWriterProgressListener.html#DEBUG_DETAIL"><B>DEBUG_DETAIL</B></A> - 
Static variable in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/Converter.PrintWriterProgressListener.html">Converter.PrintWriterProgressListener</A>
<DD>Debug detail.
<DT><A HREF="javazoom/jl/converter/Converter.ProgressListener.html#decodedFrame(int, javazoom.jl.decoder.Header, javazoom.jl.decoder.Obuffer)"><B>decodedFrame(int, Header, Obuffer)</B></A> - 
Method in interface javazoom.jl.converter.<A HREF="javazoom/jl/converter/Converter.ProgressListener.html">Converter.ProgressListener</A>
<DD>This method is called after a frame has been decoded.
<DT><A HREF="javazoom/jl/converter/Converter.PrintWriterProgressListener.html#decodedFrame(int, javazoom.jl.decoder.Header, javazoom.jl.decoder.Obuffer)"><B>decodedFrame(int, Header, Obuffer)</B></A> - 
Method in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/Converter.PrintWriterProgressListener.html">Converter.PrintWriterProgressListener</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/FrameDecoder.html#decodeFrame()"><B>decodeFrame()</B></A> - 
Method in interface javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/FrameDecoder.html">FrameDecoder</A>
<DD>Decodes one frame of MPEG audio.
<DT><A HREF="javazoom/jl/player/Player.html#decodeFrame()"><B>decodeFrame()</B></A> - 
Method in class javazoom.jl.player.<A HREF="javazoom/jl/player/Player.html">Player</A>
<DD>Decodes a single frame.
<DT><A HREF="javazoom/jl/player/advanced/AdvancedPlayer.html#decodeFrame()"><B>decodeFrame()</B></A> - 
Method in class javazoom.jl.player.advanced.<A HREF="javazoom/jl/player/advanced/AdvancedPlayer.html">AdvancedPlayer</A>
<DD>Decodes a single frame.
<DT><A HREF="javazoom/jl/decoder/Decoder.html#decodeFrame(javazoom.jl.decoder.Header, javazoom.jl.decoder.Bitstream)"><B>decodeFrame(Header, Bitstream)</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Decoder.html">Decoder</A>
<DD>Decodes one frame from an MPEG audio bitstream.
<DT><A HREF="javazoom/jl/decoder/Decoder.html"><B>Decoder</B></A> - class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Decoder.html">Decoder</A>.<DD>The <code>Decoder</code> class encapsulates the details of
 decoding an MPEG audio frame.<DT><A HREF="javazoom/jl/decoder/JavaLayerErrors.html#DECODER_ERROR"><B>DECODER_ERROR</B></A> - 
Static variable in interface javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/JavaLayerErrors.html">JavaLayerErrors</A>
<DD>The first decoder error code.
<DT><A HREF="javazoom/jl/decoder/Decoder.Params.html"><B>Decoder.Params</B></A> - class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Decoder.Params.html">Decoder.Params</A>.<DD>The <code>Params</code> class presents the customizable
 aspects of the decoder.<DT><A HREF="javazoom/jl/decoder/Decoder.Params.html#Decoder.Params()"><B>Decoder.Params()</B></A> - 
Constructor for class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Decoder.Params.html">Decoder.Params</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/Decoder.html#Decoder()"><B>Decoder()</B></A> - 
Constructor for class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Decoder.html">Decoder</A>
<DD>Creates a new <code>Decoder</code> instance with default 
 parameters.
<DT><A HREF="javazoom/jl/decoder/Decoder.html#Decoder(javazoom.jl.decoder.Decoder.Params)"><B>Decoder(Decoder.Params)</B></A> - 
Constructor for class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Decoder.html">Decoder</A>
<DD>Creates a new <code>Decoder</code> instance with default 
 parameters.
<DT><A HREF="javazoom/jl/decoder/DecoderErrors.html"><B>DecoderErrors</B></A> - interface javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/DecoderErrors.html">DecoderErrors</A>.<DD>This interface provides constants describing the error
 codes used by the Decoder to indicate errors.<DT><A HREF="javazoom/jl/decoder/DecoderException.html"><B>DecoderException</B></A> - exception javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/DecoderException.html">DecoderException</A>.<DD>The <code>DecoderException</code> represents the class of
 errors that can occur when decoding MPEG audio.<DT><A HREF="javazoom/jl/decoder/DecoderException.html#DecoderException(int, java.lang.Throwable)"><B>DecoderException(int, Throwable)</B></A> - 
Constructor for class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/DecoderException.html">DecoderException</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/DecoderException.html#DecoderException(java.lang.String, java.lang.Throwable)"><B>DecoderException(String, Throwable)</B></A> - 
Constructor for class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/DecoderException.html">DecoderException</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/JavaLayerUtils.html#deserialize(java.io.InputStream)"><B>deserialize(InputStream)</B></A> - 
Static method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/JavaLayerUtils.html">JavaLayerUtils</A>
<DD>Deserializes an object from the given <code>InputStream</code>.
<DT><A HREF="javazoom/jl/decoder/JavaLayerUtils.html#deserialize(java.io.InputStream, java.lang.Class)"><B>deserialize(InputStream, Class)</B></A> - 
Static method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/JavaLayerUtils.html">JavaLayerUtils</A>
<DD>Deserializes the object contained in the given input stream.
<DT><A HREF="javazoom/jl/decoder/JavaLayerUtils.html#deserializeArray(java.io.InputStream, java.lang.Class, int)"><B>deserializeArray(InputStream, Class, int)</B></A> - 
Static method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/JavaLayerUtils.html">JavaLayerUtils</A>
<DD>Deserializes an array from a given <code>InputStream</code>.
<DT><A HREF="javazoom/jl/decoder/JavaLayerUtils.html#deserializeArrayResource(java.lang.String, java.lang.Class, int)"><B>deserializeArrayResource(String, Class, int)</B></A> - 
Static method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/JavaLayerUtils.html">JavaLayerUtils</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/player/PlayerApplet.html#destroy()"><B>destroy()</B></A> - 
Method in class javazoom.jl.player.<A HREF="javazoom/jl/player/PlayerApplet.html">PlayerApplet</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/OutputChannels.html#DOWNMIX"><B>DOWNMIX</B></A> - 
Static variable in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/OutputChannels.html">OutputChannels</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/OutputChannels.html#DOWNMIX_CHANNELS"><B>DOWNMIX_CHANNELS</B></A> - 
Static variable in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/OutputChannels.html">OutputChannels</A>
<DD>Flag to indicate output is mono.
<DT><A HREF="javazoom/jl/decoder/Header.html#DUAL_CHANNEL"><B>DUAL_CHANNEL</B></A> - 
Static variable in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Header.html">Header</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_E_"><!-- --></A><H2>
<B>E</B></H2>
<DL>
<DT><A HREF="javazoom/jl/decoder/Equalizer.html"><B>Equalizer</B></A> - class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Equalizer.html">Equalizer</A>.<DD>The <code>Equalizer</code> class can be used to specify
 equalization settings for the MPEG audio decoder.<DT><A HREF="javazoom/jl/decoder/Equalizer.EQFunction.html"><B>Equalizer.EQFunction</B></A> - class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Equalizer.EQFunction.html">Equalizer.EQFunction</A>.<DD>&nbsp;<DT><A HREF="javazoom/jl/decoder/Equalizer.EQFunction.html#Equalizer.EQFunction()"><B>Equalizer.EQFunction()</B></A> - 
Constructor for class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Equalizer.EQFunction.html">Equalizer.EQFunction</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/Equalizer.html#Equalizer()"><B>Equalizer()</B></A> - 
Constructor for class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Equalizer.html">Equalizer</A>
<DD>Creates a new <code>Equalizer</code> instance.
<DT><A HREF="javazoom/jl/decoder/Equalizer.html#Equalizer(javazoom.jl.decoder.Equalizer.EQFunction)"><B>Equalizer(Equalizer.EQFunction)</B></A> - 
Constructor for class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Equalizer.html">Equalizer</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/Equalizer.html#Equalizer(float[])"><B>Equalizer(float[])</B></A> - 
Constructor for class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Equalizer.html">Equalizer</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/OutputChannels.html#equals(java.lang.Object)"><B>equals(Object)</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/OutputChannels.html">OutputChannels</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/converter/RiffFile.html#Expect(java.lang.String, int)"><B>Expect(String, int)</B></A> - 
Method in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/RiffFile.html">RiffFile</A>
<DD>Expect NumBytes data.
<DT><A HREF="javazoom/jl/converter/Converter.PrintWriterProgressListener.html#EXPERT_DETAIL"><B>EXPERT_DETAIL</B></A> - 
Static variable in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/Converter.PrintWriterProgressListener.html">Converter.PrintWriterProgressListener</A>
<DD>Level of detail typically expected of expert
 users.
</DL>
<HR>
<A NAME="_F_"><!-- --></A><H2>
<B>F</B></H2>
<DL>
<DT><A HREF="javazoom/jl/player/FactoryRegistry.html#factories"><B>factories</B></A> - 
Variable in class javazoom.jl.player.<A HREF="javazoom/jl/player/FactoryRegistry.html">FactoryRegistry</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/player/FactoryRegistry.html"><B>FactoryRegistry</B></A> - class javazoom.jl.player.<A HREF="javazoom/jl/player/FactoryRegistry.html">FactoryRegistry</A>.<DD>The <code>FactoryRegistry</code> class stores the factories
 for all the audio device implementations available in the system.<DT><A HREF="javazoom/jl/player/FactoryRegistry.html#FactoryRegistry()"><B>FactoryRegistry()</B></A> - 
Constructor for class javazoom.jl.player.<A HREF="javazoom/jl/player/FactoryRegistry.html">FactoryRegistry</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/converter/RiffFile.html#file"><B>file</B></A> - 
Variable in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/RiffFile.html">RiffFile</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/player/AudioDeviceBase.html#flush()"><B>flush()</B></A> - 
Method in class javazoom.jl.player.<A HREF="javazoom/jl/player/AudioDeviceBase.html">AudioDeviceBase</A>
<DD>Waits for any buffered audio samples to be played by the
 audio device.
<DT><A HREF="javazoom/jl/player/AudioDevice.html#flush()"><B>flush()</B></A> - 
Method in interface javazoom.jl.player.<A HREF="javazoom/jl/player/AudioDevice.html">AudioDevice</A>
<DD>Blocks until all audio samples previously written to this audio device have
 been heard.
<DT><A HREF="javazoom/jl/player/AudioDeviceBase.html#flushImpl()"><B>flushImpl()</B></A> - 
Method in class javazoom.jl.player.<A HREF="javazoom/jl/player/AudioDeviceBase.html">AudioDeviceBase</A>
<DD>Template method to provide the implementation for 
 flushing any buffered audio data.
<DT><A HREF="javazoom/jl/player/JavaSoundAudioDevice.html#flushImpl()"><B>flushImpl()</B></A> - 
Method in class javazoom.jl.player.<A HREF="javazoom/jl/player/JavaSoundAudioDevice.html">JavaSoundAudioDevice</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/converter/RiffFile.html#fmode"><B>fmode</B></A> - 
Variable in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/RiffFile.html">RiffFile</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/converter/RiffFile.html#FourCC(java.lang.String)"><B>FourCC(String)</B></A> - 
Static method in class javazoom.jl.converter.<A HREF="javazoom/jl/converter/RiffFile.html">RiffFile</A>
<DD>Fill the header.
<DT><A HREF="javazoom/jl/decoder/Header.html#FOURTYEIGHT"><B>FOURTYEIGHT</B></A> - 
Static variable in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Header.html">Header</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/Header.html#FOURTYFOUR_POINT_ONE"><B>FOURTYFOUR_POINT_ONE</B></A> - 
Static variable in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Header.html">Header</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/FrameDecoder.html"><B>FrameDecoder</B></A> - interface javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/FrameDecoder.html">FrameDecoder</A>.<DD>Implementations of FrameDecoder are responsible for decoding
 an MPEG audio frame.<DT><A HREF="javazoom/jl/decoder/Header.html#framesize"><B>framesize</B></A> - 
Variable in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Header.html">Header</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/Header.html#frequencies"><B>frequencies</B></A> - 
Static variable in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Header.html">Header</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/Header.html#frequency()"><B>frequency()</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Header.html">Header</A>
<DD>Returns Frequency.
<DT><A HREF="javazoom/jl/decoder/OutputChannels.html#fromInt(int)"><B>fromInt(int)</B></A> - 
Static method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/OutputChannels.html">OutputChannels</A>
<DD>Creates an <code>OutputChannels</code> instance
 corresponding to the given channel code.
</DL>
<HR>
<A NAME="_G_"><!-- --></A><H2>
<B>G</B></H2>
<DL>
<DT><A HREF="javazoom/jl/decoder/Bitstream.html#get_bits(int)"><B>get_bits(int)</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Bitstream.html">Bitstream</A>
<DD>Read bits from buffer into the lower bits of an unsigned int.
<DT><A HREF="javazoom/jl/player/jlp.html#getAudioDevice()"><B>getAudioDevice()</B></A> - 
Method in class javazoom.jl.player.<A HREF="javazoom/jl/player/jlp.html">jlp</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/player/PlayerApplet.html#getAudioDevice()"><B>getAudioDevice()</B></A> - 
Method in class javazoom.jl.player.<A HREF="javazoom/jl/player/PlayerApplet.html">PlayerApplet</A>
<DD>Retrieves the <code>AudioDevice</code> instance that will
 be used to sound the audio data.
<DT><A HREF="javazoom/jl/player/PlayerApplet.html#getAudioFileName()"><B>getAudioFileName()</B></A> - 
Method in class javazoom.jl.player.<A HREF="javazoom/jl/player/PlayerApplet.html">PlayerApplet</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/player/JavaSoundAudioDevice.html#getAudioFormat()"><B>getAudioFormat()</B></A> - 
Method in class javazoom.jl.player.<A HREF="javazoom/jl/player/JavaSoundAudioDevice.html">JavaSoundAudioDevice</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/player/PlayerApplet.html#getAudioStream()"><B>getAudioStream()</B></A> - 
Method in class javazoom.jl.player.<A HREF="javazoom/jl/player/PlayerApplet.html">PlayerApplet</A>
<DD>Retrieves the InputStream that provides the MPEG audio
 stream data.
<DT><A HREF="javazoom/jl/player/PlayerApplet.html#getAudioURL()"><B>getAudioURL()</B></A> - 
Method in class javazoom.jl.player.<A HREF="javazoom/jl/player/PlayerApplet.html">PlayerApplet</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/Equalizer.html#getBand(int)"><B>getBand(int)</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Equalizer.html">Equalizer</A>
<DD>Retrieves the eq setting for a given band.
<DT><A HREF="javazoom/jl/decoder/Equalizer.EQFunction.html#getBand(int)"><B>getBand(int)</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Equalizer.EQFunction.html">Equalizer.EQFunction</A>
<DD>Returns the setting of a band in the equalizer.
<DT><A HREF="javazoom/jl/decoder/Equalizer.html#getBandCount()"><B>getBandCount()</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/Equalizer.html">Equalizer</A>
<DD>Retrieves the number of bands present in this equalizer.
<DT><A HREF="javazoom/jl/decoder/SampleBuffer.html#getBuffer()"><B>getBuffer()</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/SampleBuffer.html">SampleBuffer</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/SampleBuffer.html#getBufferLength()"><B>getBufferLength()</B></A> - 
Method in class javazoom.jl.decoder.<A HREF="javazoom/jl/decoder/SampleBuffer.html">SampleBuffer</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/player/JavaSoundAudioDevice.html#getByteArray(int)"><B>getByteArray(int)</B></A> - 
Method in class javazoom.jl.player.<A HREF="javazoom/jl/player/JavaSoundAudioDevice.html">JavaSoundAudioDevice</A>
<DD>&nbsp;
<DT><A HREF="javazoom/jl/decoder/SampleBuffer.html#getChannelC