--- old/src/java.desktop/share/classes/com/sun/media/sound/SoftPointResampler.java 2016-08-12 17:02:51.000000000 +0300 +++ new/src/java.desktop/share/classes/com/sun/media/sound/SoftPointResampler.java 2016-08-12 17:02:51.000000000 +0300 @@ -22,6 +22,7 @@ * or visit www.oracle.com if you need additional information or have any * questions. */ + package com.sun.media.sound; /** @@ -31,13 +32,15 @@ */ public final class SoftPointResampler extends SoftAbstractResampler { + @Override public int getPadding() { return 100; } + @Override public void interpolate(float[] in, float[] in_offset, float in_end, - float[] startpitch, float pitchstep, float[] out, int[] out_offset, - int out_end) { + float[] startpitch, float pitchstep, float[] out, int[] out_offset, + int out_end) { float pitch = startpitch[0]; float ix = in_offset[0]; int ox = out_offset[0]; @@ -58,6 +61,5 @@ in_offset[0] = ix; out_offset[0] = ox; startpitch[0] = pitch; - } }