Home
last modified time | relevance | path

Searched refs:effect (Results 1 – 25 of 32) sorted by relevance

12

/hardware/qcom/audio/voice_processing/
Dvoice_processing.c167 static int effect_set_state(struct effect_s *effect, uint32_t state) in effect_set_state() argument
170 ALOGV("effect_set_state() id %d, new %d old %d", effect->id, state, effect->state); in effect_set_state()
173 switch(effect->state) { in effect_set_state()
175 session_set_fx_enabled(effect->session, effect->id, false); in effect_set_state()
181 BAD_STATE_ABORT(effect->state, state); in effect_set_state()
185 switch(effect->state) { in effect_set_state()
195 BAD_STATE_ABORT(effect->state, state); in effect_set_state()
199 switch(effect->state) { in effect_set_state()
205 session_set_fx_enabled(effect->session, effect->id, false); in effect_set_state()
211 BAD_STATE_ABORT(effect->state, state); in effect_set_state()
[all …]
/hardware/libhardware/modules/audio/
Daudio_hw.c119 static int out_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect) in out_add_audio_effect() argument
124 static int out_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect) in out_remove_audio_effect() argument
206 static int in_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect) in in_add_audio_effect() argument
211 static int in_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect) in in_remove_audio_effect() argument
/hardware/libhardware_legacy/audio/
DAudioHardwareStub.h61 virtual status_t addAudioEffect(effect_handle_t effect) { return NO_ERROR; } in addAudioEffect() argument
62 virtual status_t removeAudioEffect(effect_handle_t effect) { return NO_ERROR; } in removeAudioEffect() argument
DAudioHardwareGeneric.h95 virtual status_t addAudioEffect(effect_handle_t effect) { return NO_ERROR; } in addAudioEffect() argument
96 virtual status_t removeAudioEffect(effect_handle_t effect) { return NO_ERROR; } in removeAudioEffect() argument
Daudio_hw_hal.cpp259 static int out_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect) in out_add_audio_effect() argument
264 static int out_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect) in out_remove_audio_effect() argument
393 static int in_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect) in in_add_audio_effect() argument
397 return in->legacy_in->addAudioEffect(effect); in in_add_audio_effect()
400 static int in_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect) in in_remove_audio_effect() argument
404 return in->legacy_in->removeAudioEffect(effect); in in_remove_audio_effect()
/hardware/libhardware_legacy/include/hardware_legacy/
DAudioHardwareInterface.h189 virtual status_t addAudioEffect(effect_handle_t effect) = 0;
190 virtual status_t removeAudioEffect(effect_handle_t effect) = 0;
/hardware/qcom/audio/legacy/alsa_sound/
Daudio_hw_hal.cpp273 static int out_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect) in out_add_audio_effect() argument
278 static int out_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect) in out_remove_audio_effect() argument
414 static int in_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect) in in_add_audio_effect() argument
418 return in->qcom_in->addAudioEffect(effect); in in_add_audio_effect()
421 static int in_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect) in in_remove_audio_effect() argument
425 return in->qcom_in->removeAudioEffect(effect); in in_remove_audio_effect()
DAudioHardwareALSA.h397 virtual status_t addAudioEffect(effect_handle_t effect) in addAudioEffect() argument
402 virtual status_t removeAudioEffect(effect_handle_t effect) in removeAudioEffect() argument
/hardware/libhardware/include/hardware/
Daudio.h244 effect_handle_t effect);
246 effect_handle_t effect);
/hardware/ti/omap4xxx/camera/OMXCameraAdapter/
DOMX3A.cpp1265 OMX_CONFIG_IMAGEFILTERTYPE effect; in setEffect() local
1275 OMX_INIT_STRUCT_PTR (&effect, OMX_CONFIG_IMAGEFILTERTYPE); in setEffect()
1276 effect.nPortIndex = mCameraAdapterParameters.mPrevPortIndex; in setEffect()
1277 effect.eImageFilter = (OMX_IMAGEFILTERTYPE ) Gen3A.Effect; in setEffect()
1281 &effect); in setEffect()
1285 ( unsigned int ) effect.eImageFilter, in setEffect()
1291 ( unsigned int ) effect.eImageFilter); in setEffect()
/hardware/intel/audio_media/hdmi/
Dtinyaudio_hw.c664 static int out_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect) in out_add_audio_effect() argument
667 UNUSED_PARAMETER(effect); in out_add_audio_effect()
672 static int out_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect) in out_remove_audio_effect() argument
675 UNUSED_PARAMETER(effect); in out_remove_audio_effect()
/hardware/libhardware/modules/audio_remote_submix/
Daudio_hw.cpp874 static int out_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect) in audio_config_compare() argument
877 (void)effect; in audio_config_compare()
881 static int out_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect) in audio_config_compare() argument
884 (void)effect; in audio_config_compare()
1262 static int in_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect) in audio_config_compare() argument
1265 (void)effect; in audio_config_compare()
1269 static int in_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect) in audio_config_compare() argument
1272 (void)effect; in audio_config_compare()
/hardware/qcom/audio/hal/
Daudio_hw.c1537 effect_handle_t effect __unused) in out_add_audio_effect()
1543 effect_handle_t effect __unused) in out_remove_audio_effect()
1848 effect_handle_t effect, in add_remove_audio_effect() argument
1856 status = (*effect)->get_descriptor(effect, &desc); in add_remove_audio_effect()
1894 effect_handle_t effect) in in_add_audio_effect() argument
1896 ALOGV("%s: effect %p", __func__, effect); in in_add_audio_effect()
1897 return add_remove_audio_effect(stream, effect, true); in in_add_audio_effect()
1901 effect_handle_t effect) in in_remove_audio_effect() argument
1903 ALOGV("%s: effect %p", __func__, effect); in in_remove_audio_effect()
1904 return add_remove_audio_effect(stream, effect, false); in in_remove_audio_effect()
/hardware/libhardware/modules/usbaudio/
Daudio_hw.c462 static int out_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect) in out_add_audio_effect() argument
467 static int out_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect) in out_remove_audio_effect() argument
748 static int in_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect) in in_add_audio_effect() argument
753 static int in_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect) in in_remove_audio_effect() argument
/hardware/ti/omap4-aah/camera/OMXCameraAdapter/
DOMX3A.cpp1467 OMX_CONFIG_IMAGEFILTERTYPE effect; in setEffect() local
1477 OMX_INIT_STRUCT_PTR (&effect, OMX_CONFIG_IMAGEFILTERTYPE); in setEffect()
1478 effect.nPortIndex = mCameraAdapterParameters.mPrevPortIndex; in setEffect()
1479 effect.eImageFilter = (OMX_IMAGEFILTERTYPE ) Gen3A.Effect; in setEffect()
1483 &effect); in setEffect()
1487 ( unsigned int ) effect.eImageFilter, in setEffect()
1493 ( unsigned int ) effect.eImageFilter); in setEffect()
/hardware/samsung_slsi/exynos5/libcamera/
DExynosCameraHWInterface.cpp2132 int effect = m_secCamera->getSupportedColorEffects(); in m_initDefaultParameters() local
2134 if (effect & ExynosCamera::EFFECT_NONE) { in m_initDefaultParameters()
2138 if (effect & ExynosCamera::EFFECT_MONO) { in m_initDefaultParameters()
2142 if (effect & ExynosCamera::EFFECT_NEGATIVE) { in m_initDefaultParameters()
2146 if (effect & ExynosCamera::EFFECT_SOLARIZE) { in m_initDefaultParameters()
2150 if (effect & ExynosCamera::EFFECT_SEPIA) { in m_initDefaultParameters()
2154 if (effect & ExynosCamera::EFFECT_POSTERIZE) { in m_initDefaultParameters()
2158 if (effect & ExynosCamera::EFFECT_WHITEBOARD) { in m_initDefaultParameters()
2162 if (effect & ExynosCamera::EFFECT_BLACKBOARD) { in m_initDefaultParameters()
2166 if (effect & ExynosCamera::EFFECT_AQUA) in m_initDefaultParameters()
DExynosCamera.cpp104 effect = ExynosCamera::EFFECT_NONE; in ExynosCameraInfo()
234 effect = ExynosCamera::EFFECT_NONE; in ExynosCameraInfoM5M0()
349 effect = ExynosCamera::EFFECT_NONE; in ExynosCameraInfoS5K6A3()
466 effect = ExynosCamera::EFFECT_NONE; in ExynosCameraInfoS5K4E5()
2133 return m_curCameraInfo->effect; in getColorEffect()
2754 if (m_curCameraInfo->effect != value) { in setColorEffect()
2755 m_curCameraInfo->effect = value; in setColorEffect()
/hardware/samsung_slsi/exynos5/include/
DExynosCamera.h106 int effect; member
/hardware/intel/img/libdrm/
Dconfigure.ac113 # have no net effect if a later option then enables that
/hardware/invensense/60xx/libsensors_iio/
DLicense.txt117 their nature should survive termination will remain in effect after
/hardware/invensense/6515/libsensors_iio/
DLicense.txt117 their nature should survive termination will remain in effect after
/hardware/broadcom/wlan/bcmdhd/firmware/
DLICENSE.TXT117 their nature should survive termination will remain in effect after
/hardware/intel/common/libva/doc/
DDoxyfile349 # This option has no effect if EXTRACT_ALL is enabled.
356 # overviews. This option has no effect if EXTRACT_ALL is enabled.
712 # using *.ext= (so without naming a filter). This option only has effect when
1084 # in the HTML output before the changes have effect.
1505 # have no effect if this option is set to NO (the default)
/hardware/qcom/msm8960/original-kernel-headers/media/
Dmsm_camera.h1370 int8_t effect; member
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ppc/
Dloopfilter_filters_altivec.asm45 ;# memory and the effect of a transpose is to interchange address bit
75 ;# are in registers Vhihi and Vlolo, we can also effect the permutation

12