Home | History | Annotate | Download | only in android

Lines Matching refs:om

23 SLresult android_outputMix_create(COutputMix *om) {
24 SL_LOGV("Create outputMix=%p", om);
29 SLresult android_outputMix_realize(COutputMix *om, SLboolean async) {
31 SL_LOGV("Realize outputMix=%p", om);
35 if (memcmp(SL_IID_EQUALIZER, &om->mEqualizer.mEqDescriptor.type,
37 android_eq_init(AUDIO_SESSION_OUTPUT_MIX /*sessionId*/, &om->mEqualizer);
40 if (memcmp(SL_IID_BASSBOOST, &om->mBassBoost.mBassBoostDescriptor.type,
42 android_bb_init(AUDIO_SESSION_OUTPUT_MIX /*sessionId*/, &om->mBassBoost);
45 if (memcmp(SL_IID_PRESETREVERB, &om->mPresetReverb.mPresetReverbDescriptor.type,
47 android_prev_init(&om->mPresetReverb);
51 &om->mEnvironmentalReverb.mEnvironmentalReverbDescriptor.type,
53 android_erev_init(&om->mEnvironmentalReverb);
56 if (memcmp(SL_IID_VIRTUALIZER, &om->mVirtualizer.mVirtualizerDescriptor.type,
59 &om->mVirtualizer);
66 SLresult android_outputMix_destroy(COutputMix *om) {
67 SL_LOGV("Destroy outputMix=%p", om);