HEX
Server: LiteSpeed
System: Linux s3604.bom1.stableserver.net 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
User: dmstechonline (1480)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/dmstechonline/whatsapp.dmstech.online/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;
}