Searched refs:enabled (Results 1 - 25 of 303) sorted by path

1234567891011>>

/frameworks/av/camera/
H A DCamera.cpp210 status_t Camera::storeMetaDataInBuffers(bool enabled) argument
213 enabled? "true": "false");
216 return c->storeMetaDataInBuffers(enabled);
H A DICamera.cpp152 status_t storeMetaDataInBuffers(bool enabled) argument
154 ALOGV("storeMetaDataInBuffers: %s", enabled? "true": "false");
157 data.writeInt32(enabled);
340 bool enabled = data.readInt32(); local
341 reply->writeInt32(storeMetaDataInBuffers(enabled));
/frameworks/av/include/camera/
H A DCamera.h132 status_t storeMetaDataInBuffers(bool enabled);
H A DICamera.h106 virtual status_t storeMetaDataInBuffers(bool enabled) = 0;
/frameworks/av/include/media/
H A DAudioEffect.h116 * Returns a list of descriptors corresponding to the pre processings enabled by default
124 * number of enabled pre processings if status is NO_MEMORY
135 * *descriptor updated with descriptors of pre processings enabled by default
137 * total number of pre processing enabled by default if returned status is
165 * control of the effect engine when the effect is enabled or disabled.
177 * - EVENT_ENABLE_STATUS_CHANGED: boolean indicating if effect is now enabled (true)
301 * enabled: requested enable state.
308 virtual status_t setEnabled(bool enabled);
407 virtual void enableStatusChanged(bool enabled);
427 virtual void enableStatusChanged(bool enabled) { argument
[all...]
H A DAudioSystem.h231 static status_t setEffectEnabled(int id, bool enabled);
H A DIAudioFlinger.h184 int *enabled) = 0;
H A DIAudioPolicyService.h89 virtual status_t setEffectEnabled(int id, bool enabled) = 0;
H A DIEffectClient.h33 virtual void enableStatusChanged(bool enabled) = 0;
H A DVisualizer.h46 * Before capturing data, the Visualizer must be enabled by calling the setEnabled() method.
75 virtual status_t setEnabled(bool enabled);
101 // must be called when the visualizer is not enabled
/frameworks/av/media/libeffects/lvm/wrapper/Bundle/
H A DEffectBundle.cpp158 int Effect_setEnabled(EffectContext *pContext, bool enabled);
1408 // Result is unaffected by whether EQ is enabled or not, or by whether
1676 //ALOGV("\tVolumeSetStereoPosition Position attempting to set, but not enabled %d %d\n",
1738 int32_t VolumeEnableStereoPosition(EffectContext *pContext, uint32_t enabled){ argument
1741 pContext->pBundledContext->bStereoPositionEnabled = enabled;
1753 // enabled, ActiveParams.VC_Balance );
2488 // enabled - true if enabling the effect, false otherwise
2494 int Effect_setEnabled(EffectContext *pContext, bool enabled) argument
2496 ALOGV("\tEffect_setEnabled() type %d, enabled %d", pContext->EffectType, enabled);
[all...]
/frameworks/av/media/libeffects/preprocessing/
H A DPreProcessing.cpp61 PREPROC_EFFECT_STATE_ACTIVE // active/enabled
112 uint32_t enabledMsk; // bit field containing IDs of enabled pre processors
125 uint32_t revEnabledMsk; // bit field containing IDs of enabled pre processors
340 ALOGV("AgcGetParameter() limiter enabled %s",
373 ALOGV("AgcSetParameter() limiter enabled %s", *(bool *)pValue ? "true" : "false");
630 void Session_SetProcEnabled(preproc_session_t *session, uint32_t procId, bool enabled);
696 // enabling an already enabled effect is just ignored
895 // if at least one process is enabled, do not accept configuration changes
1064 void Session_SetProcEnabled(preproc_session_t *session, uint32_t procId, bool enabled) argument
1066 if (enabled) {
[all...]
/frameworks/av/media/libmedia/
H A DAudioEffect.cpp99 int enabled; local
131 mIEffectClient, priority, io, mSessionId, &mStatus, &mId, &enabled);
138 mEnabled = (volatile int32_t)enabled;
155 ALOGV("set() %p OK effect: %s id: %d status %d enabled %d", this, mDescriptor.name, mId, mStatus, mEnabled);
195 status_t AudioEffect::setEnabled(bool enabled) argument
204 if (enabled != mEnabled) {
205 if (enabled) {
213 mEnabled = enabled;
364 void AudioEffect::enableStatusChanged(bool enabled) argument
366 ALOGV("enableStatusChanged %p enabled
[all...]
H A DAudioSystem.cpp722 status_t AudioSystem::setEffectEnabled(int id, bool enabled) argument
726 return aps->setEffectEnabled(id, enabled);
H A DIAudioFlinger.cpp629 int *enabled)
659 if (enabled != NULL) {
660 *enabled = tmp;
1044 int enabled; local
1046 sp<IEffect> effect = createEffect(pid, &desc, client, priority, output, sessionId, &status, &id, &enabled);
1049 reply->writeInt32(enabled);
621 createEffect(pid_t pid, effect_descriptor_t *pDesc, const sp<IEffectClient>& client, int32_t priority, audio_io_handle_t output, int sessionId, status_t *status, int *id, int *enabled) argument
H A DIAudioPolicyService.cpp313 virtual status_t setEffectEnabled(int id, bool enabled) argument
318 data.writeInt32(enabled);
592 bool enabled = static_cast <bool>(data.readInt32()); local
593 reply->writeInt32(static_cast <int32_t>(setEffectEnabled(id, enabled)));
H A DIEffectClient.cpp50 void enableStatusChanged(bool enabled) argument
55 data.writeInt32((uint32_t)enabled);
108 bool enabled = (bool)data.readInt32(); local
109 enableStatusChanged(enabled);
H A DVisualizer.cpp55 status_t Visualizer::setEnabled(bool enabled) argument
61 if (enabled) {
72 status_t status = AudioEffect::setEnabled(enabled);
76 if (enabled) {
/frameworks/av/media/libstagefright/codecs/aacdec/
H A DSoftAAC2.cpp597 void SoftAAC2::onPortEnableCompleted(OMX_U32 portIndex, bool enabled) { argument
608 CHECK(!enabled);
616 CHECK(enabled);
H A DSoftAAC2.h43 virtual void onPortEnableCompleted(OMX_U32 portIndex, bool enabled);
/frameworks/av/media/libstagefright/codecs/amrnb/dec/
H A DSoftAMR.cpp434 void SoftAMR::onPortEnableCompleted(OMX_U32 portIndex, bool enabled) { argument
445 CHECK(!enabled);
453 CHECK(enabled);
H A DSoftAMR.h42 virtual void onPortEnableCompleted(OMX_U32 portIndex, bool enabled);
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/
H A DSoftMPEG4.cpp544 void SoftMPEG4::onPortEnableCompleted(OMX_U32 portIndex, bool enabled) { argument
555 CHECK(!enabled);
563 CHECK(enabled);
H A DSoftMPEG4.h46 virtual void onPortEnableCompleted(OMX_U32 portIndex, bool enabled);
/frameworks/av/media/libstagefright/codecs/mp3dec/
H A DSoftMP3.cpp320 void SoftMP3::onPortEnableCompleted(OMX_U32 portIndex, bool enabled) { argument
331 CHECK(!enabled);
339 CHECK(enabled);

Completed in 168 milliseconds

1234567891011>>