/* For Copyright and License see LICENSE.txt and COPYING.txt in the root directory */ package com.nerdscentral.audio.combine; import com.nerdscentral.audio.core.SFConstants; import com.nerdscentral.audio.core.SFData; import com.nerdscentral.audio.core.SFSignal; import com.nerdscentral.sython.Caster; import com.nerdscentral.sython.SFPL_Operator; import com.nerdscentral.sython.SFPL_RuntimeException; public class SF_RoundOff implements SFPL_Operator { private final static int rollOffSamples = (int) (SFConstants.SAMPLE_RATE_MS * 20); /** * */ private static final long serialVersionUID = 1L; @Override public Object Interpret(final Object input) throws SFPL_RuntimeException { /* * Tapers 20ms linearly at the start and the end of a sample to remove clicks. */ SFSignal data = Caster.makeSFSignal(input); if (data.getLength() < rollOffSamples * 2) { return SFData.build(data.getLength()); } int len = data.getLength() - rollOffSamples; SFSignal out = data.replicateEmpty(); for (int i = 0; i < rollOffSamples; ++i) { out.setSample(i + len, data.getSample(i) * (1) / rollOffSamples); } for (int i = rollOffSamples; i < len; ++i) { out.setSample(i, data.getSample(i)); } for (int i = 0; i < rollOffSamples; ++i) { out.setSample(i + len, data.getSample(i + len) * (rollOffSamples - i) / rollOffSamples); } return out; } @Override public String Word() { return Messages.getString("SF_RoundOff.0"); //$NON-NLS-1$ } }