/frameworks/wilhelm/include/SLES/ |
D | OpenSLES.h | 73 typedef SLuint32 SLboolean; typedef 74 #define SL_BOOLEAN_FALSE ((SLboolean) 0x00000000) 75 #define SL_BOOLEAN_TRUE ((SLboolean) 0x00000001) 404 SLboolean async 408 SLboolean async 433 SLboolean preemptable 438 SLboolean *pPreemptable 444 SLboolean enabled 485 SLboolean isForTelephony; 488 SLboolean isFreqRangeContinuous; [all …]
|
D | OpenSLES_Android.h | 101 SLboolean enabled); 105 SLboolean *pEnabled); 132 SLboolean enable, 138 SLboolean *pEnable 414 SLboolean enabled 418 SLboolean *pEnabled 433 SLboolean enabled 437 SLboolean *pEnabled 452 SLboolean enabled 456 SLboolean *pEnabled
|
/frameworks/wilhelm/src/ |
D | itfstruct.h | 72 SLboolean mDeferred; 149 SLboolean mRotatePending; 174 SLboolean mRotatePending; 180 SLboolean mHeadRelative; 181 SLboolean mRolloffMaxDistanceMute; 222 SLboolean mEnabled; 274 SLboolean mEnable; 293 SLboolean mLossOfControlGlobal; 303 SLboolean mShutdown; 304 SLboolean mShutdownAck; [all …]
|
D | sles_allinclusive.h | 116 typedef SLresult (*AsyncHook)(void *self, SLboolean async); 274 SLboolean mEOF; // sf_read returned zero sample frames 299 const SLboolean *pInterfaceRequired, unsigned *pExposedMask, unsigned *pRequiredMask); 337 extern SLresult CAudioPlayer_Realize(void *self, SLboolean async); 338 extern SLresult CAudioPlayer_Resume(void *self, SLboolean async); 342 extern SLresult CAudioRecorder_Realize(void *self, SLboolean async); 343 extern SLresult CAudioRecorder_Resume(void *self, SLboolean async); 347 extern SLresult CEngine_Realize(void *self, SLboolean async); 348 extern SLresult CEngine_Resume(void *self, SLboolean async); 353 extern SLresult COutputMix_Realize(void *self, SLboolean async); [all …]
|
D | entry.c | 30 const SLInterfaceID *pInterfaceIds, const SLboolean *pInterfaceRequired, in liCreateEngine() 55 SLboolean threadSafe = SL_BOOLEAN_TRUE; in liCreateEngine() 56 SLboolean lossOfControlGlobal = SL_BOOLEAN_FALSE; in liCreateEngine() 65 threadSafe = SL_BOOLEAN_FALSE != (SLboolean) option->data; // normalize in liCreateEngine() 68 lossOfControlGlobal = SL_BOOLEAN_FALSE != (SLboolean) option->data; // normalize in liCreateEngine()
|
/frameworks/wilhelm/src/itf/ |
D | IVolume.c | 80 static SLresult IVolume_SetMute(SLVolumeItf self, SLboolean mute) in IVolume_SetMute() 87 SLboolean oldMute = thiz->mMute; in IVolume_SetMute() 100 static SLresult IVolume_GetMute(SLVolumeItf self, SLboolean *pMute) in IVolume_GetMute() 109 SLboolean mute = thiz->mMute; in IVolume_GetMute() 119 static SLresult IVolume_EnableStereoPosition(SLVolumeItf self, SLboolean enable) in IVolume_EnableStereoPosition() 126 SLboolean oldEnable = thiz->mEnableStereoPosition; in IVolume_EnableStereoPosition() 139 static SLresult IVolume_IsEnabledStereoPosition(SLVolumeItf self, SLboolean *pEnable) in IVolume_IsEnabledStereoPosition() 148 SLboolean enable = thiz->mEnableStereoPosition; in IVolume_IsEnabledStereoPosition()
|
D | IMuteSolo.c | 22 static SLresult IMuteSolo_SetChannelMute(SLMuteSoloItf self, SLuint8 chan, SLboolean mute) in IMuteSolo_SetChannelMute() 58 static SLresult IMuteSolo_GetChannelMute(SLMuteSoloItf self, SLuint8 chan, SLboolean *pMute) in IMuteSolo_GetChannelMute() 71 SLboolean mute; in IMuteSolo_GetChannelMute() 82 mute = (SLboolean) ((mask >> chan) & 1); in IMuteSolo_GetChannelMute() 94 static SLresult IMuteSolo_SetChannelSolo(SLMuteSoloItf self, SLuint8 chan, SLboolean solo) in IMuteSolo_SetChannelSolo() 130 static SLresult IMuteSolo_GetChannelSolo(SLMuteSoloItf self, SLuint8 chan, SLboolean *pSolo) in IMuteSolo_GetChannelSolo() 143 SLboolean solo; in IMuteSolo_GetChannelSolo() 154 solo = (SLboolean) ((mask >> chan) & 1); in IMuteSolo_GetChannelSolo()
|
D | IMIDIMuteSolo.c | 23 SLboolean mute) in IMIDIMuteSolo_SetChannelMute() 46 SLboolean *pMute) in IMIDIMuteSolo_GetChannelMute() 66 SLboolean solo) in IMIDIMuteSolo_SetChannelSolo() 89 SLboolean *pSolo) in IMIDIMuteSolo_GetChannelSolo() 126 static SLresult IMIDIMuteSolo_SetTrackMute(SLMIDIMuteSoloItf self, SLuint16 track, SLboolean mute) in IMIDIMuteSolo_SetTrackMute() 149 static SLresult IMIDIMuteSolo_GetTrackMute(SLMIDIMuteSoloItf self, SLuint16 track, SLboolean *pMute) in IMIDIMuteSolo_GetTrackMute() 169 static SLresult IMIDIMuteSolo_SetTrackSolo(SLMIDIMuteSoloItf self, SLuint16 track, SLboolean solo) in IMIDIMuteSolo_SetTrackSolo() 191 static SLresult IMIDIMuteSolo_GetTrackSolo(SLMIDIMuteSoloItf self, SLuint16 track, SLboolean *pSolo) in IMIDIMuteSolo_GetTrackSolo()
|
D | IVirtualizer.c | 38 static SLresult IVirtualizer_SetEnabled(SLVirtualizerItf self, SLboolean enabled) in IVirtualizer_SetEnabled() 44 thiz->mEnabled = (SLboolean) enabled; in IVirtualizer_SetEnabled() 63 static SLresult IVirtualizer_IsEnabled(SLVirtualizerItf self, SLboolean *pEnabled) in IVirtualizer_IsEnabled() 73 SLboolean enabled = thiz->mEnabled; in IVirtualizer_IsEnabled() 80 *pEnabled = (SLboolean) thiz->mVirtualizerEffect->getEnabled(); in IVirtualizer_IsEnabled() 148 static SLresult IVirtualizer_IsStrengthSupported(SLVirtualizerItf self, SLboolean *pSupported) in IVirtualizer_IsStrengthSupported() 171 *pSupported = (SLboolean) (supported != 0); in IVirtualizer_IsStrengthSupported()
|
D | IBassBoost.c | 38 static SLresult IBassBoost_SetEnabled(SLBassBoostItf self, SLboolean enabled) in IBassBoost_SetEnabled() 44 thiz->mEnabled = (SLboolean) enabled; in IBassBoost_SetEnabled() 61 static SLresult IBassBoost_IsEnabled(SLBassBoostItf self, SLboolean *pEnabled) in IBassBoost_IsEnabled() 71 SLboolean enabled = thiz->mEnabled; in IBassBoost_IsEnabled() 78 *pEnabled = (SLboolean) thiz->mBassBoostEffect->getEnabled(); in IBassBoost_IsEnabled() 146 static SLresult IBassBoost_IsStrengthSupported(SLBassBoostItf self, SLboolean *pSupported) in IBassBoost_IsStrengthSupported() 169 *pSupported = (SLboolean) (supported != 0); in IBassBoost_IsStrengthSupported()
|
D | IAcousticEchoCancellation.c | 31 SLboolean enabled) in IAndroidAcousticEchoCancellation_SetEnabled() 37 thiz->mEnabled = (SLboolean) enabled; in IAndroidAcousticEchoCancellation_SetEnabled() 51 SLboolean *pEnabled) in IAndroidAcousticEchoCancellation_IsEnabled() 63 *pEnabled = (SLboolean) thiz->mAECEffect->getEnabled(); in IAndroidAcousticEchoCancellation_IsEnabled()
|
D | IAutomaticGainControl.c | 30 SLboolean enabled) in IAndroidAutomaticGainControl_SetEnabled() 36 thiz->mEnabled = (SLboolean) enabled; in IAndroidAutomaticGainControl_SetEnabled() 49 SLboolean *pEnabled) in IAndroidAutomaticGainControl_IsEnabled() 61 *pEnabled = (SLboolean) thiz->mAGCEffect->getEnabled(); in IAndroidAutomaticGainControl_IsEnabled()
|
D | INoiseSuppression.c | 28 SLresult IAndroidNoiseSuppression_SetEnabled(SLAndroidNoiseSuppressionItf self, SLboolean enabled) in IAndroidNoiseSuppression_SetEnabled() 34 thiz->mEnabled = (SLboolean) enabled; in IAndroidNoiseSuppression_SetEnabled() 46 SLresult IAndroidNoiseSuppression_IsEnabled(SLAndroidNoiseSuppressionItf self, SLboolean *pEnabled) in IAndroidNoiseSuppression_IsEnabled() 58 *pEnabled = (SLboolean) thiz->mNSEffect->getEnabled(); in IAndroidNoiseSuppression_IsEnabled()
|
D | I3DSource.c | 22 static SLresult I3DSource_SetHeadRelative(SL3DSourceItf self, SLboolean headRelative) in I3DSource_SetHeadRelative() 36 static SLresult I3DSource_GetHeadRelative(SL3DSourceItf self, SLboolean *pHeadRelative) in I3DSource_GetHeadRelative() 45 SLboolean headRelative = thiz->mHeadRelative; in I3DSource_GetHeadRelative() 97 static SLresult I3DSource_SetRolloffMaxDistanceMute(SL3DSourceItf self, SLboolean mute) in I3DSource_SetRolloffMaxDistanceMute() 111 static SLresult I3DSource_GetRolloffMaxDistanceMute(SL3DSourceItf self, SLboolean *pMute) in I3DSource_GetRolloffMaxDistanceMute() 120 SLboolean mute = thiz->mRolloffMaxDistanceMute; in I3DSource_GetRolloffMaxDistanceMute()
|
D | ISeek.c | 51 static SLresult ISeek_SetLoop(SLSeekItf self, SLboolean loopEnable, in ISeek_SetLoop() 108 static SLresult ISeek_GetLoop(SLSeekItf self, SLboolean *pLoopEnabled, in ISeek_GetLoop() 118 SLboolean loopEnabled = thiz->mLoopEnabled; in ISeek_GetLoop()
|
D | IOutputMixExt.c | 45 static SLboolean track_check(Track *track) in track_check() 48 SLboolean trackHasData = SL_BOOLEAN_FALSE; in track_check() 67 SLboolean doBroadcast = SL_BOOLEAN_FALSE; in track_check() 175 SLboolean mixBufferHasData = SL_BOOLEAN_FALSE; in IOutputMixExt_FillBuffer() 211 SLboolean trackContributedToMix = SL_BOOLEAN_FALSE; in IOutputMixExt_FillBuffer() 430 SLboolean mute = audioPlayer->mVolume.mMute; in audioPlayerGainUpdate() 434 SLboolean enableStereoPosition = audioPlayer->mVolume.mEnableStereoPosition; in audioPlayerGainUpdate()
|
D | IEngine.c | 96 SLuint32 numInterfaces, const SLInterfaceID *pInterfaceIds, const SLboolean *pInterfaceRequired) in IEngine_CreateLEDDevice() 134 SLuint32 numInterfaces, const SLInterfaceID *pInterfaceIds, const SLboolean *pInterfaceRequired) in IEngine_CreateVibraDevice() 173 const SLInterfaceID *pInterfaceIds, const SLboolean *pInterfaceRequired) in IEngine_CreateAudioPlayer() 412 const SLInterfaceID *pInterfaceIds, const SLboolean *pInterfaceRequired) in IEngine_CreateAudioRecorder() 555 const SLInterfaceID *pInterfaceIds, const SLboolean *pInterfaceRequired) in IEngine_CreateMidiPlayer() 601 SLuint32 numInterfaces, const SLInterfaceID *pInterfaceIds, const SLboolean *pInterfaceRequired) in IEngine_CreateListener() 638 const SLInterfaceID *pInterfaceIds, const SLboolean *pInterfaceRequired) in IEngine_Create3DGroup() 676 const SLInterfaceID *pInterfaceIds, const SLboolean *pInterfaceRequired) in IEngine_CreateOutputMix() 726 const SLboolean *pInterfaceRequired) in IEngine_CreateMetadataExtractor() 770 const SLInterfaceID *pInterfaceIds, const SLboolean *pInterfaceRequired) in IEngine_CreateExtensionObject() [all …]
|
D | IVibra.c | 22 static SLresult IVibra_Vibrate(SLVibraItf self, SLboolean vibrate) in IVibra_Vibrate() 36 static SLresult IVibra_IsVibrating(SLVibraItf self, SLboolean *pVibrating) in IVibra_IsVibrating() 45 SLboolean vibrate = thiz->mVibrate; in IVibra_IsVibrating()
|
/frameworks/wilhelm/src/objects/ |
D | CAudioRecorder.c | 24 SLresult CAudioRecorder_Realize(void *self, SLboolean async) in CAudioRecorder_Realize() 39 SLresult CAudioRecorder_Resume(void *self, SLboolean async) in CAudioRecorder_Resume()
|
D | COutputMix.c | 24 SLresult COutputMix_Realize(void *self, SLboolean async) in COutputMix_Realize() 39 SLresult COutputMix_Resume(void *self, SLboolean async) in COutputMix_Resume()
|
D | CAudioPlayer.c | 24 SLresult CAudioPlayer_Realize(void *self, SLboolean async) in CAudioPlayer_Realize() 47 SLresult CAudioPlayer_Resume(void *self, SLboolean async) in CAudioPlayer_Resume()
|
/frameworks/wilhelm/src/android/ |
D | MediaPlayer_to_android.h | 26 extern XAresult android_Player_realize(CMediaPlayer *mp, SLboolean async); 75 extern XAresult android_Player_loop(CMediaPlayer *mp, SLboolean loopEnable);
|
/frameworks/wilhelm/tests/sandbox/ |
D | multiplay.c | 35 SLboolean mPlayerErrorInCallback; 36 SLboolean mPlayerErrorReported; 148 const SLboolean engine_req[] = {SL_BOOLEAN_TRUE}; in main() 160 const SLboolean mix_req[] = {SL_BOOLEAN_TRUE}; in main() 184 const SLboolean player_req[] = in main()
|
/frameworks/wilhelm/tests/examples/ |
D | slesTestBassBoostPath.cpp | 76 SLboolean required[MAX_NUMBER_INTERFACES]; in TestBassBoostPathFromFD() 194 SLboolean strengthSupported = SL_BOOLEAN_FALSE; in TestBassBoostPathFromFD() 212 SLboolean previousEnabled = SL_BOOLEAN_FALSE; in TestBassBoostPathFromFD() 214 SLboolean enabled; in TestBassBoostPathFromFD()
|
D | slesTestVirtualizerPath.cpp | 77 SLboolean required[MAX_NUMBER_INTERFACES]; in TestVirtualizerPathFromFD() 195 SLboolean strengthSupported = SL_BOOLEAN_FALSE; in TestVirtualizerPathFromFD() 214 SLboolean previousEnabled = SL_BOOLEAN_FALSE; in TestVirtualizerPathFromFD() 216 SLboolean enabled; in TestVirtualizerPathFromFD()
|