Class FlacMetadataHeader
- java.lang.Object
-
- com.sedmelluq.discord.lavaplayer.container.flac.FlacMetadataHeader
-
public class FlacMetadataHeader extends java.lang.ObjectA header of FLAC metadata.
-
-
Field Summary
Fields Modifier and Type Field Description static intBLOCK_COMMENTstatic intBLOCK_SEEKTABLEintblockLengthLength of the block, current header excludedintblockTypeBlock type, see: https://xiph.org/flac/format.html#metadata_block_headerbooleanisLastBlockIf this header is for the last metadata block.static intLENGTH
-
Constructor Summary
Constructors Constructor Description FlacMetadataHeader(byte[] data)
-
-
-
Field Detail
-
LENGTH
public static final int LENGTH
- See Also:
- Constant Field Values
-
BLOCK_SEEKTABLE
public static final int BLOCK_SEEKTABLE
- See Also:
- Constant Field Values
-
BLOCK_COMMENT
public static final int BLOCK_COMMENT
- See Also:
- Constant Field Values
-
isLastBlock
public final boolean isLastBlock
If this header is for the last metadata block. If this is true, then the current metadata block is followed by frames.
-
blockType
public final int blockType
Block type, see: https://xiph.org/flac/format.html#metadata_block_header
-
blockLength
public final int blockLength
Length of the block, current header excluded
-
-