/aosp12/frameworks/wilhelm/include/SLES/ |
H A D | OpenSLES.h | 404 SLboolean async 408 SLboolean async 522 SLboolean isNew 531 SLboolean isNew 1309 SLboolean mute 1830 SLboolean mute 1933 SLboolean mute 1943 SLboolean solo 2084 SLboolean mute 2094 SLboolean solo [all …]
|
H A D | OpenSLES_Android.h | 102 SLboolean enabled); 106 SLboolean *pEnabled); 133 SLboolean enable, 139 SLboolean *pEnable 417 SLboolean enabled 421 SLboolean *pEnabled 436 SLboolean enabled 440 SLboolean *pEnabled 455 SLboolean enabled 459 SLboolean *pEnabled
|
/aosp12/frameworks/wilhelm/src/ |
H A D | itfstruct.h | 71 SLboolean mDeferred; 221 SLboolean mEnabled; 273 SLboolean mEnable; 302 SLboolean mShutdown; 342 SLboolean mEnabled; 567 SLboolean mVibrate; 575 SLboolean mEnabled; 659 SLboolean mEnabled; 687 SLboolean mEnabled; 695 SLboolean mEnabled; [all …]
|
H A D | sles_allinclusive.h | 116 typedef SLresult (*AsyncHook)(void *self, SLboolean async); 274 SLboolean mEOF; // sf_read returned zero sample frames 337 extern SLresult CAudioPlayer_Realize(void *self, SLboolean async); 338 extern SLresult CAudioPlayer_Resume(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); 354 extern SLresult COutputMix_Resume(void *self, SLboolean async); 358 extern SLresult CMediaPlayer_Realize(void *self, SLboolean async); [all …]
|
H A D | entry.cpp | 29 const SLInterfaceID *pInterfaceIds, const SLboolean *pInterfaceRequired, in liCreateEngine() 54 SLboolean threadSafe = SL_BOOLEAN_TRUE; in liCreateEngine() 55 SLboolean lossOfControlGlobal = SL_BOOLEAN_FALSE; in liCreateEngine() 64 threadSafe = SL_BOOLEAN_FALSE != (SLboolean) option->data; // normalize in liCreateEngine() 67 lossOfControlGlobal = SL_BOOLEAN_FALSE != (SLboolean) option->data; // normalize in liCreateEngine()
|
/aosp12/frameworks/wilhelm/src/itf/ |
H A D | IVolume.cpp | 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()
|
H A D | IMIDIMuteSolo.cpp | 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()
|
H A D | IMuteSolo.cpp | 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()
|
H A D | IBassBoost.cpp | 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()
|
H A D | IVirtualizer.cpp | 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()
|
H A D | IAcousticEchoCancellation.cpp | 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()
|
H A D | IAutomaticGainControl.cpp | 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()
|
H A D | INoiseSuppression.cpp | 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()
|
H A D | I3DSource.cpp | 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()
|
H A D | IEngine.cpp | 173 const SLInterfaceID *pInterfaceIds, const SLboolean *pInterfaceRequired) in IEngine_CreateAudioPlayer() 413 const SLInterfaceID *pInterfaceIds, const SLboolean *pInterfaceRequired) in IEngine_CreateAudioRecorder() 556 const SLInterfaceID *pInterfaceIds, const SLboolean *pInterfaceRequired) in IEngine_CreateMidiPlayer() 639 const SLInterfaceID *pInterfaceIds, const SLboolean *pInterfaceRequired) in IEngine_Create3DGroup() 677 const SLInterfaceID *pInterfaceIds, const SLboolean *pInterfaceRequired) in IEngine_CreateOutputMix() 727 const SLboolean *pInterfaceRequired) in IEngine_CreateMetadataExtractor() 939 const SLchar *pExtensionName, SLboolean *pSupported) in IEngine_IsExtensionSupported() 946 SLboolean isSupported = SL_BOOLEAN_FALSE; in IEngine_IsExtensionSupported() 1050 (const SLboolean *) pInterfaceRequired); in IXAEngine_CreateLEDDevice() 1061 (const SLboolean *) pInterfaceRequired); in IXAEngine_CreateVibraDevice() [all …]
|
H A D | IOutputMixExt.cpp | 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()
|
H A D | ISeek.cpp | 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()
|
H A D | IVibra.cpp | 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()
|
/aosp12/frameworks/wilhelm/tests/sandbox/ |
H A 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()
|
/aosp12/frameworks/wilhelm/src/objects/ |
H A D | CAudioRecorder.cpp | 24 SLresult CAudioRecorder_Realize(void *self, SLboolean async) in CAudioRecorder_Realize() 39 SLresult CAudioRecorder_Resume(void *self, SLboolean async) in CAudioRecorder_Resume()
|
H A D | COutputMix.cpp | 24 SLresult COutputMix_Realize(void *self, SLboolean async) in COutputMix_Realize() 39 SLresult COutputMix_Resume(void *self, SLboolean async) in COutputMix_Resume()
|
/aosp12/frameworks/wilhelm/tests/examples/ |
H A 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()
|
H A 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()
|
/aosp12/frameworks/wilhelm/src/android/ |
H A 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);
|
H A D | android_Effect.h | 100 SLboolean enabled); 103 SLboolean *pEnabled); 128 SLboolean attach, SLmillibel sendLevel);
|