HomeSort by relevance Sort by last modified time
    Searched refs:pConfig (Results 1 - 25 of 31) sorted by null

1 2

  /frameworks/base/media/libeffects/lvm/lib/StereoWidening/src/
LVCS_BypassMix.c 75 LVCS_BypassMix_t *pConfig = (LVCS_BypassMix_t *)&pInstance->BypassMix;
107 pConfig->Mixer_Instance.MixerStream[0].CallbackParam = 0;
108 pConfig->Mixer_Instance.MixerStream[0].pCallbackHandle = LVM_NULL;
109 pConfig->Mixer_Instance.MixerStream[0].pCallBack = LVM_NULL;
110 pConfig->Mixer_Instance.MixerStream[0].CallbackSet=1;
111 Current = LVC_Mixer_GetCurrent(&pConfig->Mixer_Instance.MixerStream[0]);
112 LVC_Mixer_Init(&pConfig->Mixer_Instance.MixerStream[0],(LVM_INT32)(Gain >> 15),Current);
113 LVC_Mixer_VarSlope_SetTimeConstant(&pConfig->Mixer_Instance.MixerStream[0],LVCS_BYPASS_MIXER_TC,pParams->SampleRate,2);
119 Current = LVC_Mixer_GetCurrent(&pConfig->Mixer_Instance.MixerStream[1]);
120 LVC_Mixer_Init(&pConfig->Mixer_Instance.MixerStream[1],(LVM_INT32)(Gain >> 15),Current)
    [all...]
LVCS_ReverbGenerator.c 68 LVCS_ReverbGenerator_t *pConfig = (LVCS_ReverbGenerator_t *)&pInstance->Reverberation;
88 pConfig->DelaySize = (LVM_INT16)(2 * Delay);
89 pConfig->DelayOffset = 0;
91 (LVM_INT16 *)&pConfig->StereoSamples[0], /* Destination */
92 (LVM_UINT16)(sizeof(pConfig->StereoSamples)/sizeof(LVM_INT16))); /* Number of words */
119 pConfig->pBiquadCallBack = BQ_2I_D16F16C14_TRC_WRA_01;
122 pConfig->pBiquadCallBack = BQ_2I_D16F16C15_TRC_WRA_01;
130 pConfig->ProcGain = (LVM_UINT16)(HEADPHONEGAINPROC);
131 pConfig->UnprocGain = (LVM_UINT16)(HEADPHONEGAINUNPROC);
138 pConfig->ReverbLevel=(LVM_INT16)(ReverbPercentage>>8); // Reverb Level in Q 15 forma
    [all...]
LVCS_Equaliser.c 63 LVCS_Equaliser_t *pConfig = (LVCS_Equaliser_t *)&pInstance->Equaliser;
102 pConfig->pBiquadCallBack = BQ_2I_D16F32C13_TRC_WRA_01;
105 pConfig->pBiquadCallBack = BQ_2I_D16F32C14_TRC_WRA_01;
108 pConfig->pBiquadCallBack = BQ_2I_D16F32C15_TRC_WRA_01;
142 LVCS_Equaliser_t *pConfig = (LVCS_Equaliser_t *)&pInstance->Equaliser;
152 (pConfig->pBiquadCallBack)((Biquad_Instance_t*)&pCoefficients->EqualiserBiquadInstance,
LVCS_StereoEnhancer.c 59 LVCS_StereoEnhancer_t *pConfig = (LVCS_StereoEnhancer_t *)&pInstance->StereoEnhancer;
96 pConfig->pBiquadCallBack_Mid = FO_1I_D16F16C15_TRC_WRA_01;
125 pConfig->pBiquadCallBack_Side = BQ_1I_D16F32C14_TRC_WRA_01;
132 pConfig->pBiquadCallBack_Side = BQ_1I_D16F16C15_TRC_WRA_01;
188 LVCS_StereoEnhancer_t *pConfig = (LVCS_StereoEnhancer_t *)&pInstance->StereoEnhancer;
210 (pConfig->pBiquadCallBack_Mid)((Biquad_Instance_t*)&pCoefficient->SEBiquadInstanceMid,
218 (LVM_INT16)pConfig->MidGain, /* Gain */
229 (pConfig->pBiquadCallBack_Side)((Biquad_Instance_t*)&pCoefficient->SEBiquadInstanceSide,
  /external/libnfc-nxp/Linux_x86/
phDal4Nfc_i2c.h 36 NFCSTATUS phDal4Nfc_i2c_open_and_configure(pphDal4Nfc_sConfig_t pConfig, void ** pLinkHandle);
phDal4Nfc_uart.h 40 NFCSTATUS phDal4Nfc_uart_open_and_configure(pphDal4Nfc_sConfig_t pConfig, void ** pLinkHandle);
phDal4Nfc_link.h 40 typedef NFCSTATUS (*phDal4Nfc_link_open_and_configure_CB_t) (pphDal4Nfc_sConfig_t pConfig, void ** pLinkHandle);
phDal4Nfc_i2c.c 144 NFCSTATUS phDal4Nfc_i2c_open_and_configure(pphDal4Nfc_sConfig_t pConfig, void ** pLinkHandle)
150 switch(pConfig->nLinkType)
156 DAL_DEBUG("Open failed: unknown type %d\n", pConfig->nLinkType);
phDal4Nfc_uart.c 152 NFCSTATUS phDal4Nfc_uart_open_and_configure(pphDal4Nfc_sConfig_t pConfig, void ** pLinkHandle)
161 switch(pConfig->nLinkType)
  /system/wlan/ti/sta_dk_4_0_4_32/CUDK/Inc/
TI_AdapterSG.h 82 pConfig - Pointer that holds the bluetooth coexistence paramaters,
106 tiUINT32 *pConfig );
  /frameworks/base/media/libeffects/testlibs/
EffectEqualizer.cpp 116 int Equalizer_configure(EqualizerContext *pContext, effect_config_t *pConfig);
214 // pConfig: pointer to effect_config_t structure holding input and output
221 int Equalizer_configure(EqualizerContext *pContext, effect_config_t *pConfig)
226 CHECK_ARG(pConfig != NULL);
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)
    [all...]
EffectReverb.c 456 * pConfig - pointer to effect_config_t structure containing input
466 int Reverb_Configure(reverb_module_t *pRvbModule, effect_config_t *pConfig,
474 if (pConfig->inputCfg.samplingRate
475 != pConfig->outputCfg.samplingRate
476 || pConfig->outputCfg.channels != OUTPUT_CHANNELS
477 || pConfig->inputCfg.format != SAMPLE_FORMAT_PCM_S15
478 || pConfig->outputCfg.format != SAMPLE_FORMAT_PCM_S15) {
482 if ((pReverb->m_Aux && (pConfig->inputCfg.channels != CHANNEL_MONO)) ||
483 (!pReverb->m_Aux && (pConfig->inputCfg.channels != CHANNEL_STEREO))) {
488 memcpy(&pRvbModule->config, pConfig, sizeof(effect_config_t))
    [all...]
EffectReverb.h 329 int Reverb_Configure(reverb_module_t *pRvbModule, effect_config_t *pConfig, bool init);
  /frameworks/base/media/libeffects/visualizer/
EffectVisualizer.cpp 79 // pConfig: pointer to effect_config_t structure holding input and output
86 int Visualizer_configure(VisualizerContext *pContext, effect_config_t *pConfig)
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;
94 if (pConfig->outputCfg.accessMode != EFFECT_BUFFER_ACCESS_WRITE &
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/reader/
perf_reader.c 66 void PERF_Replay(FILE *fLog, PERF_Config *pConfig)
79 if (pConfig->trace_file)
81 free(pConfig->trace_file);
82 pConfig->trace_file = NULL;
100 hObject = __PERF_common_Create(pConfig, ulData1, ulData0);
117 __PERF_CUSTOM_create(hObject, pConfig, ulData0);
  /frameworks/base/media/libeffects/lvm/wrapper/Reverb/
EffectReverb.cpp 178 int Reverb_configure (ReverbContext *pContext, effect_config_t *pConfig);
595 // pConfig: pointer to effect_config_t structure holding input and output
602 int Reverb_configure(ReverbContext *pContext, effect_config_t *pConfig){
607 CHECK_ARG(pConfig != NULL);
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))
    [all...]
  /external/sonivox/arm-wt-22k/host_src/
jet.h 73 * JET_Shutdown to de-allocate memory. Pass NULL for pConfig
79 EAS_PUBLIC EAS_RESULT JET_Init (EAS_DATA_HANDLE easHandle, const S_JET_CONFIG *pConfig, EAS_INT configSize);
  /external/libnfc-nxp/src/
phHciNfc.h 350 * \param[in] pConfig pConfig is the Information for
365 phHal_uConfig_t *pConfig
phHciNfc.c 370 phHal_uConfig_t *pConfig
377 || (NULL == pConfig)
396 psHciContext->p_config_params = &(pConfig->nfcIPConfig);
400 &(pConfig->nfcIPConfig));
420 pHwRef, &(pConfig->emuConfig));
432 psHciContext->p_config_params = &(pConfig->protectionConfig);
435 pHwRef, pConfig->protectionConfig.mode);
    [all...]
phHal4Nfc.h     [all...]
  /frameworks/base/media/libeffects/lvm/wrapper/Bundle/
EffectBundle.cpp 126 int Effect_configure (EffectContext *pContext, effect_config_t *pConfig);
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/common/inc/
OMX_TI_Debug.h 242 #define OMX_DBG_SETCONFIG(dbg, pConfig) \
244 struct OMX_TI_Debug *pConfDbg = (struct OMX_TI_Debug *) pConfig; \
251 #define OMX_DBG_GETCONFIG(dbg, pConfig) \
253 struct OMX_TI_Debug *pConfDbg = (struct OMX_TI_Debug *) pConfig; \
  /external/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/
EASLib.c 137 const S_EAS_LIB_CONFIG *pConfig = NULL;
487 pConfig = EAS_Config();
493 streamFormat.mSampleRate = pConfig->sampleRate;
531 pBuf->uOutBufferLength = pConfig->mixBufferSize * streamFormat.mBitsPerChannel / 2;
553 pBuf->uOutBufferLength /= pConfig->numChannels;
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
jet.c 476 EAS_PUBLIC EAS_RESULT JET_Init (EAS_DATA_HANDLE easHandle, const S_JET_CONFIG *pConfig, EAS_INT configSize)
486 if (pConfig == NULL)
487 pConfig = &jetDefaultConfig;
502 EAS_HWMemCpy(&pJet->config, pConfig, configSize);
    [all...]
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
siteMgr.c 605 OS_802_11_CONFIGURATION *pConfig;
615 pConfig = pParam->content.pSiteMgrConfiguration;
619 if(pConfig->channel == pSiteMgr->pDesiredParams->siteMgrFreq2ChannelTable[channel])
623 channel = Freq2Chan(pConfig->Union.channel);
628 pConfig->Union.channel = channel;
630 if((pSiteMgr->pDesiredParams->siteMgrDesiredChannel != pConfig->Union.channel) ||
631 (pSiteMgr->pDesiredParams->siteMgrDesiredAtimWindow != pConfig->ATIMWindow))
633 pSiteMgr->pDesiredParams->siteMgrDesiredChannel = (TI_UINT8)pConfig->Union.channel;
634 pSiteMgr->pDesiredParams->siteMgrDesiredBeaconInterval = (TI_UINT16)pConfig->BeaconPeriod;
635 pSiteMgr->pDesiredParams->siteMgrDesiredAtimWindow = pConfig->ATIMWindow
    [all...]

Completed in 741 milliseconds

1 2