Searched refs:Equalizer (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
H A DEqualizerTest.java42 import android.media.audiofx.Equalizer;
53 private Equalizer mEqualizer;
59 private static HashMap<Integer, Equalizer> sInstances = new HashMap<Integer, Equalizer>(10);
237 private Equalizer mEqualizer;
239 public EqualizerParam(Equalizer equalizer, int min, int max, SeekBar seekBar, TextView textView, String unit) {
257 mEqualizer = (Equalizer)eq;
264 public BandLevelParam(Equalizer equalizer, int band, short min, short max, SeekBar seekBar, TextView textView) {
290 public PresetParam(Equalizer equalizer, short min, short max, SeekBar seekBar, TextView textView) {
326 Equalizer
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
H A DMediaEqualizerTest.java26 import android.media.audiofx.Equalizer;
53 private Equalizer mEqualizer = null;
97 Equalizer eq = null;
99 eq = new Equalizer(0, 0);
100 assertNotNull(msg + ": could not create Equalizer", eq);
104 msg = msg.concat(": Equalizer not initialized");
108 msg = msg.concat(": Equalizer not found");
229 Equalizer.Settings settings = mEqualizer.getProperties();
231 settings = new Equalizer.Settings(str);
260 mEqualizer = new Equalizer(
[all...]
H A DMediaAudioEffectTest.java28 import android.media.audiofx.Equalizer;
269 msg = msg.concat(": Equalizer not found");
302 msg = msg.concat(": Equalizer not found");
303 loge(msg, ": Equalizer not found");
334 msg = msg.concat(": Equalizer not found");
335 loge(msg, ": Equalizer not found");
381 msg = msg.concat(": Equalizer not found");
382 loge(msg, ": Equalizer not found");
421 msg = msg.concat(": Equalizer not found");
422 loge(msg, ": Equalizer no
[all...]
/frameworks/base/media/java/android/media/audiofx/
H A DEqualizer.java26 * An Equalizer is used to alter the frequency response of a particular music source or of the main
28 * <p>An application creates an Equalizer object to instantiate and control an Equalizer engine
31 * <p>The methods, parameter types and units exposed by the Equalizer implementation are directly
34 * <p>To attach the Equalizer to a particular AudioTrack or MediaPlayer, specify the audio session
35 * ID of this AudioTrack or MediaPlayer when constructing the Equalizer.
36 * <p>NOTE: attaching an Equalizer to the global audio output mix by use of session 0 is deprecated.
42 public class Equalizer extends AudioEffect { class in inherits:AudioEffect
44 private final static String TAG = "Equalizer";
66 * {@link android.media.audiofx.Equalizer
136 public Equalizer(int priority, int audioSession) method in class:Equalizer
[all...]

Completed in 125 milliseconds