HomeSort by relevance Sort by last modified time
    Searched refs:inputCfg (Results 1 - 8 of 8) sorted by null

  /frameworks/base/media/libeffects/visualizer/
EffectVisualizer.cpp 90 if (pConfig->inputCfg.samplingRate != pConfig->outputCfg.samplingRate) return -EINVAL;
91 if (pConfig->inputCfg.channels != pConfig->outputCfg.channels) return -EINVAL;
92 if (pConfig->inputCfg.format != pConfig->outputCfg.format) return -EINVAL;
93 if (pConfig->inputCfg.channels != CHANNEL_STEREO) return -EINVAL;
96 if (pConfig->inputCfg.format != SAMPLE_FORMAT_PCM_S15) return -EINVAL;
120 pContext->mConfig.inputCfg.accessMode = EFFECT_BUFFER_ACCESS_READ;
121 pContext->mConfig.inputCfg.channels = CHANNEL_STEREO;
122 pContext->mConfig.inputCfg.format = SAMPLE_FORMAT_PCM_S15;
123 pContext->mConfig.inputCfg.samplingRate = 44100;
124 pContext->mConfig.inputCfg.bufferProvider.getBuffer = NULL
    [all...]
  /frameworks/base/media/libeffects/testlibs/
EffectEqualizer.cpp 228 CHECK_ARG(pConfig->inputCfg.samplingRate == pConfig->outputCfg.samplingRate);
229 CHECK_ARG(pConfig->inputCfg.channels == pConfig->outputCfg.channels);
230 CHECK_ARG(pConfig->inputCfg.format == pConfig->outputCfg.format);
231 CHECK_ARG((pConfig->inputCfg.channels == CHANNEL_MONO) || (pConfig->inputCfg.channels == CHANNEL_STEREO));
234 CHECK_ARG(pConfig->inputCfg.format == SAMPLE_FORMAT_PCM_S7_24
235 || pConfig->inputCfg.format == SAMPLE_FORMAT_PCM_S15);
238 if (pConfig->inputCfg.channels == CHANNEL_MONO) {
248 pConfig->inputCfg.samplingRate);
251 pConfig->inputCfg.format
    [all...]
EffectReverb.c 217 if (pRvbModule->config.inputCfg.channels == pRvbModule->config.outputCfg.channels) {
419 pRvbModule->config.inputCfg.samplingRate = 44100;
421 pRvbModule->config.inputCfg.channels = CHANNEL_MONO;
423 pRvbModule->config.inputCfg.channels = CHANNEL_STEREO;
425 pRvbModule->config.inputCfg.format = SAMPLE_FORMAT_PCM_S15;
426 pRvbModule->config.inputCfg.bufferProvider.getBuffer = NULL;
427 pRvbModule->config.inputCfg.bufferProvider.releaseBuffer = NULL;
428 pRvbModule->config.inputCfg.bufferProvider.cookie = NULL;
429 pRvbModule->config.inputCfg.accessMode = EFFECT_BUFFER_ACCESS_READ;
430 pRvbModule->config.inputCfg.mask = EFFECT_CONFIG_ALL
    [all...]
  /frameworks/base/media/libeffects/lvm/wrapper/Reverb/
EffectReverb.cpp 421 if (pContext->config.inputCfg.channels == CHANNEL_STEREO) {
423 } else if (pContext->config.inputCfg.channels != CHANNEL_MONO) {
609 CHECK_ARG(pConfig->inputCfg.samplingRate == pConfig->outputCfg.samplingRate);
610 CHECK_ARG(pConfig->inputCfg.format == pConfig->outputCfg.format);
611 CHECK_ARG((pContext->auxiliary && pConfig->inputCfg.channels == CHANNEL_MONO) ||
612 ((!pContext->auxiliary) && pConfig->inputCfg.channels == CHANNEL_STEREO));
616 CHECK_ARG(pConfig->inputCfg.format == SAMPLE_FORMAT_PCM_S15);
618 if(pConfig->inputCfg.samplingRate != 44100){
626 switch (pConfig->inputCfg.samplingRate) {
646 LOGV("\rReverb_Configure invalid sampling rate %d", pConfig->inputCfg.samplingRate)
    [all...]
  /frameworks/base/media/libeffects/lvm/wrapper/Bundle/
EffectBundle.cpp 495 pContext->config.inputCfg.accessMode = EFFECT_BUFFER_ACCESS_READ;
496 pContext->config.inputCfg.channels = CHANNEL_STEREO;
497 pContext->config.inputCfg.format = SAMPLE_FORMAT_PCM_S15;
498 pContext->config.inputCfg.samplingRate = 44100;
499 pContext->config.inputCfg.bufferProvider.getBuffer = NULL;
500 pContext->config.inputCfg.bufferProvider.releaseBuffer = NULL;
501 pContext->config.inputCfg.bufferProvider.cookie = NULL;
502 pContext->config.inputCfg.mask = EFFECT_CONFIG_ALL;
    [all...]
  /frameworks/base/services/audioflinger/
AudioFlinger.cpp     [all...]
AudioFlinger.h     [all...]
  /frameworks/base/include/media/
EffectApi.h     [all...]

Completed in 1204 milliseconds