All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.dabasan.joglf.al.buffer.SoundBuffer Maven / Gradle / Ivy

There is a newer version: 11.7.0
Show newest version
package com.github.dabasan.joglf.al.buffer;

import java.nio.ByteBuffer;

/**
 * Sound buffer
 * 
 * @author Daba
 *
 */
public class SoundBuffer {
	private int format;
	private int size;
	private ByteBuffer data;
	private int freq;
	private int loop;

	public SoundBuffer() {
		format = 0;
		size = 0;
		freq = 0;
		loop = 0;
	}

	public int GetFormat() {
		return format;
	}
	public int GetSize() {
		return size;
	}
	public ByteBuffer GetData() {
		return data;
	}
	public int GetFreq() {
		return freq;
	}
	public int GetLoop() {
		return loop;
	}
	public void SetFormat(int format) {
		this.format = format;
	}
	public void SetSize(int size) {
		this.size = size;
	}
	public void SetData(ByteBuffer data) {
		this.data = data;
	}
	public void SetFreq(int freq) {
		this.freq = freq;
	}
	public void SetLoop(int loop) {
		this.loop = loop;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy