Searched refs:pitch (Results 1 - 22 of 22) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftPointResampler.java41 float pitch = startpitch[0];
49 ix += pitch;
54 ix += pitch;
55 pitch += pitchstep;
60 startpitch[0] = pitch;
H A DSoftLinearResampler.java42 float pitch = startpitch[0];
53 ix += pitch;
61 ix += pitch;
62 pitch += pitchstep;
67 startpitch[0] = pitch;
H A DSoftLinearResampler2.java44 float pitch = startpitch[0];
58 int p_pitch = (int) (pitch * (1 << 15));
61 pitch = p_pitch * (1f / (1 << 15));
84 ix += pitch;
97 ix += pitch;
99 pitch += pitchstep;
105 startpitch[0] = pitch;
H A DSoftCubicResampler.java41 float pitch = startpitch[0];
61 ix += pitch;
78 ix += pitch;
79 pitch += pitchstep;
84 startpitch[0] = pitch;
H A DSoftSincResampler.java87 float pitch = startpitch[0];
95 int p = (int) ((pitch - 1) * 10.0f);
110 ix += pitch;
115 int p = (int) ((pitch - 1) * 10.0f);
130 ix += pitch;
131 pitch += pitchstep;
136 startpitch[0] = pitch;
H A DSoftLanczosResampler.java80 float pitch = startpitch[0];
96 ix += pitch;
109 ix += pitch;
110 pitch += pitchstep;
115 startpitch[0] = pitch;
H A DModelOscillatorStream.java38 public void setPitch(float pitch); // Pitch is in cents! argument
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 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 DSoftVoice.java155 double[] pitch = co_osc_pitch;
159 if (name.equals("pitch"))
160 return pitch;
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/SoftCubicResampler/
H A DInterpolate.java48 float pitch = startpitch[0];
56 ix += pitch;
61 ix += pitch;
62 pitch += pitchstep;
67 startpitch[0] = pitch;
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftLanczosResampler/
H A DInterpolate.java48 float pitch = startpitch[0];
56 ix += pitch;
61 ix += pitch;
62 pitch += pitchstep;
67 startpitch[0] = pitch;
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftLinearResampler/
H A DInterpolate.java48 float pitch = startpitch[0];
56 ix += pitch;
61 ix += pitch;
62 pitch += pitchstep;
67 startpitch[0] = pitch;
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftLinearResampler2/
H A DInterpolate.java48 float pitch = startpitch[0];
56 ix += pitch;
61 ix += pitch;
62 pitch += pitchstep;
67 startpitch[0] = pitch;
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftPointResampler/
H A DInterpolate.java48 float pitch = startpitch[0];
56 ix += pitch;
61 ix += pitch;
62 pitch += pitchstep;
67 startpitch[0] = pitch;
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftSincResampler/
H A DInterpolate.java48 float pitch = startpitch[0];
56 ix += pitch;
61 ix += pitch;
62 pitch += pitchstep;
67 startpitch[0] = 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/jdk/src/share/native/sun/font/
H A DfreetypeScaler.c830 ftglyph->bitmap.pitch,
841 ftglyph->bitmap.pitch,
849 ftglyph->bitmap.pitch,
857 ftglyph->bitmap.pitch,
/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 62 milliseconds