Uses of Class
org.jaudiotagger.audio.asf.data.AsfHeader

Packages that use AsfHeader
org.jaudiotagger.audio.asf   
org.jaudiotagger.audio.asf.io   
org.jaudiotagger.audio.asf.util   
 

Uses of AsfHeader in org.jaudiotagger.audio.asf
 

Methods in org.jaudiotagger.audio.asf with parameters of type AsfHeader
private  boolean AsfFileReader.determineVariableBitrate(AsfHeader header)
          Determines if the "isVbr" field is set in the extended content description.
private  GenericAudioHeader AsfFileReader.getAudioHeader(AsfHeader header)
          Creates a generic audio header instance with provided data from header.
private  AsfTag AsfFileReader.getTag(AsfHeader header)
          Creates a tag instance with provided data from header.
 

Uses of AsfHeader in org.jaudiotagger.audio.asf.io
 

Methods in org.jaudiotagger.audio.asf.io that return AsfHeader
protected  AsfHeader AsfHeaderReader.createContainer(long streamPosition, java.math.BigInteger chunkLength, java.io.InputStream stream)
          This method is called by ChunkContainerReader.read(GUID, InputStream, long) in order to create the resulting object.
static AsfHeader AsfHeaderReader.readHeader(java.io.File file)
          This method extracts the full ASF-Header from the given file.
If no header could be extracted null is returned.
static AsfHeader AsfHeaderReader.readHeader(java.io.RandomAccessFile file)
          This method tries to extract a full ASF-header out of the given stream.
static AsfHeader AsfHeaderReader.readInfoHeader(java.io.RandomAccessFile file)
          This method tries to extract an ASF-header out of the given stream, which only contains information about the audio stream.
If no header could be extracted null is returned.
static AsfHeader AsfHeaderReader.readTagHeader(java.io.RandomAccessFile file)
          This method tries to extract an ASF-header out of the given stream, which only contains metadata.
If no header could be extracted null is returned.
 

Uses of AsfHeader in org.jaudiotagger.audio.asf.util
 

Methods in org.jaudiotagger.audio.asf.util with parameters of type AsfHeader
static AsfTag TagConverter.createTagOf(AsfHeader source)
          This method creates a Tagand fills it with the contents of the given AsfHeader.