AkAudioMarker.h 1022 B

123456789101112131415161718192021
  1. /***********************************************************************
  2. The content of this file includes source code for the sound engine
  3. portion of the AUDIOKINETIC Wwise Technology and constitutes "Level
  4. Two Source Code" as defined in the Source Code Addendum attached
  5. with this file. Any use of the Level Two Source Code shall be
  6. subject to the terms and conditions outlined in the Source Code
  7. Addendum and the End User License Agreement for Wwise(R).
  8. Copyright (c) 2023 Audiokinetic Inc.
  9. ***********************************************************************/
  10. #pragma once
  11. /// Defines the parameters of a marker.
  12. struct AkAudioMarker
  13. {
  14. AkUInt32 dwIdentifier; ///< Identifier.
  15. AkUInt32 dwPosition; ///< Position in the audio data in sample frames.
  16. const char* strLabel; ///< Label of the marker taken from the file.
  17. AkUInt32 dwLabelSize; ///< Length of label read the from the file + terminating null character.
  18. };