All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.media.jfxmedia.effects.AudioSpectrum Maven / Gradle / Ivy

There is a newer version: 24-ea+5
Show newest version
/*
 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.  Oracle designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

package com.sun.media.jfxmedia.effects;

public interface AudioSpectrum {
    /**
     * Returns whether audio spectrum is enabled or not.
     *
     * @return boolean value
     */
    public boolean getEnabled();

    /**
     * Turns on or off audio spectrum support.
     *
     * @param enable boolean value
     */
    public void setEnabled(boolean enabled);

    /**
     * Gets the number of bands in the audio spectrum
     *
     * @return int value
     */
    public int getBandCount();

    /**
     * Sets the number of bands in the audio spectrum
     *
     * @param bands integer value
     */
    public void setBandCount(int bands);

    /**
     * Returns the interval between AudioSpectrumEvents in seconds.
     *
     * @return double value
     */
    public double getInterval();

    /**
     * Set the interval between AudioSpectrumEvents in seconds.
     *
     * @param interval double value
     */
    public void setInterval(double interval);

    /**
     * Returns sensitivity threshold in dB. All lower values will be set to this.
     *
     * @return int value
     */
    public int getSensitivityThreshold();

    /**
     * Sets sensitivity threshold in dB. All lower values will be set to this.
     * Allowed values: <= 0
     *
     * @param threshold int value
     */
    public void setSensitivityThreshold(int threshold);

    /**
     * Returns an array of the last available magnitudes. The size of the array equals
     * the number of bands set by the {@link #setBandCount(int) setBandCount(int)} method.
     * A newly created array contains {@link Float#NEGATIVE_INFINITY Float.NEGATIVE_INFINITY}
     * values. When the number of bands is 0 this method returns an empty array.
     * If a non-null array large enough to hold the values is passed in, it will
     * be used; otherwise a newly allocated array will be returned.
     *
     * @param magnitudes An optionally preallocated double array.
     * @return array of float values.
     */
    public float[] getMagnitudes(float[] magnitudes);

    /**
     * Returns an array of the last available phases. The size of the array equals
     * the number of bands set by the {@link #setBandCount(int) setBandCount(int)}
     * method. A newly created array contains 0.0 values. When the number of bands
     * is 0 this method returns an empty array. If a non-null array large enough
     * to hold the values is passed in, it will be used; otherwise a newly
     * allocated array will be returned.
     *
     * @param phases An optionally preallocated double array.
     * @return array of float values.
     */
    public float[] getPhases(float[] phases);
}