HomeSort by relevance Sort by last modified time
    Searched full:environmentalreverb (Results 1 - 25 of 42) sorted by null

1 2

  /frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
EnvReverbTest.java 40 import android.media.audiofx.EnvironmentalReverb;
51 private EnvironmentalReverb mReverb;
55 private static HashMap<Integer, EnvironmentalReverb> sInstances = new HashMap<Integer, EnvironmentalReverb>(10);
272 private EnvironmentalReverb mReverb;
274 public EnvReverbParam(EnvironmentalReverb reverb, int min, int max, SeekBar seekBar, TextView textView, String unit) {
291 mReverb = (EnvironmentalReverb)reverb;
297 public RoomLevelParam(EnvironmentalReverb reverb, SeekBar seekBar, TextView textView) {
319 public RoomHFLevelParam(EnvironmentalReverb reverb, SeekBar seekBar, TextView textView) {
341 public DecayTimeParam(EnvironmentalReverb reverb, SeekBar seekBar, TextView textView)
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
EnvReverbTest.java 22 import android.media.audiofx.EnvironmentalReverb;
35 private EnvironmentalReverb mReverb = null;
36 private EnvironmentalReverb mReverb2 = null;
56 EnvironmentalReverb envReverb = null;
58 envReverb = new EnvironmentalReverb(0, 0);
59 assertNotNull("could not create EnvironmentalReverb", envReverb);
63 fail("EnvironmentalReverb not initialized");
66 fail("EnvironmentalReverb not found");
249 EnvironmentalReverb.Settings settings = mReverb.getProperties();
251 settings = new EnvironmentalReverb.Settings(str)
    [all...]
AudioEffectTest.java 28 import android.media.audiofx.EnvironmentalReverb;
464 int param = EnvironmentalReverb.PARAM_DECAY_TIME;
524 int param = EnvironmentalReverb.PARAM_DECAY_TIME;
559 param[0] = EnvironmentalReverb.PARAM_DECAY_TIME;
623 param[0] = EnvironmentalReverb.PARAM_DECAY_TIME;
    [all...]
  /frameworks/base/media/java/android/media/audiofx/
EnvironmentalReverb.java 39 * The EnvironmentalReverb class allows an application to control each reverb engine property in a
43 * <p>An application creates a EnvironmentalReverb object to instantiate and control a reverb engine
45 * <p>The methods, parameter types and units exposed by the EnvironmentalReverb implementation are
49 * <p>The EnvironmentalReverb is an output mix auxiliary effect and should be created on
60 public class EnvironmentalReverb extends AudioEffect {
62 private final static String TAG = "EnvironmentalReverb";
81 * {@link android.media.audiofx.EnvironmentalReverb.OnParameterChangeListener}
131 * EnvironmentalReverb engine. As the same engine can be shared by several applications, this
135 * is not 0, the EnvironmentalReverb will be attached to the MediaPlayer or AudioTrack in the
136 * same audio session. Otherwise, the EnvironmentalReverb will apply to the output mix
    [all...]
PresetReverb.java 43 * {@link android.media.audiofx.EnvironmentalReverb} class.
AudioEffect.java 41 * <li> {@link android.media.audiofx.EnvironmentalReverb}</li>
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
MediaEnvReverbTest.java 26 import android.media.audiofx.EnvironmentalReverb;
62 private EnvironmentalReverb mReverb = null;
106 EnvironmentalReverb reverb = null;
108 reverb = new EnvironmentalReverb(0, 0);
109 assertNotNull(msg + ": could not create EnvironmentalReverb", reverb);
113 msg = msg.concat(": EnvironmentalReverb not initialized");
117 msg = msg.concat(": EnvironmentalReverb not found");
314 EnvironmentalReverb.Settings settings = mReverb.getProperties();
320 settings = new EnvironmentalReverb.Settings(str);
451 // create reverb with UUID instead of EnvironmentalReverb constructor otherwise a
    [all...]
MediaAudioEffectTest.java 27 import android.media.audiofx.EnvironmentalReverb;
546 if (effect.setParameter(EnvironmentalReverb.PARAM_DECAY_TIME, 0)
648 param[0] = EnvironmentalReverb.PARAM_DECAY_TIME;
    [all...]
  /frameworks/wilhelm/src/android/
OutputMix_to_android.cpp 49 // initialize EnvironmentalReverb
android_Effect.h 62 * EnvironmentalReverb functions
android_Effect.cpp 397 SL_LOGE("EnvironmentalReverb effect initialization failed");
  /frameworks/wilhelm/src/
interfaces.c 44 "ENVIRONMENTALREVERB",
  /frameworks/wilhelm/src/ut/
OpenSLESUT.c 62 _(ENVIRONMENTALREVERB),
  /frameworks/wilhelm/src/itf/
IEnvironmentalReverb.c 17 /* EnvironmentalReverb implementation */
33 * returns true if this interface is not associated with an initialized EnvironmentalReverb effect
787 SL_LOGE("EnvironmentalReverb initialization failed.");
  /frameworks/base/media/java/android/media/
AudioTrack.java     [all...]
MediaPlayer.java     [all...]
  /development/ndk/platforms/android-14/include/SLES/
OpenSLES.h     [all...]
  /development/ndk/platforms/android-9/include/SLES/
OpenSLES.h     [all...]
  /frameworks/wilhelm/include/SLES/
OpenSLES.h     [all...]
  /prebuilts/ndk/5/platforms/android-9/arch-arm/usr/include/SLES/
OpenSLES.h     [all...]
  /prebuilts/ndk/6/platforms/android-9/arch-arm/usr/include/SLES/
OpenSLES.h     [all...]
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/SLES/
OpenSLES.h     [all...]
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/SLES/
OpenSLES.h     [all...]
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/SLES/
OpenSLES.h     [all...]
  /prebuilts/ndk/7/platforms/android-9/arch-arm/usr/include/SLES/
OpenSLES.h     [all...]

Completed in 665 milliseconds

1 2