Searched defs:pitch (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelOscillatorStream.java38 public void setPitch(float pitch); // Pitch is in cents! argument
H A DAudioFloatFormatConverter.java237 private final float[] pitch = new float[1]; field in class:AudioFloatFormatConverter.AudioFloatInputStreamResampler
297 pitch[0] = sourceFormat.getSampleRate() / format.getSampleRate();
323 ais.mark((int) (readlimit * pitch[0]));
415 resampler.interpolate(buff, ix, in_end, pitch, 0,
H A DModelAbstractOscillator.java43 protected float pitch = 6000; field in class:ModelAbstractOscillator
94 public void setPitch(float pitch) { argument
95 this.pitch = pitch;
99 return pitch;
H A DSoftAbstractResampler.java138 public void setPitch(float pitch) { argument
140 this.pitch = (float) Math.pow(2f,
141 (pitchcorrection + pitch) / 1200.0f)
145 (pitchcorrection + pitch) * (Math.log(2.0) / 1200.0))
384 float in_end, float[] pitch, float pitchstep, float[] out,
383 interpolate(float[] in, float[] in_offset, float in_end, float[] pitch, float pitchstep, float[] out, int[] out_offset, int out_end) argument
H A DSoftMixingDataLine.java64 private final float[] pitch = new float[1]; field in class:SoftMixingDataLine.AudioFloatInputStreamResampler
124 pitch[0] = sourceFormat.getSampleRate() / format.getSampleRate();
150 ais.mark((int) (readlimit * pitch[0]));
241 resampler.interpolate(buff, ix, in_end, pitch, 0,
H A DSoftChannel.java131 double[] pitch = co_midi_pitch; field in class:SoftChannel.MidiControlObject
138 if (name.equals("pitch"))
139 return pitch;
840 new ModelIdentifier("osc", "pitch")));
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftTuning/
H A DRealTimeTuning.java39 public float pitch = 0; field in class:RealTimeTuning.PitchSpy
54 pitch = 0;
58 pitch = 0;
63 pitch = noteNumber * 100;
72 pitch = ipitch;
151 // Create test instrument which we can use to monitor pitch changes
180 assertTrue(Math.abs(pitchspy.pitch - (targetNote * 100.0)) < 0.001);
187 assertTrue(Math.abs(pitchspy.pitch - targetPitch) < 0.001);
189 assertTrue(Math.abs(pitchspy.pitch - (targetNote * 100.0)) < 0.001);
194 assertTrue(Math.abs(pitchspy.pitch
[all...]
/openjdk7/jaxp/src/org/w3c/dom/css/
H A DCSS2Properties.java1373 * See the pitch property definition in CSS2.
1377 * See the pitch property definition in CSS2.
1383 public void setPitch(String pitch) argument
1387 * See the pitch-range property definition in CSS2.
1391 * See the pitch-range property definition in CSS2.

Completed in 1707 milliseconds