java.lang.Object | |
↳ | com.h6ah4i.android.media.standard.audiofx.StandardVisualizer |
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From interface
com.h6ah4i.android.media.audiofx.IVisualizer
|
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
StandardVisualizer(Context context, int audioSession) |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
synchronized int |
getCaptureSize()
Returns current capture size.
| ||||||||||
synchronized int[] |
getCaptureSizeRange()
Returns the capture size range.
| ||||||||||
synchronized boolean |
getEnabled()
Get current activation state of the visualizer.
| ||||||||||
synchronized int |
getFft(byte[] fft)
Returns a frequency capture of currently playing audio content.
| ||||||||||
synchronized int |
getMaxCaptureRate()
Returns the maximum capture rate for the callback capture method.
| ||||||||||
synchronized int |
getMeasurementMode()
Returns the current measurement modes performed by this audio effect
| ||||||||||
synchronized int |
getMeasurementPeakRms(IVisualizer.MeasurementPeakRms measurement)
Retrieves the latest peak and RMS measurement.
| ||||||||||
synchronized int |
getSamplingRate()
Returns the sampling rate of the captured audio.
| ||||||||||
synchronized int |
getScalingMode()
Returns the current scaling mode on the captured visualization data.
| ||||||||||
synchronized int |
getWaveForm(byte[] waveform)
Returns a waveform capture of currently playing audio content.
| ||||||||||
synchronized void |
release()
Release associated resources.
| ||||||||||
static int[] | sGetCaptureSizeRange() | ||||||||||
static int | sGetMaxCaptureRate() | ||||||||||
synchronized int |
setCaptureSize(int size)
Sets the capture size, i.e.
| ||||||||||
synchronized int |
setDataCaptureListener(IVisualizer.OnDataCaptureListener listener, int rate, boolean waveform, boolean fft)
Registers an OnDataCaptureListener interface and specifies the rate at
which the capture should be updated as well as the type of capture
requested.
| ||||||||||
synchronized int |
setEnabled(boolean enabled)
Enable or disable the visualization engine.
| ||||||||||
synchronized int |
setMeasurementMode(int mode)
Sets the combination of measurement modes to be performed by this audio
effect.
| ||||||||||
synchronized int |
setScalingMode(int mode)
Set the type of scaling applied on the captured visualization data.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
com.h6ah4i.android.media.IReleasable
| |||||||||||
From interface
com.h6ah4i.android.media.audiofx.IVisualizer
|
Returns current capture size.
IllegalStateException |
---|
Returns the capture size range.
IllegalStateException |
---|
Get current activation state of the visualizer.
Returns a frequency capture of currently playing audio content.
This method must be called when the Visualizer is enabled.
The capture is an 8-bit magnitude FFT, the frequency range covered being
0 (DC) to half of the sampling rate returned by
getSamplingRate()
. The capture returns the real and imaginary
parts of a number of frequency points equal to half of the capture size
plus one.
Note: only the real part is returned for the first point (DC) and the last point (sampling frequency / 2).
The layout in the returned byte array is as follows:
Index | 0 | 1 | 2 | 3 | 4 | 5 | ... | n - 2 | n - 1 |
Data | Rf0 | Rf(n/2) | Rf1 | If1 | Rf2 | If2 | ... | Rf(n-1)/2 | If(n-1)/2 |
fft | array of bytes where the FFT should be returned |
---|
SUCCESS
in case of success, ERROR_NO_MEMORY
,
ERROR_INVALID_OPERATION
or ERROR_DEAD_OBJECT
in
case of failure.IllegalStateException |
---|
Returns the maximum capture rate for the callback capture method. This is
the maximum value for the rate parameter of the
setDataCaptureListener(OnDataCaptureListener, int, boolean, boolean)
method.
IllegalStateException |
---|
Returns the current measurement modes performed by this audio effect
MEASUREMENT_MODE_NONE
(when no measurements are performed) or
MEASUREMENT_MODE_PEAK_RMS
.IllegalStateException |
---|
Retrieves the latest peak and RMS measurement. Sets the peak and RMS
fields of the supplied IVisualizer.MeasurementPeakRms
to the
latest measured values.
measurement | a non-null MeasurementPeakRms instance to store the measurement values. |
---|
SUCCESS
in case of success, ERROR_BAD_VALUE
,
ERROR_NO_MEMORY
, ERROR_INVALID_OPERATION
or
ERROR_DEAD_OBJECT
in case of failure.
Returns the sampling rate of the captured audio.
IllegalStateException |
---|
Returns the current scaling mode on the captured visualization data.
SCALING_MODE_NORMALIZED
and
SCALING_MODE_AS_PLAYED
.IllegalStateException |
---|
Returns a waveform capture of currently playing audio content. The
capture consists in a number of consecutive 8-bit (unsigned) mono PCM
samples equal to the capture size returned by getCaptureSize()
.
This method must be called when the Visualizer is enabled.
waveform | array of bytes where the waveform should be returned |
---|
SUCCESS
in case of success, ERROR_NO_MEMORY
,
ERROR_INVALID_OPERATION
or ERROR_DEAD_OBJECT
in
case of failure.IllegalStateException |
---|
Release associated resources.
Sets the capture size, i.e. the number of bytes returned by
getWaveForm(byte[])
and getFft(byte[])
methods. The
capture size must be a power of 2 in the range returned by
getCaptureSizeRange()
. This method must not be called when
the Visualizer is enabled.
size | requested capture size |
---|
SUCCESS
in case of success, ERROR_BAD_VALUE
in
case of failure.IllegalStateException |
---|
Registers an OnDataCaptureListener interface and specifies the rate at which the capture should be updated as well as the type of capture requested.
Call this method with a null listener to stop receiving the capture updates.
listener | OnDataCaptureListener registered |
---|---|
rate | rate in milliHertz at which the capture should be updated |
waveform | true if a waveform capture is requested: the onWaveFormDataCapture() method will be called on the OnDataCaptureListener interface. |
fft | true if a frequency capture is requested: the onFftDataCapture() method will be called on the OnDataCaptureListener interface. |
SUCCESS
in case of success, ERROR_NO_INIT
or
ERROR_BAD_VALUE
in case of failure.
Enable or disable the visualization engine.
enabled | requested enable state |
---|
SUCCESS
in case of success,
ERROR_INVALID_OPERATION
or ERROR_DEAD_OBJECT
in
case of failure.IllegalStateException |
---|
Sets the combination of measurement modes to be performed by this audio effect.
mode | a mask of the measurements to perform. The valid values are
MEASUREMENT_MODE_NONE (to cancel any measurement) or
MEASUREMENT_MODE_PEAK_RMS . |
---|
SUCCESS
in case of success, ERROR_BAD_VALUE
in
case of failure.IllegalStateException |
---|
Set the type of scaling applied on the captured visualization data.
mode | see SCALING_MODE_NORMALIZED and
SCALING_MODE_AS_PLAYED |
---|
SUCCESS
in case of success, ERROR_BAD_VALUE
in
case of failure.IllegalStateException |
---|