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

1 2

  /frameworks/av/media/libeffects/proxy/
EffectProxy.h 36 effect_handle_t *pHandle);
37 int EffectProxyRelease(effect_handle_t handle);
41 int Effect_process(effect_handle_t self,
46 int Effect_command(effect_handle_t self,
52 int Effect_getDescriptor(effect_handle_t self,
70 effect_handle_t eHandle[SUB_FX_COUNT]; // The effect handles of the sub effects
EffectProxy.cpp 56 effect_handle_t *pHandle) {
142 *pHandle = (effect_handle_t)pContext;
147 int EffectProxyRelease(effect_handle_t handle) {
182 int Effect_process(effect_handle_t self,
200 int Effect_command(effect_handle_t self,
336 int Effect_getDescriptor(effect_handle_t self,
  /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 42 // effect_handle_t interface implementation for downmix effect
154 effect_handle_t *pHandle) {
210 *pHandle = (effect_handle_t) module;
218 int32_t DownmixLib_Release(effect_handle_t handle) {
258 static int Downmix_Process(effect_handle_t self,
356 static int Downmix_Command(effect_handle_t self, uint32_t cmdCode, uint32_t cmdSize,
497 int Downmix_GetDescriptor(effect_handle_t self, effect_descriptor_t *pDescriptor)
    [all...]
  /cts/tests/tests/security/testeffect/
CTSTestEffect.cpp 47 effect_handle_t *pHandle) {
60 *pHandle = (effect_handle_t)pContext;
66 int CTSEffectsLib_Release(effect_handle_t handle) {
97 effect_handle_t self,audio_buffer_t *inBuffer, audio_buffer_t *outBuffer)
102 int CTSEffects_command(effect_handle_t self, uint32_t cmdCode, uint32_t cmdSize,
168 int CTSEffects_getDescriptor(effect_handle_t self,
182 // effect_handle_t interface implementation for test effect
  /hardware/libhardware/include/hardware/
audio_effect.h 261 // Effect control interface handle: effect_handle_t
262 // The effect_handle_t serves two purposes regarding the implementation of the effect engine:
273 // type and return its address as effect_handle_t
274 typedef struct effect_interface_s **effect_handle_t; typedef in typeref:struct:effect_interface_s
322 int32_t (*process)(effect_handle_t self,
355 int32_t (*command)(effect_handle_t self,
380 int32_t (*get_descriptor)(effect_handle_t self,
410 int32_t (*process_reverse)(effect_handle_t self,
    [all...]
audio.h 241 effect_handle_t effect);
243 effect_handle_t effect);
  /frameworks/av/media/libeffects/factory/
EffectsFactory.h 55 effect_handle_t subItfe;
EffectsFactory.c 77 int Effect_Process(effect_handle_t self, audio_buffer_t *inBuffer, audio_buffer_t *outBuffer)
97 int Effect_Command(effect_handle_t self,
122 int Effect_GetDescriptor(effect_handle_t self,
143 int Effect_ProcessReverse(effect_handle_t self, audio_buffer_t *inBuffer, audio_buffer_t *outBuffer)
269 int EffectCreate(const effect_uuid_t *uuid, int32_t sessionId, int32_t ioId, effect_handle_t *pHandle)
274 effect_handle_t itfe;
331 *pHandle = (effect_handle_t)fx;
340 int EffectRelease(effect_handle_t handle)
  /device/asus/fugu/libaudio/
AudioStreamIn.h 52 status_t addAudioEffect(effect_handle_t effect);
53 status_t removeAudioEffect(effect_handle_t effect);
audio_hal_thunks.cpp 69 static int out_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
76 static int out_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
332 effect_handle_t effect)
341 effect_handle_t effect)
AudioStreamIn.cpp 240 status_t AudioStreamIn::addAudioEffect(effect_handle_t effect)
247 status_t AudioStreamIn::removeAudioEffect(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) {
601 extern "C" int Equalizer_process(effect_handle_t self, audio_buffer_t *inBuffer, audio_buffer_t *outBuffer)
626 extern "C" int Equalizer_command(effect_handle_t self, uint32_t cmdCode, uint32_t cmdSize,
727 extern "C" int Equalizer_getDescriptor(effect_handle_t self,
742 // effect_handle_t interface implementation for equalizer effect
  /hardware/libhardware_legacy/audio/
AudioHardwareStub.h 61 virtual status_t addAudioEffect(effect_handle_t effect) { return NO_ERROR; }
62 virtual status_t removeAudioEffect(effect_handle_t effect) { return NO_ERROR; }
AudioHardwareGeneric.h 95 virtual status_t addAudioEffect(effect_handle_t effect) { return NO_ERROR; }
96 virtual status_t removeAudioEffect(effect_handle_t effect) { return NO_ERROR; }
  /frameworks/av/media/libeffects/loudness/
EffectLoudnessEnhancer.cpp 31 // effect_handle_t interface implementation for LE effect
194 effect_handle_t *pHandle) {
220 *pHandle = (effect_handle_t)pContext;
230 int LELib_Release(effect_handle_t handle) {
267 effect_handle_t self, audio_buffer_t *inBuffer, audio_buffer_t *outBuffer)
310 int LE_command(effect_handle_t self, uint32_t cmdCode, uint32_t cmdSize,
430 int LE_getDescriptor(effect_handle_t self,
445 // effect_handle_t interface implementation for DRC effect
  /hardware/libhardware_legacy/include/hardware_legacy/
AudioHardwareInterface.h 184 virtual status_t addAudioEffect(effect_handle_t effect) = 0;
185 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)
  /frameworks/av/media/libeffects/visualizer/
EffectVisualizer.cpp 32 // effect_handle_t interface implementation for visualizer effect
233 effect_handle_t *pHandle) {
257 *pHandle = (effect_handle_t)pContext;
267 int VisualizerLib_Release(effect_handle_t handle) {
308 effect_handle_t self,audio_buffer_t *inBuffer, audio_buffer_t *outBuffer)
413 int Visualizer_command(effect_handle_t self, uint32_t cmdCode, uint32_t cmdSize,
658 int Visualizer_getDescriptor(effect_handle_t self,
673 // effect_handle_t interface implementation for visualizer effect
  /hardware/qcom/audio/post_proc/
bundle.c 311 effect_handle_t *pHandle) {
445 *pHandle = (effect_handle_t)context;
453 int effect_lib_release(effect_handle_t handle)
508 int effect_process(effect_handle_t self,
533 int effect_command(effect_handle_t self, uint32_t cmdCode, uint32_t cmdSize,
724 int effect_get_descriptor(effect_handle_t self,
741 /* effect_handle_t interface implementation for offload effects */
  /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)

Completed in 589 milliseconds

1 2