Searched refs:FloatControl (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DPortMixer.java36 import javax.sound.sampled.FloatControl;
419 private static final class FloatCtrl extends FloatControl {
425 private final static FloatControl.Type[] FLOAT_CONTROL_TYPES = {
427 FloatControl.Type.BALANCE,
428 FloatControl.Type.MASTER_GAIN,
429 FloatControl.Type.PAN,
430 FloatControl.Type.VOLUME
443 private FloatCtrl(long controlID, FloatControl.Type typ,
467 private static final class FCT extends FloatControl.Type {
H A DSoftMixingDataLine.java37 import javax.sound.sampled.FloatControl;
49 public static final FloatControl.Type CHORUS_SEND = new FloatControl.Type(
297 private final class Gain extends FloatControl {
301 super(FloatControl.Type.MASTER_GAIN, -80f, 6.0206f, 80f / 128.0f,
336 private final class Balance extends FloatControl {
339 super(FloatControl.Type.BALANCE, -1.0f, 1.0f, (1.0f / 128.0f), -1,
350 private final class Pan extends FloatControl {
353 super(FloatControl.Type.PAN, -1.0f, 1.0f, (1.0f / 128.0f), -1,
368 private final class ReverbSend extends FloatControl {
[all...]
H A DDirectAudioDevice.java832 protected final class Gain extends FloatControl {
838 super(FloatControl.Type.MASTER_GAIN,
877 private final class Balance extends FloatControl {
880 super(FloatControl.Type.BALANCE, -1.0f, 1.0f, (1.0f / 128.0f), -1, 0.0f,
896 private final class Pan extends FloatControl {
899 super(FloatControl.Type.PAN, -1.0f, 1.0f, (1.0f / 128.0f), -1, 0.0f,
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DFloatControl.java29 * A <code>FloatControl</code> object provides control over a range of
33 * of <code>FloatControl</code> implement controls, such as gain and pan, that
35 * The <code>{@link FloatControl.Type}</code>
39 * The <code>FloatControl</code> abstract class provides methods to set and get
43 * new value over a specified period of time. <code>FloatControl</code> also
54 public abstract class FloatControl extends Control { class in inherits:Control
139 protected FloatControl(Type type, float minimum, float maximum, method in class:FloatControl
193 protected FloatControl(Type type, float minimum, float maximum, method in class:FloatControl
368 * An instance of the <code>FloatControl.Type</code> inner class identifies one kind of
398 * The <code>FloatControl</cod
[all...]

Completed in 1232 milliseconds