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

1 2

  /frameworks/av/include/media/
EffectsFactoryApi.h 112 int EffectCreate(const effect_uuid_t *pEffectUuid, int32_t sessionId, int32_t ioId, effect_handle_t *pHandle);
131 int EffectRelease(effect_handle_t handle);
  /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)
  /frameworks/av/media/libeffects/downmix/
EffectDownmix.h 74 effect_handle_t *pHandle);
75 int32_t DownmixLib_Release(effect_handle_t handle);
79 static int Downmix_Process(effect_handle_t self,
82 static int Downmix_Command(effect_handle_t self,
88 static int Downmix_GetDescriptor(effect_handle_t self,
EffectDownmix.c 53 // effect_handle_t interface implementation for downmix effect
184 effect_handle_t *pHandle) {
240 *pHandle = (effect_handle_t) module;
248 int32_t DownmixLib_Release(effect_handle_t handle) {
288 static int Downmix_Process(effect_handle_t self,
389 static int Downmix_Command(effect_handle_t self, uint32_t cmdCode, uint32_t cmdSize,
530 int Downmix_GetDescriptor(effect_handle_t self, effect_descriptor_t *pDescriptor)
    [all...]
  /hardware/libhardware/include/hardware/
audio_effect.h 238 // Effect control interface handle: effect_handle_t
239 // The effect_handle_t serves two purposes regarding the implementation of the effect engine:
250 // type and return its address as effect_handle_t
251 typedef struct effect_interface_s **effect_handle_t; typedef in typeref:struct:effect_interface_s
299 int32_t (*process)(effect_handle_t self,
332 int32_t (*command)(effect_handle_t self,
357 int32_t (*get_descriptor)(effect_handle_t self,
387 int32_t (*process_reverse)(effect_handle_t self,
    [all...]
audio.h 208 effect_handle_t effect);
210 effect_handle_t effect);
  /frameworks/av/media/libeffects/testlibs/
EffectReverb.h 309 effect_handle_t *pHandle);
310 int EffectRelease(effect_handle_t handle);
314 static int Reverb_Process(effect_handle_t self,
317 static int Reverb_Command(effect_handle_t self,
323 static int Reverb_GetDescriptor(effect_handle_t self,
EffectEqualizer.cpp 32 // effect_handle_t interface implementation for equalizer effect
146 effect_handle_t *pHandle) {
173 *pHandle = (effect_handle_t)pContext;
183 extern "C" int EffectRelease(effect_handle_t handle) {
619 extern "C" int Equalizer_process(effect_handle_t self, audio_buffer_t *inBuffer, audio_buffer_t *outBuffer)
644 extern "C" int Equalizer_command(effect_handle_t self, uint32_t cmdCode, uint32_t cmdSize,
745 extern "C" int Equalizer_getDescriptor(effect_handle_t self,
760 // effect_handle_t interface implementation for equalizer effect
EffectReverb.c 26 // effect_handle_t interface implementation for reverb effect
117 effect_handle_t *pHandle) {
162 *pHandle = (effect_handle_t) module;
171 int EffectRelease(effect_handle_t handle) {
209 static int Reverb_Process(effect_handle_t self, audio_buffer_t *inBuffer, audio_buffer_t *outBuffer) {
296 static int Reverb_Command(effect_handle_t self, uint32_t cmdCode, uint32_t cmdSize,
415 int Reverb_GetDescriptor(effect_handle_t self,
    [all...]
  /device/samsung/crespo/libaudio/
AudioHardware.h 300 virtual status_t addAudioEffect(effect_handle_t effect);
301 virtual status_t removeAudioEffect(effect_handle_t effect);
334 status_t setPreProcessorEchoDelay(effect_handle_t handle, int32_t delayUs);
335 status_t setPreprocessorParam(effect_handle_t handle, effect_param_t *param);
362 SortedVector<effect_handle_t> mPreprocessors;
  /frameworks/av/media/libeffects/visualizer/
EffectVisualizer.cpp 30 // effect_handle_t interface implementation for visualizer effect
200 effect_handle_t *pHandle) {
224 *pHandle = (effect_handle_t)pContext;
234 int VisualizerLib_Release(effect_handle_t handle) {
275 effect_handle_t self,audio_buffer_t *inBuffer, audio_buffer_t *outBuffer)
356 int Visualizer_command(effect_handle_t self, uint32_t cmdCode, uint32_t cmdSize,
554 int Visualizer_getDescriptor(effect_handle_t self,
569 // effect_handle_t interface implementation for visualizer effect
  /device/generic/goldfish/audio/
AudioHardwareGeneric.h 94 virtual status_t addAudioEffect(effect_handle_t effect) { return NO_ERROR; }
95 virtual status_t removeAudioEffect(effect_handle_t effect) { return NO_ERROR; }
  /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/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/moto/wingray/libaudio/
AudioHardware.h 293 virtual status_t addAudioEffect(effect_handle_t effect);
294 virtual status_t removeAudioEffect(effect_handle_t effect);
308 void updateEcnsRequested(effect_handle_t effect, bool enabled);
  /hardware/libhardware_legacy/audio/
audio_hw_hal.cpp 174 static int out_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
179 static int out_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
286 static int in_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
293 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 726 effect_handle_t *interface)
729 *interface = (effect_handle_t)&effect->itfe;
767 effect_handle_t *interface)
    [all...]
  /frameworks/av/media/libeffects/lvm/wrapper/Reverb/
EffectReverb.cpp 31 // effect_handle_t interface implementation for reverb
217 effect_handle_t *pHandle){
276 *pHandle = (effect_handle_t)pContext;
301 extern "C" int EffectRelease(effect_handle_t handle){
    [all...]
  /device/asus/grouper/audio/
audio_hw.c 760 static int out_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
765 static int out_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
961 effect_handle_t effect)
967 effect_handle_t effect)
    [all...]
  /frameworks/av/services/audioflinger/
AudioMixer.h 229 effect_handle_t mDownmixHandle;
  /device/samsung/tuna/audio/
audio_hw.c 693 effect_handle_t effect_itfe;
770 static void in_update_aux_channels(struct tuna_stream_in *in, effect_handle_t effect);
    [all...]
  /device/ti/panda/audio/
audio_hw.c 634 effect_handle_t preprocessors[MAX_PREPROCESSORS];
    [all...]
  /frameworks/av/media/libeffects/lvm/wrapper/Bundle/
EffectBundle.cpp 30 // effect_handle_t interface implementation for bass boost
201 effect_handle_t *pHandle){
369 *pHandle = (effect_handle_t)NULL;
371 *pHandle = (effect_handle_t)pContext;
377 extern "C" int EffectRelease(effect_handle_t handle){
    [all...]

Completed in 3067 milliseconds

1 2