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/MP3Data.java
package mp3;

public class MP3Data {
	/**
	 * true if header was parsed and following data was computed
	 */
	public boolean header_parsed;
	/**
	 * number of channels
	 */
	public int stereo;
	/**
	 * sample rate
	 */
	public int samplerate;
	/**
	 * bitrate
	 */
	public int bitrate;
	/**
	 * mp3 frame type
	 */
	public int mode;
	/**
	 * mp3 frame type
	 */
	public int mode_ext;
	/**
	 * number of samples per mp3 frame
	 */
	public int framesize;

	/* this data is only computed if mpglib detects a Xing VBR header */

	/**
	 * number of samples in mp3 file.
	 */
	public int nsamp;
	/**
	 * total number of frames in mp3 file
	 */
	public int totalframes;

	/* this data is not currently computed by the mpglib routines */

	/**
	 * frames decoded counter
	 */
	public int framenum;
}