Searched refs:BassBoost (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/media/java/android/media/audiofx/
H A DBassBoost.java28 * <p>An application creates a BassBoost object to instantiate and control a bass boost engine in
30 * <p>The methods, parameter types and units exposed by the BassBoost implementation are directly
33 * <p>To attach the BassBoost to a particular AudioTrack or MediaPlayer, specify the audio session
34 * ID of this AudioTrack or MediaPlayer when constructing the BassBoost.
35 * <p>NOTE: attaching a BassBoost to the global audio output mix by use of session 0 is deprecated.
41 public class BassBoost extends AudioEffect { class in inherits:AudioEffect
43 private final static String TAG = "BassBoost";
53 * {@link android.media.audiofx.BassBoost.OnParameterChangeListener}
79 * @param priority the priority level requested by the application for controlling the BassBoost
83 * @param audioSession system wide unique audio session identifier. The BassBoost wil
91 public BassBoost(int priority, int audioSession) method in class:BassBoost
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
H A DMediaBassBoostTest.java26 import android.media.audiofx.BassBoost;
49 private BassBoost mBassBoost = null;
93 BassBoost bb = null;
95 bb = new BassBoost(0, 0);
96 assertNotNull(msg + ": could not create BassBoost", bb);
100 msg = msg.concat(": BassBoost not initialized");
104 msg = msg.concat(": BassBoost not found");
160 BassBoost.Settings settings = mBassBoost.getProperties();
162 settings = new BassBoost.Settings(str);
191 mBassBoost = new BassBoost(
[all...]
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
H A DBassBoostTest.java41 import android.media.audiofx.BassBoost;
51 private BassBoost mBassBoost = null;
57 private static HashMap<Integer, BassBoost> sInstances = new HashMap<Integer, BassBoost>(10);
161 private BassBoost mBassBoost;
163 public BassBoostParam(BassBoost bassboost, int min, int max, SeekBar seekBar, TextView textView) {
187 mBassBoost = (BassBoost)effect;
230 mBassBoost = new BassBoost(0, session);
232 Log.e(TAG,"BassBoost effect not supported");
234 Log.e(TAG,"BassBoost canno
[all...]

Completed in 109 milliseconds