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

1 2

  /frameworks/av/include/media/
IEffect.h 36 virtual status_t command(uint32_t cmdCode,
IEffectClient.h 34 virtual void commandExecuted(uint32_t cmdCode,
AudioEffect.h 375 virtual status_t command(uint32_t cmdCode,
414 virtual void commandExecuted(uint32_t cmdCode,
436 virtual void commandExecuted(uint32_t cmdCode,
441 mEffect->commandExecuted(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
  /frameworks/av/media/libmedia/
IEffectClient.cpp 59 void commandExecuted(uint32_t cmdCode,
68 data.writeInt32(cmdCode);
115 uint32_t cmdCode = data.readInt32();
128 commandExecuted(cmdCode, cmdSize, cmd, replySize, resp);
IEffect.cpp 62 status_t command(uint32_t cmdCode,
71 data.writeInt32(cmdCode);
153 uint32_t cmdCode = data.readInt32();
166 status_t status = command(cmdCode, cmdSize, cmd, &replySz, resp);
AudioEffect.cpp 227 status_t AudioEffect::command(uint32_t cmdCode,
238 if (cmdCode == EFFECT_CMD_ENABLE || cmdCode == EFFECT_CMD_DISABLE) {
239 if (mEnabled == (cmdCode == EFFECT_CMD_ENABLE)) {
248 status_t status = mIEffect->command(cmdCode, cmdSize, cmdData, replySize, replyData);
250 if (cmdCode == EFFECT_CMD_ENABLE || cmdCode == EFFECT_CMD_DISABLE) {
255 mEnabled = (cmdCode == EFFECT_CMD_ENABLE);
389 void AudioEffect::commandExecuted(uint32_t cmdCode,
399 if (mCbf != NULL && cmdCode == EFFECT_CMD_SET_PARAM)
    [all...]
  /cts/tests/tests/security/testeffect/
CTSTestEffect.cpp 102 int CTSEffects_command(effect_handle_t self, uint32_t cmdCode, uint32_t cmdSize,
111 switch (cmdCode) {
  /frameworks/av/media/libeffects/proxy/
EffectProxy.h 47 uint32_t cmdCode,
EffectProxy.cpp 201 uint32_t cmdCode,
242 if (cmdCode == EFFECT_CMD_OFFLOAD) {
243 ALOGV("Effect_command() cmdCode = EFFECT_CMD_OFFLOAD");
267 pContext->eHandle[SUB_FX_OFFLOAD], cmdCode, cmdSize,
327 pContext->eHandle[i], cmdCode, cmdSize,
  /hardware/qcom/audio/post_proc/
bundle.h 66 int (*command)(effect_context_t *context, uint32_t cmdCode, uint32_t cmdSize,
bundle.c 533 int effect_command(effect_handle_t self, uint32_t cmdCode, uint32_t cmdSize,
553 switch (cmdCode) {
707 if (cmdCode >= EFFECT_CMD_FIRST_PROPRIETARY && context->ops.command)
708 status = context->ops.command(context, cmdCode, cmdSize,
711 ALOGW("%s invalid command %d", __func__, cmdCode);
  /hardware/qcom/audio/voice_processing/
voice_processing.c 507 uint32_t cmdCode,
518 //ALOGV("fx_command: command %d cmdSize %d",cmdCode, cmdSize);
520 switch (cmdCode) {
614 cmdCode == EFFECT_CMD_SET_DEVICE ? "EFFECT_CMD_SET_DEVICE" :
615 cmdCode == EFFECT_CMD_SET_INPUT_DEVICE ? "EFFECT_CMD_SET_INPUT_DEVICE" :
616 cmdCode == EFFECT_CMD_SET_VOLUME ? "EFFECT_CMD_SET_VOLUME" :
617 cmdCode == EFFECT_CMD_SET_AUDIO_MODE ? "EFFECT_CMD_SET_AUDIO_MODE" :
622 cmdCode == EFFECT_CMD_SET_DEVICE ? "EFFECT_CMD_SET_DEVICE" :
623 cmdCode == EFFECT_CMD_SET_INPUT_DEVICE ? "EFFECT_CMD_SET_INPUT_DEVICE" :
624 cmdCode == EFFECT_CMD_SET_VOLUME ? "EFFECT_CMD_SET_VOLUME"
    [all...]
  /frameworks/av/media/libeffects/downmix/
EffectDownmix.h 80 uint32_t cmdCode,
EffectDownmix.c 356 static int Downmix_Command(effect_handle_t self, uint32_t cmdCode, uint32_t cmdSize,
369 ALOGV("Downmix_Command command %" PRIu32 " cmdSize %" PRIu32, cmdCode, cmdSize);
371 switch (cmdCode) {
489 ALOGW("Downmix_Command invalid command %" PRIu32, cmdCode);
    [all...]
  /frameworks/av/services/audioflinger/
Effects.h 64 status_t command(uint32_t cmdCode,
179 virtual status_t command(uint32_t cmdCode,
198 void commandExecuted(uint32_t cmdCode,
Effects.cpp 538 status_t AudioFlinger::EffectModule::command(uint32_t cmdCode,
545 ALOGVV("command(), cmdCode: %d, mEffectInterface: %p", cmdCode, mEffectInterface);
554 cmdCode,
559 if (cmdCode != EFFECT_CMD_GET_PARAM && status == NO_ERROR) {
564 h->commandExecuted(cmdCode, cmdSize, pCmdData, size, pReplyData);
    [all...]
  /device/htc/flounder/audio/visualizer/
nv_offload_visualizer.c 56 int (*command)(effect_context_t *context, uint32_t cmdCode, uint32_t cmdSize,
734 int visualizer_command(effect_context_t * context, uint32_t cmdCode, uint32_t cmdSize __unused,
739 switch (cmdCode) {
845 ALOGW("%s invalid command %d", __func__, cmdCode);
    [all...]
  /hardware/qcom/audio/visualizer/
offload_visualizer.c 66 int (*command)(effect_context_t *context, uint32_t cmdCode, uint32_t cmdSize,
809 int visualizer_command(effect_context_t * context, uint32_t cmdCode, uint32_t cmdSize __unused,
814 switch (cmdCode) {
    [all...]
  /frameworks/av/media/libeffects/loudness/
EffectLoudnessEnhancer.cpp 310 int LE_command(effect_handle_t self, uint32_t cmdCode, uint32_t cmdSize,
320 // ALOGV("LE_command command %d cmdSize %d",cmdCode, cmdSize);
321 switch (cmdCode) {
422 ALOGW("LE_command invalid command %d",cmdCode);
  /frameworks/av/media/libeffects/testlibs/
EffectEqualizer.cpp 626 extern "C" int Equalizer_command(effect_handle_t self, uint32_t cmdCode, uint32_t cmdSize,
638 ALOGV("Equalizer_command command %d cmdSize %d",cmdCode, cmdSize);
640 switch (cmdCode) {
720 ALOGW("Equalizer_command invalid command %d",cmdCode);
EffectReverb.h 315 uint32_t cmdCode,
  /frameworks/av/media/libeffects/visualizer/
EffectVisualizer.cpp 413 int Visualizer_command(effect_handle_t self, uint32_t cmdCode, uint32_t cmdSize,
423 // ALOGV("Visualizer_command command %" PRIu32 " cmdSize %" PRIu32, cmdCode, cmdSize);
425 switch (cmdCode) {
650 ALOGW("Visualizer_command invalid command %" PRIu32, cmdCode);
  /frameworks/base/media/java/android/media/audiofx/
AudioEffect.java 845 public int command(int cmdCode, byte[] command, byte[] reply)
848 return native_command(cmdCode, command.length, command, reply.length, reply);
    [all...]
  /hardware/libhardware/include/hardware/
audio_effect.h 334 // cmdCode: command code: the command can be a standardized command defined in
356 uint32_t cmdCode,
    [all...]
  /device/samsung/manta/voicefx/
eS305VoiceProcessing.cpp 738 uint32_t cmdCode,
752 ALOGV("AdncVoiceProcessingFx_Command: command %d cmdSize %d",cmdCode, cmdSize);
754 switch (cmdCode){
770 ALOGV("AdncVoiceProcessingFx_Command cmdCode Case: "
788 ALOGV("\tLVM_ERROR : AdncVoiceProcessingFx_Command cmdCode Case: "
801 ALOGV("AdncVoiceProcessingFx_Command cmdCode Case: "
815 ALOGV("AdncVoiceProcessingFx_Command cmdCode Case: "
833 ALOGV("AdncVoiceProcessingFx_Command cmdCode Case: "
858 ALOGV("AdncVoiceProcessingFx_Command cmdCode Case: "
865 ALOGV("AdncVoiceProcessingFx_Command cmdCode Case:
    [all...]

Completed in 2852 milliseconds

1 2