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

  /frameworks/av/media/libmedia/
Visualizer.cpp 137 uint32_t buf32[sizeof(effect_param_t) / sizeof(uint32_t) + 2];
138 effect_param_t *p = (effect_param_t *)buf32;
166 uint32_t buf32[sizeof(effect_param_t) / sizeof(uint32_t) + 2];
167 effect_param_t *p = (effect_param_t *)buf32;
299 uint32_t buf32[sizeof(effect_param_t) / sizeof(uint32_t) + 2];
300 effect_param_t *p = (effect_param_t *)buf32;
AudioEffect.cpp 263 status_t AudioEffect::setParameter(effect_param_t *param)
278 return mIEffect->command(EFFECT_CMD_SET_PARAM, sizeof (effect_param_t) + psize, param, &size, &param->status);
281 status_t AudioEffect::setParameterDeferred(effect_param_t *param)
294 int size = ((sizeof(effect_param_t) + psize - 1) / sizeof(int) + 1) * sizeof(int);
301 memcpy(p, param, sizeof(effect_param_t) + psize);
321 status_t AudioEffect::getParameter(effect_param_t *param)
333 uint32_t psize = sizeof(effect_param_t) + ((param->psize - 1) / sizeof(int) + 1) * sizeof(int) + param->vsize;
335 return mIEffect->command(EFFECT_CMD_GET_PARAM, sizeof(effect_param_t) + param->psize, param, &psize, param);
393 effect_param_t *cmd = (effect_param_t *)cmdData
    [all...]
  /frameworks/av/services/audioflinger/
AudioPolicyService.h 244 effect_param_t *origParam = orig.mParams[k];
246 size_t origSize = sizeof(effect_param_t) +
249 effect_param_t *dupParam = (effect_param_t *) malloc(origSize);
265 Vector <effect_param_t *> mParams;
297 void loadEffectParameters(cnode *root, Vector <effect_param_t *>& params);
298 effect_param_t *loadEffectParameter(cnode *root);
AudioPolicyService.cpp     [all...]
AudioMixer.cpp 316 sizeof(effect_param_t) + psizePadded + sizeof(downmix_type_t);
317 effect_param_t * const param = (effect_param_t *) malloc(downmixParamSize);
    [all...]
AudioFlinger.cpp     [all...]
  /frameworks/av/media/libeffects/testlibs/
EffectEqualizer.cpp 683 if (pCmdData == NULL || cmdSize < (int)(sizeof(effect_param_t) + sizeof(int32_t)) ||
684 pReplyData == NULL || *replySize < (int) (sizeof(effect_param_t) + sizeof(int32_t))) {
687 effect_param_t *p = (effect_param_t *)pCmdData;
688 memcpy(pReplyData, pCmdData, sizeof(effect_param_t) + p->psize);
689 p = (effect_param_t *)pReplyData;
693 *replySize = sizeof(effect_param_t) + voffset + p->vsize;
695 *(int32_t *)((char *)pCmdData + sizeof(effect_param_t)), *replySize,
696 *(int32_t *)((char *)pReplyData + sizeof(effect_param_t) + voffset),
697 *(int32_t *)((char *)pReplyData + sizeof(effect_param_t) + voffset + sizeof(int32_t)))
    [all...]
EffectReverb.c 341 if (pCmdData == NULL || cmdSize < (int)(sizeof(effect_param_t) + sizeof(int32_t)) ||
342 pReplyData == NULL || *replySize < (int) sizeof(effect_param_t)) {
345 effect_param_t *rep = (effect_param_t *) pReplyData;
346 memcpy(pReplyData, pCmdData, sizeof(effect_param_t) + sizeof(int32_t));
350 *replySize = sizeof(effect_param_t) + sizeof(int32_t) + rep->vsize;
355 if (pCmdData == NULL || (cmdSize < (int)(sizeof(effect_param_t) + sizeof(int32_t)))
359 effect_param_t *cmd = (effect_param_t *) pCmdData;
    [all...]
  /frameworks/av/media/libeffects/visualizer/
EffectVisualizer.cpp 417 cmdSize != (int)(sizeof(effect_param_t) + sizeof(uint32_t)) ||
419 *replySize < (int)(sizeof(effect_param_t) + sizeof(uint32_t) + sizeof(uint32_t))) {
422 memcpy(pReplyData, pCmdData, sizeof(effect_param_t) + sizeof(uint32_t));
423 effect_param_t *p = (effect_param_t *)pReplyData;
425 *replySize = sizeof(effect_param_t) + sizeof(uint32_t);
449 cmdSize != (int)(sizeof(effect_param_t) + sizeof(uint32_t) + sizeof(uint32_t)) ||
454 effect_param_t *p = (effect_param_t *)pCmdData;
  /frameworks/av/include/media/
AudioEffect.h 179 * - EVENT_PARAMETER_CHANGED: pointer to a effect_param_t structure.
314 * param: pointer to effect_param_t structure containing the parameter
322 virtual status_t setParameter(effect_param_t *param);
330 * param: pointer to effect_param_t structure containing the parameter
339 virtual status_t setParameterDeferred(effect_param_t *param);
358 * param: pointer to effect_param_t structure containing the parameter
367 virtual status_t getParameter(effect_param_t *param);
  /frameworks/av/media/libeffects/lvm/wrapper/Bundle/
EffectBundle.cpp     [all...]
  /frameworks/wilhelm/src/android/
android_Effect.cpp 29 static const int EQUALIZER_PARAM_SIZE_MAX = sizeof(effect_param_t) + 2 * sizeof(int32_t)
32 static const int BASSBOOST_PARAM_SIZE_MAX = sizeof(effect_param_t) + 2 * sizeof(int32_t);
34 static const int VIRTUALIZER_PARAM_SIZE_MAX = sizeof(effect_param_t) + 2 * sizeof(int32_t);
36 static const int ENVREVERB_PARAM_SIZE_MAX_SINGLE = sizeof(effect_param_t) + 2 * sizeof(int32_t);
38 static const int ENVREVERB_PARAM_SIZE_MAX_ALL = sizeof(effect_param_t) + sizeof(int32_t)
41 static const int PRESETREVERB_PARAM_SIZE_MAX = sizeof(effect_param_t) + 2 * sizeof(int32_t);
193 effect_param_t *p = (effect_param_t *)buf32;
219 effect_param_t *p = (effect_param_t *)buf32
    [all...]
  /frameworks/av/media/libeffects/downmix/
EffectDownmix.c 428 if (pCmdData == NULL || cmdSize < (int)(sizeof(effect_param_t) + sizeof(int32_t)) ||
430 *replySize < (int) sizeof(effect_param_t) + 2 * sizeof(int32_t)) {
433 effect_param_t *rep = (effect_param_t *) pReplyData;
434 memcpy(pReplyData, pCmdData, sizeof(effect_param_t) + sizeof(int32_t));
439 *replySize = sizeof(effect_param_t) + sizeof(int32_t) + rep->vsize;
445 if (pCmdData == NULL || (cmdSize < (int)(sizeof(effect_param_t) + sizeof(int32_t)))
449 effect_param_t *cmd = (effect_param_t *) pCmdData;
    [all...]
  /frameworks/base/media/jni/audioeffect/
android_media_AudioEffect.cpp 97 effect_param_t *p;
143 p = (effect_param_t *)info;
148 arg1 = sizeof(effect_param_t) + ((p->psize - 1) / sizeof(int) + 1) * sizeof(int);
518 effect_param_t *p;
549 p = (effect_param_t *) malloc(sizeof(effect_param_t) + voffset + vsize);
581 effect_param_t *p;
612 p = (effect_param_t *) malloc(sizeof(effect_param_t) + voffset + vsize);
  /frameworks/av/media/libeffects/lvm/wrapper/Reverb/
EffectReverb.cpp     [all...]
  /frameworks/av/media/libeffects/preprocessing/
PreProcessing.cpp     [all...]
  /hardware/libhardware/include/hardware/
audio_effect.h 402 EFFECT_CMD_SET_PARAM, // set parameter immediately (see effect_param_t)
491 // size: sizeof(effect_param_t) + size of param and value
492 // data: effect_param_t + param + value. See effect_param_t definition below for value offset
504 // size: sizeof(effect_param_t) + size of param and value
505 // data: effect_param_t + param + value. See effect_param_t definition below for value offset
530 // size: sizeof(effect_param_t) + size of param
531 // data: effect_param_t + param
534 // size: sizeof(effect_param_t) + size of param and valu
842 } effect_param_t; typedef in typeref:struct:effect_param_s
    [all...]
  /device/samsung/crespo/libaudio/
AudioHardware.h 335 status_t setPreprocessorParam(effect_handle_t handle, effect_param_t *param);
AudioHardware.cpp     [all...]
  /device/ti/panda/audio/
audio_hw.c     [all...]