File: DefaultMixer.java

package info (click to toggle)
libtritonus-java 20070428-14.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,088 kB
  • sloc: ansic: 53,818; java: 45,226; sh: 3,017; makefile: 1,174; xml: 823; cpp: 147
file content (12 lines) | stat: -rw-r--r-- 244 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
import	javax.sound.sampled.AudioSystem;
import	javax.sound.sampled.Mixer;


public class DefaultMixer
{
	public static void main(String[] args)
	{
		Mixer	mixer = AudioSystem.getMixer(null);
		System.out.println("default mixer:" + mixer);
	}
}