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

1 2

  /frameworks/av/include/media/
EffectsFactoryApi.h 114 effect_handle_t *pHandle);
133 int EffectRelease(effect_handle_t handle);
  /frameworks/av/media/libeffects/downmix/
EffectDownmix.h 71 effect_handle_t *pHandle);
72 int32_t DownmixLib_Release(effect_handle_t handle);
76 static int Downmix_Process(effect_handle_t self,
79 static int Downmix_Command(effect_handle_t self,
85 static int Downmix_GetDescriptor(effect_handle_t self,
EffectDownmix.c 53 // effect_handle_t interface implementation for downmix effect
165 effect_handle_t *pHandle) {
221 *pHandle = (effect_handle_t) module;
229 int32_t DownmixLib_Release(effect_handle_t handle) {
269 static int Downmix_Process(effect_handle_t self,
370 static int Downmix_Command(effect_handle_t self, uint32_t cmdCode, uint32_t cmdSize,
511 int Downmix_GetDescriptor(effect_handle_t self, effect_descriptor_t *pDescriptor)
    [all...]
  /frameworks/av/media/libeffects/factory/
EffectsFactory.h 46 effect_handle_t subItfe;
EffectsFactory.c 68 int Effect_Process(effect_handle_t self, audio_buffer_t *inBuffer, audio_buffer_t *outBuffer)
88 int Effect_Command(effect_handle_t self,
113 int Effect_GetDescriptor(effect_handle_t self,
134 int Effect_ProcessReverse(effect_handle_t self, audio_buffer_t *inBuffer, audio_buffer_t *outBuffer)
260 int EffectCreate(const effect_uuid_t *uuid, int32_t sessionId, int32_t ioId, effect_handle_t *pHandle)
265 effect_handle_t itfe;
317 *pHandle = (effect_handle_t)fx;
326 int EffectRelease(effect_handle_t handle)
  /hardware/libhardware/include/hardware/
audio_effect.h 250 // Effect control interface handle: effect_handle_t
251 // The effect_handle_t serves two purposes regarding the implementation of the effect engine:
262 // type and return its address as effect_handle_t
263 typedef struct effect_interface_s **effect_handle_t; typedef in typeref:struct:effect_interface_s
311 int32_t (*process)(effect_handle_t self,
344 int32_t (*command)(effect_handle_t self,
369 int32_t (*get_descriptor)(effect_handle_t self,
399 int32_t (*process_reverse)(effect_handle_t self,
    [all...]
audio.h 210 effect_handle_t effect);
212 effect_handle_t effect);
  /frameworks/av/media/libeffects/testlibs/
EffectReverb.h 306 effect_handle_t *pHandle);
307 int EffectRelease(effect_handle_t handle);
311 static int Reverb_Process(effect_handle_t self,
314 static int Reverb_Command(effect_handle_t self,
320 static int Reverb_GetDescriptor(effect_handle_t self,
EffectEqualizer.cpp 32 // effect_handle_t interface implementation for equalizer effect
129 effect_handle_t *pHandle) {
156 *pHandle = (effect_handle_t)pContext;
166 extern "C" int EffectRelease(effect_handle_t handle) {
602 extern "C" int Equalizer_process(effect_handle_t self, audio_buffer_t *inBuffer, audio_buffer_t *outBuffer)
627 extern "C" int Equalizer_command(effect_handle_t self, uint32_t cmdCode, uint32_t cmdSize,
728 extern "C" int Equalizer_getDescriptor(effect_handle_t self,
743 // effect_handle_t interface implementation for equalizer effect
  /frameworks/av/media/libeffects/visualizer/
EffectVisualizer.cpp 30 // effect_handle_t interface implementation for visualizer effect
183 effect_handle_t *pHandle) {
207 *pHandle = (effect_handle_t)pContext;
217 int VisualizerLib_Release(effect_handle_t handle) {
258 effect_handle_t self,audio_buffer_t *inBuffer, audio_buffer_t *outBuffer)
339 int Visualizer_command(effect_handle_t self, uint32_t cmdCode, uint32_t cmdSize,
537 int Visualizer_getDescriptor(effect_handle_t self,
552 // effect_handle_t interface implementation for visualizer effect
  /hardware/libhardware_legacy/include/hardware_legacy/
AudioHardwareInterface.h 182 virtual status_t addAudioEffect(effect_handle_t effect) = 0;
183 virtual status_t removeAudioEffect(effect_handle_t effect) = 0;
  /hardware/qcom/audio/voice_processing/
voice_processing.c 251 effect_handle_t *interface)
254 *interface = (effect_handle_t)&effect->itfe;
286 effect_handle_t *interface)
477 static int fx_process(effect_handle_t self,
506 static int fx_command(effect_handle_t self,
637 static int fx_get_descriptor(effect_handle_t self,
651 // effect_handle_t interface implementation for effect
666 effect_handle_t *pInterface)
702 static int lib_release(effect_handle_t interface)
  /hardware/libhardware/modules/audio/
audio_hw.c 119 static int out_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
124 static int out_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
206 static int in_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
211 static int in_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
  /device/samsung/manta/voicefx/
eS305VoiceProcessing.cpp 551 effect_handle_t *interface)
555 *interface = (effect_handle_t)&effect->itfe;
596 effect_handle_t *interface)
737 int AdncVoiceProcessingFx_Command(effect_handle_t self,
926 int AdncVoiceProcessingFx_GetDescriptor(effect_handle_t self,
941 // effect_handle_t interface implementation for effect
955 effect_handle_t *pInterface)
997 int adnc_release(effect_handle_t interface)
    [all...]
  /device/generic/goldfish/audio/
audio_hw.c 203 static int out_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
209 static int out_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
357 static int in_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
363 static int in_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
  /hardware/libhardware/modules/usbaudio/
audio_hw.c 230 static int out_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
235 static int out_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
  /frameworks/av/media/libeffects/preprocessing/
PreProcessing.cpp 730 effect_handle_t *interface)
733 *interface = (effect_handle_t)&effect->itfe;
771 effect_handle_t *interface)
    [all...]
  /frameworks/av/media/libeffects/lvm/wrapper/Reverb/
EffectReverb.cpp 31 // effect_handle_t interface implementation for reverb
193 effect_handle_t *pHandle){
252 *pHandle = (effect_handle_t)pContext;
277 extern "C" int EffectRelease(effect_handle_t handle){
    [all...]
  /hardware/qcom/audio/legacy/alsa_sound/
AudioHardwareALSA.h 397 virtual status_t addAudioEffect(effect_handle_t effect)
402 virtual status_t removeAudioEffect(effect_handle_t effect)
audio_hw_hal.cpp 273 static int out_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
278 static int out_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
414 static int in_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
421 static int in_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
  /device/asus/grouper/audio/
audio_hw.c 768 static int out_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
773 static int out_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
968 effect_handle_t effect)
974 effect_handle_t effect)
    [all...]
  /external/bluetooth/bluedroid/audio_a2dp_hw/
audio_a2dp_hw.c 678 static int out_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
684 static int out_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
774 static int in_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
780 static int in_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
  /frameworks/av/services/audioflinger/
AudioMixer.h 239 effect_handle_t mDownmixHandle;
  /hardware/libhardware/modules/audio_remote_submix/
audio_hw.cpp 298 static int out_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
303 static int out_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
501 static int in_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
506 static int in_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
  /hardware/libhardware_legacy/audio/
audio_hw_hal.cpp 259 static int out_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
264 static int out_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
393 static int in_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
400 static int in_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect)

Completed in 490 milliseconds

1 2