menu
Version
2024.1.3.8749
2024.1.3.8749
2023.1.11.8682
2022.1.18.8567
2021.1.14.8108
2019.2.15.7667
2019.1.11.7296
2018.1.11.6987
2017.2.10.6745
2017.1.9.6501
2016.2.6.6153
2015.1.9.5624
2024.1.3.8749
2023.1.11.8682
2022.1.18.8567
2021.1.14.8108
2019.2.15.7667
2019.1.11.7296
2018.1.11.6987
2017.2.10.6745
2017.1.9.6501
2016.2.6.6153
2015.1.9.5624
Go to the source code of this file.
Namespaces | |
namespace | AK |
Definition of data structures for AkAudioObject. | |
Macros | |
#define | READBANKDATA(_Type, _Ptr, _Size) AK::ReadBankData<_Type>( _Ptr ) |
Read and return bank data of a given type, incrementing running pointer and decrementing block size for debug tracking purposes. More... | |
#define | READVARIABLESIZEBANKDATA(_Type, _Ptr, _Size) AK::ReadVariableSizeBankData<_Type>( _Ptr ) |
#define | READBANKSTRING(_Ptr, _Size, _out_StringSize) AK::ReadBankStringUtf8( _Ptr, _out_StringSize ) |
#define | SKIPBANKDATA(_Type, _Ptr, _Size) ( _Ptr ) += sizeof( _Type ) |
Skip over some bank data of a given type, incrementing running pointer and decrementing block size for debug tracking purposes. More... | |
#define | SKIPBANKBYTES(_NumBytes, _Ptr, _Size) ( _Ptr ) += _NumBytes; |
Skip over some bank data by a given size in bytes, incrementing running pointer and decrementing block size for debug tracking purposes. More... | |
#define | COPYBANKSTRING_CHAR(_Ptr, _Size, _OutPtr, _MaxPtrSize) |
Read and copy to a null-terminated UTF-8 string conversion from string stored in bank. More... | |
#define | COPYBANKSTRING_OSCHAR(_Ptr, _Size, _OutPtr, _MaxPtrSize) |
Read and copy to a null-terminated OSChar string conversion from string stored in bank. More... | |
#define | COPYBANKSTRING_WCHAR(_Ptr, _Size, OutPtr, _MaxPtrSize) |
Read and copy to a null-terminated wchar_t string conversion from string stored in bank. More... | |
#define | GETBANKDATABIT(_Data, _Shift) (((_Data) >> (_Shift)) & 0x1) |
#define | CHECKBANKDATASIZE(_DATASIZE_, _ERESULT_) |
Helper macro to determine whether the full content of a block of memory was properly parsed. More... | |
Functions | |
template<typename T , typename std::enable_if< std::is_fundamental< T >::value||std::is_enum< T >::value, bool >::type = true> | |
T | AK::ReadUnaligned (const AkUInt8 *in_pVal) |
template<typename T , typename std::enable_if< std::is_fundamental< T >::value||std::is_enum< T >::value, bool >::type = true> | |
void | AK::WriteUnaligned (AkUInt8 *out_pVal, const T in_val) |
template<typename T , typename std::enable_if< std::is_class< T >::value, bool >::type = true> | |
void | AK::WriteUnaligned (AkUInt8 *out_pVal, const T &in_val) |
template<typename T > | |
T | AK::ReadBankData (AkUInt8 *&in_rptr) |
Read data from bank and advance pointer. More... | |
template<typename T > | |
T | AK::ReadVariableSizeBankData (AkUInt8 *&in_rptr) |
char * | AK::ReadBankStringUtf8 (AkUInt8 *&in_rptr, AkUInt32 &out_uStringSize) |
Questions? Problems? Need more info? Contact us, and we can help!
Visit our Support pageRegister your project and we'll help you get started with no strings attached!
Get started with Wwise