HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //home/arjun/projects/buyercall/node_modules/lamejs/src/main/java/mp3/VBRTagData.java
package mp3;

/**
 * Structure to receive extracted header (toc may be null).
 * 
 * @author Ken
 * 
 */
public class VBRTagData {
	/**
	 * From MPEG header 0=MPEG2, 1=MPEG1.
	 */
	protected int hId;
	/**
	 * Sample rate determined from MPEG header.
	 */
	protected int samprate;
	/**
	 * From Vbr header data.
	 */
	protected int flags;
	/**
	 * Total bit stream frames from Vbr header data.
	 */
	public int frames;
	/**
	 * Total bit stream bytes from Vbr header data.
	 */
	protected int bytes;
	/**
	 * Encoded vbr scale from Vbr header data.
	 */
	protected int vbrScale;
	/**
	 * May be null if toc not desired.
	 */
	protected byte[] toc = new byte[VBRTag.NUMTOCENTRIES];
	/**
	 * Size of VBR header, in bytes.
	 */
	public int headersize;
	/**
	 * Encoder delay.
	 */
	public int encDelay;
	/**
	 * Encoder padding added at end of stream.
	 */
	public int encPadding;
}