1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /*******************************************************************************
- The content of this file includes portions of the AUDIOKINETIC Wwise Technology
- released in source code form as part of the SDK installer package.
- Commercial License Usage
- Licensees holding valid commercial licenses to the AUDIOKINETIC Wwise Technology
- may use this file in accordance with the end user license agreement provided
- with the software or, alternatively, in accordance with the terms contained in a
- written agreement between you and Audiokinetic Inc.
- Apache License Usage
- Alternatively, this file may be used under the Apache License, Version 2.0 (the
- "Apache License"); you may not use this file except in compliance with the
- Apache License. You may obtain a copy of the Apache License at
- http://www.apache.org/licenses/LICENSE-2.0.
- Unless required by applicable law or agreed to in writing, software distributed
- under the Apache License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
- OR CONDITIONS OF ANY KIND, either express or implied. See the Apache License for
- the specific language governing permissions and limitations under the License.
- Copyright (c) 2023 Audiokinetic Inc.
- *******************************************************************************/
- // AkMacSoundEngine.h
- /// \file
- /// Main Sound Engine interface, specific Mac.
- #ifndef _AK_MAC_SOUND_ENGINE_H_
- #define _AK_MAC_SOUND_ENGINE_H_
- #include <AK/SoundEngine/Common/AkTypes.h>
- #include <AK/Tools/Common/AkPlatformFuncs.h>
- /// \cond !(Web)
- /// Platform specific initialization settings
- /// \sa AK::SoundEngine::Init
- /// \sa AK::SoundEngine::GetDefaultPlatformInitSettings
- struct AkPlatformInitSettings
- {
- // Threading model.
- AkThreadProperties threadLEngine; ///< Lower engine threading properties
- AkThreadProperties threadOutputMgr; ///< Ouput thread threading properties
- AkThreadProperties threadBankManager; ///< Bank manager threading properties (its default priority is AK_THREAD_PRIORITY_NORMAL)
- AkThreadProperties threadMonitor; ///< Monitor threading properties (its default priority is AK_THREAD_PRIORITY_ABOVENORMAL). This parameter is not used in Release build.
-
- AkUInt32 uSampleRate; ///< Sampling Rate. Default 48000 Hz
- // Voices.
- AkUInt16 uNumRefillsInVoice; ///< Number of refill buffers in voice buffer. 2 == double-buffered, defaults to 4.
- };
- /// \endcond
- #endif //_AK_MAC_SOUND_ENGINE_H_
|