Home | History | Annotate | Download | only in android

Lines Matching refs:effect

263         SL_LOGE("BassBoost effect initialization failed");
281 SL_LOGE("Equalizer effect initialization failed");
331 SL_LOGE("Virtualizer effect initialization failed");
362 SL_LOGV("session is implicitly %d (aux effect)", AUDIO_SESSION_OUTPUT_MIX);
366 SL_LOGE("PresetReverb effect initialization failed");
374 // enable the effect if it has a preset loaded
383 // enable the effect if the preset is different from SL_REVERBPRESET_NONE
397 SL_LOGV("session is implicitly %d (aux effect)", AUDIO_SESSION_OUTPUT_MIX);
401 SL_LOGE("EnvironmentalReverb effect initialization failed");
520 SL_LOGE("invalid effect ID: no such effect attached to the OutputMix");
620 bool android_fx_initEffectObj(int sessionId, android::sp<android::AudioEffect>& effect,
624 effect = new android::AudioEffect(type, EFFECT_UUID_NULL,
626 0,// effect callback
631 android::status_t status = effect->initCheck();
633 effect.clear();
634 SL_LOGE("Effect initCheck() returned %d", status);
656 // request effect in the effects?
661 SL_LOGV("found effect %d %s", i, descriptor.name);
669 SL_LOGE("unable to find an implementation for the requested effect.");
676 // the requested effect wasn't found
743 // an error occurred, reset the effect descriptor
756 // does this effect already exist?
761 // create new effect
763 NULL, // not using type to create effect
766 0,// effect callback
771 // verify effect was successfully created before storing it
774 SL_LOGE("AudioEffect initCheck() returned %d, effect will not be stored", status);
859 * returns true if the given effect id is present in the AndroidEffect interface