From c202b30d19ac74803bd21619ecaaa1e357dbe2e6 Mon Sep 17 00:00:00 2001 From: Michael Campagnaro Date: Tue, 20 Jun 2023 17:19:11 -0400 Subject: [PATCH] Add Windows bindings --- .editorconfig | 21 + .gitignore | 2 + .gitmodules | 3 + LICENSE | 45 + README.md | 23 + generate.jai | 147 + module.jai | 15 + source | 1 + windows.jai | 8856 +++++++++++++++++++++++++++++++++++++++++ windows/miniaudio.lib | Bin 0 -> 2697456 bytes 10 files changed, 9113 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitignore create mode 100644 .gitmodules create mode 100644 LICENSE create mode 100644 README.md create mode 100644 generate.jai create mode 100644 module.jai create mode 160000 source create mode 100644 windows.jai create mode 100644 windows/miniaudio.lib diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..dd4f1c7 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,21 @@ +# EditorConfig helps developers define and maintain consistent +# coding styles # between different editors and IDEs +# editorconfig.org + +root = true + +[*] +indent_style = space +indent_size = 4 + +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.bat] +end_of_line = crlf + +[*.tsv] +indent_style = tab + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9b26ab6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.exe +*.pdb diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..739cbff --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "source"] + path = source + url = git@github.com:mackron/miniaudio.git diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..7071a95 --- /dev/null +++ b/LICENSE @@ -0,0 +1,45 @@ +This software is available as a choice of the following licenses. Choose +whichever you prefer. + +=============================================================================== +ALTERNATIVE 1 - Public Domain (www.unlicense.org) +=============================================================================== +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or distribute this +software, either in source code form or as a compiled binary, for any purpose, +commercial or non-commercial, and by any means. + +In jurisdictions that recognize copyright laws, the author or authors of this +software dedicate any and all copyright interest in the software to the public +domain. We make this dedication for the benefit of the public at large and to +the detriment of our heirs and successors. We intend this dedication to be an +overt act of relinquishment in perpetuity of all present and future rights to +this software under copyright law. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN +ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +For more information, please refer to + +=============================================================================== +ALTERNATIVE 2 - MIT No Attribution +=============================================================================== +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..1816067 --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +# miniaudio.jai + +Jai bindings for [miniaudio](https://github.com/mackron/miniaudio) + +## Initial setup + +If you want to build the lib then you'll need the source code. You can do this with: `git submodule update --init --recursive`. +In the future if you need to pull in the source submodule again (e.g. the folder got deleted), then run: `git submodule update --recursive` + +## Usage + +Simply import the module. If you're using a static library version then you're set. If you generated a DLL (and new bindings to load it) then you need to copy the DLL from the windows/ folder to the working directory of your exe. + +## TODO + +* Manually add these static inline implementations + ./source/extras/miniaudio_split/miniaudio.h:2407:28: Stripping function that’s missing from foreign libs: ma_get_bytes_per_frame + ./source/extras/miniaudio_split/miniaudio.h:6005:25: Stripping function that’s missing from foreign libs: ma_offset_pcm_frames_ptr_f32 + ./source/extras/miniaudio_split/miniaudio.h:6006:31: Stripping function that’s missing from foreign libs: ma_offset_pcm_frames_const_ptr_f32 +* Replace malloc, realloc, free with Jai procs. +* Add support for other platforms (currently only supporting Windows). +* Review bindings to see if any declarations are missing. + diff --git a/generate.jai b/generate.jai new file mode 100644 index 0000000..dba3d61 --- /dev/null +++ b/generate.jai @@ -0,0 +1,147 @@ +AT_COMPILE_TIME :: true; +COMPILE :: true; // Enable to compile the miniaudio library from source before generating bindings. +COMPILE_DEBUG :: false; // Compile a debug or release version of miniaudio + +MAKE_DYNAMIC_LIB :: false; // Will make a static lib if false. + +// There are a bunch of defines that you can set to configure the library to +// your liking. Check out heading "2.7. Build Options" in the miniaudio source +// file for the full list. +// +// We're using the default configuration, with the option to enable debug +// logging and to specify which decoders you want to support. You can easily +// add your own defines by including them in the extra array in generate_bindings(). +ENABLE_MINIAUDIO_DEBUG_LOGS :: false; + +MINIAUDIO_SUPPORTED_DECODERS: Libs : .WAV | .FLAC | .MP3; // @consider making this a metaprogram/command line arg. Can then use this as a git submodule in a project and a script/build file can generate bindings for what the project requires. + +Libs :: enum_flags { + WAV; + FLAC; + MP3; +} + +SOURCE_PATH :: "source/extras/miniaudio_split"; + +#if AT_COMPILE_TIME { + #run { + set_build_options_dc(.{do_output=false}); + if !generate_bindings() { + compiler_set_workspace_status(.FAILED); + } + } +} +else { + #import "System"; + + main :: () { + set_working_directory(path_strip_filename(get_path_of_running_executable())); + if !generate_bindings() { + exit(1); + } + } +} + +generate_bindings :: () -> bool { + extra: [..] string; + array_add(*extra, "/DMINIAUDIO_IMPLEMENTATION"); + + #if ENABLE_MINIAUDIO_DEBUG_LOGS { + array_add(*extra, "/DMA_DEBUG_OUTPUT"); + } + + libs := type_info(Libs); + for libs.names { + if !(MINIAUDIO_SUPPORTED_DECODERS & (xx libs.values[it_index])) { + array_add(*extra, tprint("/DMA_NO_%", it)); + } + } + + #if COMPILE { + #import "BuildCpp"; + + src_file := tprint("%/miniaudio.c", SOURCE_PATH); + success := false; + + #if OS == .WINDOWS { + make_directory_if_it_does_not_exist("windows"); + + #if MAKE_DYNAMIC_LIB { + array_add(*extra, "/DMA_DLL"); + success = build_cpp_dynamic_lib("windows/miniaudio", src_file, extra = extra, debug = COMPILE_DEBUG); + } + else { + success = build_cpp_static_lib("windows/miniaudio", src_file, extra = extra, debug = COMPILE_DEBUG); + if success { + // Remove existing DLL otherwise the bindings will have a "#library" directive that loads the DLL. The lib version is "#library,no_dll" + if file_exists("windows/miniaudio.dll") { + deleted := file_delete("windows/miniaudio.dll"); + if !deleted { + log_error("Failed to remove existing miniaudio.dll from the windows/ folder.\n\n"); + success = false; + } + } + } + } + } + else { + log_error("This OS isn't supported yet.\n"); + } + + if !success return false; + } + + output_filename: string; + opts: Generate_Bindings_Options; + { + using opts; + + #if OS == .WINDOWS { + array_add(*libpaths, "windows"); + output_filename = "windows.jai"; + } + else { + log_error("This OS isn't supported yet.\n"); + return false; + } + + array_add(*libpaths, "."); + array_add(*libnames, "miniaudio"); + array_add(*system_include_paths, GENERATOR_DEFAULT_SYSTEM_INCLUDE_PATH); + array_add(*include_paths, SOURCE_PATH); + array_add(*source_files, tprint("%/miniaudio.h", SOURCE_PATH)); + + array_add(*extra_clang_arguments, "-x", "c++", "-DWIN32_LEAN_AND_MEAN"); + + #if MAKE_DYNAMIC_LIB { + array_add(*extra_clang_arguments, "-DMA_DLL"); + } + + #if ENABLE_MINIAUDIO_DEBUG_LOGS { + array_add(*extra_clang_arguments, "-DMA_DEBUG_OUTPUT"); + } + + libs := type_info(Libs); + for libs.names { + if !(MINIAUDIO_SUPPORTED_DECODERS & (xx libs.values[it_index])) { + array_add(*extra_clang_arguments, tprint("-DMA_NO_%", it)); + } + } + + strip_enum_prefixes = false; + auto_detect_enum_prefixes = false; + + log_stripped_declarations = true; // Set to true if things aren't working... + generate_compile_time_struct_checks = true; + } + return generate_bindings(opts, output_filename); +} + +#scope_file + +#import "Basic"; +#import "Bindings_Generator"; +#import "Compiler"; +#import "File"; +#import "File_Utilities"; + diff --git a/module.jai b/module.jai new file mode 100644 index 0000000..b66d296 --- /dev/null +++ b/module.jai @@ -0,0 +1,15 @@ +#scope_module + +size_t :: s64; +DWORDLONG :: u64; + +#import "Basic"; + +#if OS == .WINDOWS { + #import "Windows"; + #load "windows.jai"; +} +else { + assert(false); +} + diff --git a/source b/source new file mode 160000 index 0000000..3898fff --- /dev/null +++ b/source @@ -0,0 +1 @@ +Subproject commit 3898fff8ed923e118326bf07822961d222cb2a9a diff --git a/windows.jai b/windows.jai new file mode 100644 index 0000000..aeaf09d --- /dev/null +++ b/windows.jai @@ -0,0 +1,8856 @@ +// +// This file was auto-generated using the following command: +// +// jai generate.jai +// + + + +MA_VERSION_MAJOR :: 0; +MA_VERSION_MINOR :: 11; +MA_VERSION_REVISION :: 18; + +MA_SIZEOF_PTR :: 8; + +MA_TRUE :: 1; +MA_FALSE :: 0; + +MA_SIZE_MAX :: 0xFFFFFFFF; + +MA_SIMD_ALIGNMENT :: 32; + +MA_MIN_CHANNELS :: 1; + +MA_MAX_CHANNELS :: 254; + +MA_MAX_FILTER_ORDER :: 8; + +MA_MAX_LOG_CALLBACKS :: 4; + +MA_CHANNEL_INDEX_NULL :: 255; + +MA_DATA_SOURCE_SELF_MANAGED_RANGE_AND_LOOP_POINT :: 0x00000001; + +MA_DATA_FORMAT_FLAG_EXCLUSIVE_MODE :: 1 << 1; + +MA_MAX_DEVICE_NAME_LENGTH :: 255; + +ma_resource_manager_job :: ma_job; +ma_resource_manager_job_init :: ma_job_init; + +ma_resource_manager_job_queue_config :: ma_job_queue_config; +ma_resource_manager_job_queue_config_init :: ma_job_queue_config_init; +ma_resource_manager_job_queue :: ma_job_queue; +ma_resource_manager_job_queue_get_heap_size :: ma_job_queue_get_heap_size; +ma_resource_manager_job_queue_init_preallocated :: ma_job_queue_init_preallocated; +ma_resource_manager_job_queue_init :: ma_job_queue_init; +ma_resource_manager_job_queue_uninit :: ma_job_queue_uninit; +ma_resource_manager_job_queue_post :: ma_job_queue_post; +ma_resource_manager_job_queue_next :: ma_job_queue_next; + +MA_RESOURCE_MANAGER_MAX_JOB_THREAD_COUNT :: 64; + +MA_MAX_NODE_BUS_COUNT :: 254; + +MA_MAX_NODE_LOCAL_BUS_COUNT :: 2; + +MA_NODE_BUS_COUNT_UNKNOWN :: 255; + +MA_ENGINE_MAX_LISTENERS :: 4; + +MA_LISTENER_INDEX_CLOSEST :: cast,trunc(ma_uint8)-1; + +MA_SOUND_SOURCE_CHANNEL_COUNT :: 0xFFFFFFFF; + +ma_int8 :: s8; +ma_uint8 :: u8; +ma_int16 :: s16; +ma_uint16 :: u16; +ma_int32 :: s32; +ma_uint32 :: u32; + +ma_int64 :: s64; +ma_uint64 :: u64; + +ma_uintptr :: ma_uint64; + +ma_bool8 :: ma_uint8; +ma_bool32 :: ma_uint32; + +/* These float types are not used universally by miniaudio. It's to simplify some macro expansion for atomic types. */ +ma_float :: float; +ma_double :: float64; + +ma_handle :: *void; +ma_ptr :: *void; + +ma_proc :: *void; + +ma_wchar_win32 :: s16; + +/* +Logging Levels +============== +Log levels are only used to give logging callbacks some context as to the severity of a log message +so they can do filtering. All log levels will be posted to registered logging callbacks. If you +don't want to output a certain log level you can discriminate against the log level in the callback. + +MA_LOG_LEVEL_DEBUG +Used for debugging. Useful for debug and test builds, but should be disabled in release builds. + +MA_LOG_LEVEL_INFO +Informational logging. Useful for debugging. This will never be called from within the data +callback. + +MA_LOG_LEVEL_WARNING +Warnings. You should enable this in you development builds and action them when encounted. These +logs usually indicate a potential problem or misconfiguration, but still allow you to keep +running. This will never be called from within the data callback. + +MA_LOG_LEVEL_ERROR +Error logging. This will be fired when an operation fails and is subsequently aborted. This can +be fired from within the data callback, in which case the device will be stopped. You should +always have this log level enabled. +*/ +ma_log_level :: enum s32 { + MA_LOG_LEVEL_DEBUG :: 4; + MA_LOG_LEVEL_INFO :: 3; + MA_LOG_LEVEL_WARNING :: 2; + MA_LOG_LEVEL_ERROR :: 1; +} + +ma_channel :: ma_uint8; +_ma_channel_position :: enum s32 { + MA_CHANNEL_NONE :: 0; + MA_CHANNEL_MONO :: 1; + MA_CHANNEL_FRONT_LEFT :: 2; + MA_CHANNEL_FRONT_RIGHT :: 3; + MA_CHANNEL_FRONT_CENTER :: 4; + MA_CHANNEL_LFE :: 5; + MA_CHANNEL_BACK_LEFT :: 6; + MA_CHANNEL_BACK_RIGHT :: 7; + MA_CHANNEL_FRONT_LEFT_CENTER :: 8; + MA_CHANNEL_FRONT_RIGHT_CENTER :: 9; + MA_CHANNEL_BACK_CENTER :: 10; + MA_CHANNEL_SIDE_LEFT :: 11; + MA_CHANNEL_SIDE_RIGHT :: 12; + MA_CHANNEL_TOP_CENTER :: 13; + MA_CHANNEL_TOP_FRONT_LEFT :: 14; + MA_CHANNEL_TOP_FRONT_CENTER :: 15; + MA_CHANNEL_TOP_FRONT_RIGHT :: 16; + MA_CHANNEL_TOP_BACK_LEFT :: 17; + MA_CHANNEL_TOP_BACK_CENTER :: 18; + MA_CHANNEL_TOP_BACK_RIGHT :: 19; + MA_CHANNEL_AUX_0 :: 20; + MA_CHANNEL_AUX_1 :: 21; + MA_CHANNEL_AUX_2 :: 22; + MA_CHANNEL_AUX_3 :: 23; + MA_CHANNEL_AUX_4 :: 24; + MA_CHANNEL_AUX_5 :: 25; + MA_CHANNEL_AUX_6 :: 26; + MA_CHANNEL_AUX_7 :: 27; + MA_CHANNEL_AUX_8 :: 28; + MA_CHANNEL_AUX_9 :: 29; + MA_CHANNEL_AUX_10 :: 30; + MA_CHANNEL_AUX_11 :: 31; + MA_CHANNEL_AUX_12 :: 32; + MA_CHANNEL_AUX_13 :: 33; + MA_CHANNEL_AUX_14 :: 34; + MA_CHANNEL_AUX_15 :: 35; + MA_CHANNEL_AUX_16 :: 36; + MA_CHANNEL_AUX_17 :: 37; + MA_CHANNEL_AUX_18 :: 38; + MA_CHANNEL_AUX_19 :: 39; + MA_CHANNEL_AUX_20 :: 40; + MA_CHANNEL_AUX_21 :: 41; + MA_CHANNEL_AUX_22 :: 42; + MA_CHANNEL_AUX_23 :: 43; + MA_CHANNEL_AUX_24 :: 44; + MA_CHANNEL_AUX_25 :: 45; + MA_CHANNEL_AUX_26 :: 46; + MA_CHANNEL_AUX_27 :: 47; + MA_CHANNEL_AUX_28 :: 48; + MA_CHANNEL_AUX_29 :: 49; + MA_CHANNEL_AUX_30 :: 50; + MA_CHANNEL_AUX_31 :: 51; + MA_CHANNEL_LEFT :: 2; + MA_CHANNEL_RIGHT :: 3; + MA_CHANNEL_POSITION_COUNT :: 52; +} + +ma_result :: enum s32 { + MA_SUCCESS :: 0; + MA_ERROR :: -1; + MA_INVALID_ARGS :: -2; + MA_INVALID_OPERATION :: -3; + MA_OUT_OF_MEMORY :: -4; + MA_OUT_OF_RANGE :: -5; + MA_ACCESS_DENIED :: -6; + MA_DOES_NOT_EXIST :: -7; + MA_ALREADY_EXISTS :: -8; + MA_TOO_MANY_OPEN_FILES :: -9; + MA_INVALID_FILE :: -10; + MA_TOO_BIG :: -11; + MA_PATH_TOO_LONG :: -12; + MA_NAME_TOO_LONG :: -13; + MA_NOT_DIRECTORY :: -14; + MA_IS_DIRECTORY :: -15; + MA_DIRECTORY_NOT_EMPTY :: -16; + MA_AT_END :: -17; + MA_NO_SPACE :: -18; + MA_BUSY :: -19; + MA_IO_ERROR :: -20; + MA_INTERRUPT :: -21; + MA_UNAVAILABLE :: -22; + MA_ALREADY_IN_USE :: -23; + MA_BAD_ADDRESS :: -24; + MA_BAD_SEEK :: -25; + MA_BAD_PIPE :: -26; + MA_DEADLOCK :: -27; + MA_TOO_MANY_LINKS :: -28; + MA_NOT_IMPLEMENTED :: -29; + MA_NO_MESSAGE :: -30; + MA_BAD_MESSAGE :: -31; + MA_NO_DATA_AVAILABLE :: -32; + MA_INVALID_DATA :: -33; + MA_TIMEOUT :: -34; + MA_NO_NETWORK :: -35; + MA_NOT_UNIQUE :: -36; + MA_NOT_SOCKET :: -37; + MA_NO_ADDRESS :: -38; + MA_BAD_PROTOCOL :: -39; + MA_PROTOCOL_UNAVAILABLE :: -40; + MA_PROTOCOL_NOT_SUPPORTED :: -41; + MA_PROTOCOL_FAMILY_NOT_SUPPORTED :: -42; + MA_ADDRESS_FAMILY_NOT_SUPPORTED :: -43; + MA_SOCKET_NOT_SUPPORTED :: -44; + MA_CONNECTION_RESET :: -45; + MA_ALREADY_CONNECTED :: -46; + MA_NOT_CONNECTED :: -47; + MA_CONNECTION_REFUSED :: -48; + MA_NO_HOST :: -49; + MA_IN_PROGRESS :: -50; + MA_CANCELLED :: -51; + MA_MEMORY_ALREADY_MAPPED :: -52; + + MA_CRC_MISMATCH :: -100; + + MA_FORMAT_NOT_SUPPORTED :: -200; + MA_DEVICE_TYPE_NOT_SUPPORTED :: -201; + MA_SHARE_MODE_NOT_SUPPORTED :: -202; + MA_NO_BACKEND :: -203; + MA_NO_DEVICE :: -204; + MA_API_NOT_FOUND :: -205; + MA_INVALID_DEVICE_CONFIG :: -206; + MA_LOOP :: -207; + MA_BACKEND_NOT_ENABLED :: -208; + + MA_DEVICE_NOT_INITIALIZED :: -300; + MA_DEVICE_ALREADY_INITIALIZED :: -301; + MA_DEVICE_NOT_STARTED :: -302; + MA_DEVICE_NOT_STOPPED :: -303; + + MA_FAILED_TO_INIT_BACKEND :: -400; + MA_FAILED_TO_OPEN_BACKEND_DEVICE :: -401; + MA_FAILED_TO_START_BACKEND_DEVICE :: -402; + MA_FAILED_TO_STOP_BACKEND_DEVICE :: -403; +} + +ma_stream_format :: enum s32 { + ma_stream_format_pcm :: 0; +} + +ma_stream_layout :: enum s32 { + ma_stream_layout_interleaved :: 0; + ma_stream_layout_deinterleaved :: 1; +} + +ma_dither_mode :: enum s32 { + ma_dither_mode_none :: 0; + ma_dither_mode_rectangle :: 1; + ma_dither_mode_triangle :: 2; +} + +ma_format :: enum s32 { + ma_format_unknown :: 0; + ma_format_u8 :: 1; + ma_format_s16 :: 2; + ma_format_s24 :: 3; + ma_format_s32 :: 4; + ma_format_f32 :: 5; + ma_format_count :: 6; +} + +ma_standard_sample_rate :: enum s32 { + ma_standard_sample_rate_48000 :: 48000; + ma_standard_sample_rate_44100 :: 44100; + + ma_standard_sample_rate_32000 :: 32000; + ma_standard_sample_rate_24000 :: 24000; + ma_standard_sample_rate_22050 :: 22050; + + ma_standard_sample_rate_88200 :: 88200; + ma_standard_sample_rate_96000 :: 96000; + ma_standard_sample_rate_176400 :: 176400; + ma_standard_sample_rate_192000 :: 192000; + + ma_standard_sample_rate_16000 :: 16000; + ma_standard_sample_rate_11025 :: 11250; + ma_standard_sample_rate_8000 :: 8000; + + ma_standard_sample_rate_352800 :: 352800; + ma_standard_sample_rate_384000 :: 384000; + + ma_standard_sample_rate_min :: 8000; + ma_standard_sample_rate_max :: 384000; + ma_standard_sample_rate_count :: 14; +} + +ma_channel_mix_mode :: enum s32 { + ma_channel_mix_mode_rectangular :: 0; + ma_channel_mix_mode_simple :: 1; + ma_channel_mix_mode_custom_weights :: 2; + ma_channel_mix_mode_default :: 0; +} + +ma_standard_channel_map :: enum s32 { + ma_standard_channel_map_microsoft :: 0; + ma_standard_channel_map_alsa :: 1; + ma_standard_channel_map_rfc3551 :: 2; + ma_standard_channel_map_flac :: 3; + ma_standard_channel_map_vorbis :: 4; + ma_standard_channel_map_sound4 :: 5; + ma_standard_channel_map_sndio :: 6; + ma_standard_channel_map_webaudio :: 3; + ma_standard_channel_map_default :: 0; +} + +ma_performance_profile :: enum s32 { + ma_performance_profile_low_latency :: 0; + ma_performance_profile_conservative :: 1; +} + +ma_allocation_callbacks :: struct { + pUserData: *void; + onMalloc: #type (sz: size_t, pUserData: *void) -> *void #c_call; + onRealloc: #type (p: *void, sz: size_t, pUserData: *void) -> *void #c_call; + onFree: #type (p: *void, pUserData: *void) -> void #c_call; +} + +ma_lcg :: struct { + state: ma_int32; +} + +ma_atomic_uint32 :: struct { + value: ma_uint32; +} +ma_atomic_int32 :: struct { + value: ma_int32; +} +ma_atomic_uint64 :: struct { + value: ma_uint64; +} +ma_atomic_float :: struct { + value: ma_float; +} +ma_atomic_bool32 :: struct { + value: ma_bool32; +} + +/* Spinlocks are 32-bit for compatibility reasons. */ +ma_spinlock :: ma_uint32; + +/* Thread priorities should be ordered such that the default priority of the worker thread is 0. */ +ma_thread_priority :: enum s32 { + ma_thread_priority_idle :: -5; + ma_thread_priority_lowest :: -4; + ma_thread_priority_low :: -3; + ma_thread_priority_normal :: -2; + ma_thread_priority_high :: -1; + ma_thread_priority_highest :: 0; + ma_thread_priority_realtime :: 1; + ma_thread_priority_default :: 0; +} + +ma_thread :: ma_handle; + +ma_mutex :: ma_handle; + +ma_event :: ma_handle; + +ma_semaphore :: ma_handle; + +/* +Retrieves the version of miniaudio as separated integers. Each component can be NULL if it's not required. +*/ +ma_version :: (pMajor: *ma_uint32, pMinor: *ma_uint32, pRevision: *ma_uint32) -> void #foreign miniaudio; + +/* +Retrieves the version of miniaudio as a string which can be useful for logging purposes. +*/ +ma_version_string :: () -> *u8 #foreign miniaudio; + +/* +The callback for handling log messages. + + +Parameters +---------- +pUserData (in) +The user data pointer that was passed into ma_log_register_callback(). + +logLevel (in) +The log level. This can be one of the following: + ++----------------------+ +| Log Level | ++----------------------+ +| MA_LOG_LEVEL_DEBUG | +| MA_LOG_LEVEL_INFO | +| MA_LOG_LEVEL_WARNING | +| MA_LOG_LEVEL_ERROR | ++----------------------+ + +pMessage (in) +The log message. +*/ +ma_log_callback_proc :: #type (pUserData: *void, level: ma_uint32, pMessage: *u8) -> void #c_call; + +ma_log_callback :: struct { + onLog: ma_log_callback_proc; + pUserData: *void; +} + +ma_log_callback_init :: (onLog: ma_log_callback_proc, pUserData: *void) -> ma_log_callback #foreign miniaudio; + +ma_log :: struct { + callbacks: [4] ma_log_callback; + callbackCount: ma_uint32; + allocationCallbacks: ma_allocation_callbacks; /* Need to store these persistently because ma_log_postv() might need to allocate a buffer on the heap. */ + + lock: ma_mutex; /* For thread safety just to make it easier and safer for the logging implementation. */ +} + +ma_log_init :: (pAllocationCallbacks: *ma_allocation_callbacks, pLog: *ma_log) -> ma_result #foreign miniaudio; +ma_log_uninit :: (pLog: *ma_log) -> void #foreign miniaudio; +ma_log_register_callback :: (pLog: *ma_log, callback: ma_log_callback) -> ma_result #foreign miniaudio; +ma_log_unregister_callback :: (pLog: *ma_log, callback: ma_log_callback) -> ma_result #foreign miniaudio; +ma_log_post :: (pLog: *ma_log, level: ma_uint32, pMessage: *u8) -> ma_result #foreign miniaudio; + +ma_log_postf_CFormat :: (pLog: *ma_log, level: ma_uint32, pFormat: *u8, __args: ..Any) -> ma_result #foreign miniaudio "ma_log_postf"; +ma_log_postf :: (pLog: *ma_log, level: ma_uint32, pFormat: string, __args: ..Any) -> ma_result { + push_allocator(temp); + formatted_text_builder: String_Builder; + print_to_builder(*formatted_text_builder, pFormat, ..__args); + append(*formatted_text_builder, "\0"); + formatted_text := builder_to_string(*formatted_text_builder); + return ma_log_postf_CFormat(pLog, level, "%s", formatted_text.data); +} @PrintLike + +/************************************************************************************************************************************************************** + +Biquad Filtering + +**************************************************************************************************************************************************************/ +ma_biquad_coefficient :: union { + f32: float; + _s32: ma_int32; +} + +ma_biquad_config :: struct { + format: ma_format; + channels: ma_uint32; + b0: float64; + b1: float64; + b2: float64; + a0: float64; + a1: float64; + a2: float64; +} + +ma_biquad_config_init :: (format: ma_format, channels: ma_uint32, b0: float64, b1: float64, b2: float64, a0: float64, a1: float64, a2: float64) -> ma_biquad_config #foreign miniaudio; + +ma_biquad :: struct { + format: ma_format; + channels: ma_uint32; + b0: ma_biquad_coefficient; + b1: ma_biquad_coefficient; + b2: ma_biquad_coefficient; + a1: ma_biquad_coefficient; + a2: ma_biquad_coefficient; + pR1: *ma_biquad_coefficient; + pR2: *ma_biquad_coefficient; + + /* Memory management. */ + _pHeap: *void; + _ownsHeap: ma_bool32; +} + +ma_biquad_get_heap_size :: (pConfig: *ma_biquad_config, pHeapSizeInBytes: *size_t) -> ma_result #foreign miniaudio; +ma_biquad_init_preallocated :: (pConfig: *ma_biquad_config, pHeap: *void, pBQ: *ma_biquad) -> ma_result #foreign miniaudio; +ma_biquad_init :: (pConfig: *ma_biquad_config, pAllocationCallbacks: *ma_allocation_callbacks, pBQ: *ma_biquad) -> ma_result #foreign miniaudio; +ma_biquad_uninit :: (pBQ: *ma_biquad, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_biquad_reinit :: (pConfig: *ma_biquad_config, pBQ: *ma_biquad) -> ma_result #foreign miniaudio; +ma_biquad_clear_cache :: (pBQ: *ma_biquad) -> ma_result #foreign miniaudio; +ma_biquad_process_pcm_frames :: (pBQ: *ma_biquad, pFramesOut: *void, pFramesIn: *void, frameCount: ma_uint64) -> ma_result #foreign miniaudio; +ma_biquad_get_latency :: (pBQ: *ma_biquad) -> ma_uint32 #foreign miniaudio; + +/************************************************************************************************************************************************************** + +Low-Pass Filtering + +**************************************************************************************************************************************************************/ +ma_lpf1_config :: struct { + format: ma_format; + channels: ma_uint32; + sampleRate: ma_uint32; + cutoffFrequency: float64; + q: float64; +} + +/************************************************************************************************************************************************************** + +Low-Pass Filtering + +**************************************************************************************************************************************************************/ +ma_lpf2_config :: ma_lpf1_config; + +ma_lpf1_config_init :: (format: ma_format, channels: ma_uint32, sampleRate: ma_uint32, cutoffFrequency: float64) -> ma_lpf1_config #foreign miniaudio; +ma_lpf2_config_init :: (format: ma_format, channels: ma_uint32, sampleRate: ma_uint32, cutoffFrequency: float64, q: float64) -> ma_lpf2_config #foreign miniaudio; + +ma_lpf1 :: struct { + format: ma_format; + channels: ma_uint32; + a: ma_biquad_coefficient; + pR1: *ma_biquad_coefficient; + + /* Memory management. */ + _pHeap: *void; + _ownsHeap: ma_bool32; +} + +ma_lpf1_get_heap_size :: (pConfig: *ma_lpf1_config, pHeapSizeInBytes: *size_t) -> ma_result #foreign miniaudio; +ma_lpf1_init_preallocated :: (pConfig: *ma_lpf1_config, pHeap: *void, pLPF: *ma_lpf1) -> ma_result #foreign miniaudio; +ma_lpf1_init :: (pConfig: *ma_lpf1_config, pAllocationCallbacks: *ma_allocation_callbacks, pLPF: *ma_lpf1) -> ma_result #foreign miniaudio; +ma_lpf1_uninit :: (pLPF: *ma_lpf1, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_lpf1_reinit :: (pConfig: *ma_lpf1_config, pLPF: *ma_lpf1) -> ma_result #foreign miniaudio; +ma_lpf1_clear_cache :: (pLPF: *ma_lpf1) -> ma_result #foreign miniaudio; +ma_lpf1_process_pcm_frames :: (pLPF: *ma_lpf1, pFramesOut: *void, pFramesIn: *void, frameCount: ma_uint64) -> ma_result #foreign miniaudio; +ma_lpf1_get_latency :: (pLPF: *ma_lpf1) -> ma_uint32 #foreign miniaudio; + +ma_lpf2 :: struct { + bq: ma_biquad; /* The second order low-pass filter is implemented as a biquad filter. */ +} + +ma_lpf2_get_heap_size :: (pConfig: *ma_lpf2_config, pHeapSizeInBytes: *size_t) -> ma_result #foreign miniaudio; +ma_lpf2_init_preallocated :: (pConfig: *ma_lpf2_config, pHeap: *void, pHPF: *ma_lpf2) -> ma_result #foreign miniaudio; +ma_lpf2_init :: (pConfig: *ma_lpf2_config, pAllocationCallbacks: *ma_allocation_callbacks, pLPF: *ma_lpf2) -> ma_result #foreign miniaudio; +ma_lpf2_uninit :: (pLPF: *ma_lpf2, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_lpf2_reinit :: (pConfig: *ma_lpf2_config, pLPF: *ma_lpf2) -> ma_result #foreign miniaudio; +ma_lpf2_clear_cache :: (pLPF: *ma_lpf2) -> ma_result #foreign miniaudio; +ma_lpf2_process_pcm_frames :: (pLPF: *ma_lpf2, pFramesOut: *void, pFramesIn: *void, frameCount: ma_uint64) -> ma_result #foreign miniaudio; +ma_lpf2_get_latency :: (pLPF: *ma_lpf2) -> ma_uint32 #foreign miniaudio; + +ma_lpf_config :: struct { + format: ma_format; + channels: ma_uint32; + sampleRate: ma_uint32; + cutoffFrequency: float64; + order: ma_uint32; /* If set to 0, will be treated as a passthrough (no filtering will be applied). */ +} + +ma_lpf_config_init :: (format: ma_format, channels: ma_uint32, sampleRate: ma_uint32, cutoffFrequency: float64, order: ma_uint32) -> ma_lpf_config #foreign miniaudio; + +ma_lpf :: struct { + format: ma_format; + channels: ma_uint32; + sampleRate: ma_uint32; + lpf1Count: ma_uint32; + lpf2Count: ma_uint32; + pLPF1: *ma_lpf1; + pLPF2: *ma_lpf2; + + /* Memory management. */ + _pHeap: *void; + _ownsHeap: ma_bool32; +} + +ma_lpf_get_heap_size :: (pConfig: *ma_lpf_config, pHeapSizeInBytes: *size_t) -> ma_result #foreign miniaudio; +ma_lpf_init_preallocated :: (pConfig: *ma_lpf_config, pHeap: *void, pLPF: *ma_lpf) -> ma_result #foreign miniaudio; +ma_lpf_init :: (pConfig: *ma_lpf_config, pAllocationCallbacks: *ma_allocation_callbacks, pLPF: *ma_lpf) -> ma_result #foreign miniaudio; +ma_lpf_uninit :: (pLPF: *ma_lpf, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_lpf_reinit :: (pConfig: *ma_lpf_config, pLPF: *ma_lpf) -> ma_result #foreign miniaudio; +ma_lpf_clear_cache :: (pLPF: *ma_lpf) -> ma_result #foreign miniaudio; +ma_lpf_process_pcm_frames :: (pLPF: *ma_lpf, pFramesOut: *void, pFramesIn: *void, frameCount: ma_uint64) -> ma_result #foreign miniaudio; +ma_lpf_get_latency :: (pLPF: *ma_lpf) -> ma_uint32 #foreign miniaudio; + +/************************************************************************************************************************************************************** + +High-Pass Filtering + +**************************************************************************************************************************************************************/ +ma_hpf1_config :: struct { + format: ma_format; + channels: ma_uint32; + sampleRate: ma_uint32; + cutoffFrequency: float64; + q: float64; +} + +/************************************************************************************************************************************************************** + +High-Pass Filtering + +**************************************************************************************************************************************************************/ +ma_hpf2_config :: ma_hpf1_config; + +ma_hpf1_config_init :: (format: ma_format, channels: ma_uint32, sampleRate: ma_uint32, cutoffFrequency: float64) -> ma_hpf1_config #foreign miniaudio; +ma_hpf2_config_init :: (format: ma_format, channels: ma_uint32, sampleRate: ma_uint32, cutoffFrequency: float64, q: float64) -> ma_hpf2_config #foreign miniaudio; + +ma_hpf1 :: struct { + format: ma_format; + channels: ma_uint32; + a: ma_biquad_coefficient; + pR1: *ma_biquad_coefficient; + + /* Memory management. */ + _pHeap: *void; + _ownsHeap: ma_bool32; +} + +ma_hpf1_get_heap_size :: (pConfig: *ma_hpf1_config, pHeapSizeInBytes: *size_t) -> ma_result #foreign miniaudio; +ma_hpf1_init_preallocated :: (pConfig: *ma_hpf1_config, pHeap: *void, pLPF: *ma_hpf1) -> ma_result #foreign miniaudio; +ma_hpf1_init :: (pConfig: *ma_hpf1_config, pAllocationCallbacks: *ma_allocation_callbacks, pHPF: *ma_hpf1) -> ma_result #foreign miniaudio; +ma_hpf1_uninit :: (pHPF: *ma_hpf1, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_hpf1_reinit :: (pConfig: *ma_hpf1_config, pHPF: *ma_hpf1) -> ma_result #foreign miniaudio; +ma_hpf1_process_pcm_frames :: (pHPF: *ma_hpf1, pFramesOut: *void, pFramesIn: *void, frameCount: ma_uint64) -> ma_result #foreign miniaudio; +ma_hpf1_get_latency :: (pHPF: *ma_hpf1) -> ma_uint32 #foreign miniaudio; + +ma_hpf2 :: struct { + bq: ma_biquad; /* The second order high-pass filter is implemented as a biquad filter. */ +} + +ma_hpf2_get_heap_size :: (pConfig: *ma_hpf2_config, pHeapSizeInBytes: *size_t) -> ma_result #foreign miniaudio; +ma_hpf2_init_preallocated :: (pConfig: *ma_hpf2_config, pHeap: *void, pHPF: *ma_hpf2) -> ma_result #foreign miniaudio; +ma_hpf2_init :: (pConfig: *ma_hpf2_config, pAllocationCallbacks: *ma_allocation_callbacks, pHPF: *ma_hpf2) -> ma_result #foreign miniaudio; +ma_hpf2_uninit :: (pHPF: *ma_hpf2, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_hpf2_reinit :: (pConfig: *ma_hpf2_config, pHPF: *ma_hpf2) -> ma_result #foreign miniaudio; +ma_hpf2_process_pcm_frames :: (pHPF: *ma_hpf2, pFramesOut: *void, pFramesIn: *void, frameCount: ma_uint64) -> ma_result #foreign miniaudio; +ma_hpf2_get_latency :: (pHPF: *ma_hpf2) -> ma_uint32 #foreign miniaudio; + +ma_hpf_config :: struct { + format: ma_format; + channels: ma_uint32; + sampleRate: ma_uint32; + cutoffFrequency: float64; + order: ma_uint32; /* If set to 0, will be treated as a passthrough (no filtering will be applied). */ +} + +ma_hpf_config_init :: (format: ma_format, channels: ma_uint32, sampleRate: ma_uint32, cutoffFrequency: float64, order: ma_uint32) -> ma_hpf_config #foreign miniaudio; + +ma_hpf :: struct { + format: ma_format; + channels: ma_uint32; + sampleRate: ma_uint32; + hpf1Count: ma_uint32; + hpf2Count: ma_uint32; + pHPF1: *ma_hpf1; + pHPF2: *ma_hpf2; + + /* Memory management. */ + _pHeap: *void; + _ownsHeap: ma_bool32; +} + +ma_hpf_get_heap_size :: (pConfig: *ma_hpf_config, pHeapSizeInBytes: *size_t) -> ma_result #foreign miniaudio; +ma_hpf_init_preallocated :: (pConfig: *ma_hpf_config, pHeap: *void, pLPF: *ma_hpf) -> ma_result #foreign miniaudio; +ma_hpf_init :: (pConfig: *ma_hpf_config, pAllocationCallbacks: *ma_allocation_callbacks, pHPF: *ma_hpf) -> ma_result #foreign miniaudio; +ma_hpf_uninit :: (pHPF: *ma_hpf, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_hpf_reinit :: (pConfig: *ma_hpf_config, pHPF: *ma_hpf) -> ma_result #foreign miniaudio; +ma_hpf_process_pcm_frames :: (pHPF: *ma_hpf, pFramesOut: *void, pFramesIn: *void, frameCount: ma_uint64) -> ma_result #foreign miniaudio; +ma_hpf_get_latency :: (pHPF: *ma_hpf) -> ma_uint32 #foreign miniaudio; + +/************************************************************************************************************************************************************** + +Band-Pass Filtering + +**************************************************************************************************************************************************************/ +ma_bpf2_config :: struct { + format: ma_format; + channels: ma_uint32; + sampleRate: ma_uint32; + cutoffFrequency: float64; + q: float64; +} + +ma_bpf2_config_init :: (format: ma_format, channels: ma_uint32, sampleRate: ma_uint32, cutoffFrequency: float64, q: float64) -> ma_bpf2_config #foreign miniaudio; + +ma_bpf2 :: struct { + bq: ma_biquad; /* The second order band-pass filter is implemented as a biquad filter. */ +} + +ma_bpf2_get_heap_size :: (pConfig: *ma_bpf2_config, pHeapSizeInBytes: *size_t) -> ma_result #foreign miniaudio; +ma_bpf2_init_preallocated :: (pConfig: *ma_bpf2_config, pHeap: *void, pBPF: *ma_bpf2) -> ma_result #foreign miniaudio; +ma_bpf2_init :: (pConfig: *ma_bpf2_config, pAllocationCallbacks: *ma_allocation_callbacks, pBPF: *ma_bpf2) -> ma_result #foreign miniaudio; +ma_bpf2_uninit :: (pBPF: *ma_bpf2, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_bpf2_reinit :: (pConfig: *ma_bpf2_config, pBPF: *ma_bpf2) -> ma_result #foreign miniaudio; +ma_bpf2_process_pcm_frames :: (pBPF: *ma_bpf2, pFramesOut: *void, pFramesIn: *void, frameCount: ma_uint64) -> ma_result #foreign miniaudio; +ma_bpf2_get_latency :: (pBPF: *ma_bpf2) -> ma_uint32 #foreign miniaudio; + +ma_bpf_config :: struct { + format: ma_format; + channels: ma_uint32; + sampleRate: ma_uint32; + cutoffFrequency: float64; + order: ma_uint32; /* If set to 0, will be treated as a passthrough (no filtering will be applied). */ +} + +ma_bpf_config_init :: (format: ma_format, channels: ma_uint32, sampleRate: ma_uint32, cutoffFrequency: float64, order: ma_uint32) -> ma_bpf_config #foreign miniaudio; + +ma_bpf :: struct { + format: ma_format; + channels: ma_uint32; + bpf2Count: ma_uint32; + pBPF2: *ma_bpf2; + + /* Memory management. */ + _pHeap: *void; + _ownsHeap: ma_bool32; +} + +ma_bpf_get_heap_size :: (pConfig: *ma_bpf_config, pHeapSizeInBytes: *size_t) -> ma_result #foreign miniaudio; +ma_bpf_init_preallocated :: (pConfig: *ma_bpf_config, pHeap: *void, pBPF: *ma_bpf) -> ma_result #foreign miniaudio; +ma_bpf_init :: (pConfig: *ma_bpf_config, pAllocationCallbacks: *ma_allocation_callbacks, pBPF: *ma_bpf) -> ma_result #foreign miniaudio; +ma_bpf_uninit :: (pBPF: *ma_bpf, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_bpf_reinit :: (pConfig: *ma_bpf_config, pBPF: *ma_bpf) -> ma_result #foreign miniaudio; +ma_bpf_process_pcm_frames :: (pBPF: *ma_bpf, pFramesOut: *void, pFramesIn: *void, frameCount: ma_uint64) -> ma_result #foreign miniaudio; +ma_bpf_get_latency :: (pBPF: *ma_bpf) -> ma_uint32 #foreign miniaudio; + +/************************************************************************************************************************************************************** + +Notching Filter + +**************************************************************************************************************************************************************/ +ma_notch2_config :: struct { + format: ma_format; + channels: ma_uint32; + sampleRate: ma_uint32; + q: float64; + frequency: float64; +} + +/************************************************************************************************************************************************************** + +Notching Filter + +**************************************************************************************************************************************************************/ +ma_notch_config :: ma_notch2_config; + +ma_notch2_config_init :: (format: ma_format, channels: ma_uint32, sampleRate: ma_uint32, q: float64, frequency: float64) -> ma_notch2_config #foreign miniaudio; + +ma_notch2 :: struct { + bq: ma_biquad; +} + +ma_notch2_get_heap_size :: (pConfig: *ma_notch2_config, pHeapSizeInBytes: *size_t) -> ma_result #foreign miniaudio; +ma_notch2_init_preallocated :: (pConfig: *ma_notch2_config, pHeap: *void, pFilter: *ma_notch2) -> ma_result #foreign miniaudio; +ma_notch2_init :: (pConfig: *ma_notch2_config, pAllocationCallbacks: *ma_allocation_callbacks, pFilter: *ma_notch2) -> ma_result #foreign miniaudio; +ma_notch2_uninit :: (pFilter: *ma_notch2, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_notch2_reinit :: (pConfig: *ma_notch2_config, pFilter: *ma_notch2) -> ma_result #foreign miniaudio; +ma_notch2_process_pcm_frames :: (pFilter: *ma_notch2, pFramesOut: *void, pFramesIn: *void, frameCount: ma_uint64) -> ma_result #foreign miniaudio; +ma_notch2_get_latency :: (pFilter: *ma_notch2) -> ma_uint32 #foreign miniaudio; + +/************************************************************************************************************************************************************** + +Peaking EQ Filter + +**************************************************************************************************************************************************************/ +ma_peak2_config :: struct { + format: ma_format; + channels: ma_uint32; + sampleRate: ma_uint32; + gainDB: float64; + q: float64; + frequency: float64; +} + +/************************************************************************************************************************************************************** + +Peaking EQ Filter + +**************************************************************************************************************************************************************/ +ma_peak_config :: ma_peak2_config; + +ma_peak2_config_init :: (format: ma_format, channels: ma_uint32, sampleRate: ma_uint32, gainDB: float64, q: float64, frequency: float64) -> ma_peak2_config #foreign miniaudio; + +ma_peak2 :: struct { + bq: ma_biquad; +} + +ma_peak2_get_heap_size :: (pConfig: *ma_peak2_config, pHeapSizeInBytes: *size_t) -> ma_result #foreign miniaudio; +ma_peak2_init_preallocated :: (pConfig: *ma_peak2_config, pHeap: *void, pFilter: *ma_peak2) -> ma_result #foreign miniaudio; +ma_peak2_init :: (pConfig: *ma_peak2_config, pAllocationCallbacks: *ma_allocation_callbacks, pFilter: *ma_peak2) -> ma_result #foreign miniaudio; +ma_peak2_uninit :: (pFilter: *ma_peak2, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_peak2_reinit :: (pConfig: *ma_peak2_config, pFilter: *ma_peak2) -> ma_result #foreign miniaudio; +ma_peak2_process_pcm_frames :: (pFilter: *ma_peak2, pFramesOut: *void, pFramesIn: *void, frameCount: ma_uint64) -> ma_result #foreign miniaudio; +ma_peak2_get_latency :: (pFilter: *ma_peak2) -> ma_uint32 #foreign miniaudio; + +/************************************************************************************************************************************************************** + +Low Shelf Filter + +**************************************************************************************************************************************************************/ +ma_loshelf2_config :: struct { + format: ma_format; + channels: ma_uint32; + sampleRate: ma_uint32; + gainDB: float64; + shelfSlope: float64; + frequency: float64; +} + +/************************************************************************************************************************************************************** + +Low Shelf Filter + +**************************************************************************************************************************************************************/ +ma_loshelf_config :: ma_loshelf2_config; + +ma_loshelf2_config_init :: (format: ma_format, channels: ma_uint32, sampleRate: ma_uint32, gainDB: float64, shelfSlope: float64, frequency: float64) -> ma_loshelf2_config #foreign miniaudio; + +ma_loshelf2 :: struct { + bq: ma_biquad; +} + +ma_loshelf2_get_heap_size :: (pConfig: *ma_loshelf2_config, pHeapSizeInBytes: *size_t) -> ma_result #foreign miniaudio; +ma_loshelf2_init_preallocated :: (pConfig: *ma_loshelf2_config, pHeap: *void, pFilter: *ma_loshelf2) -> ma_result #foreign miniaudio; +ma_loshelf2_init :: (pConfig: *ma_loshelf2_config, pAllocationCallbacks: *ma_allocation_callbacks, pFilter: *ma_loshelf2) -> ma_result #foreign miniaudio; +ma_loshelf2_uninit :: (pFilter: *ma_loshelf2, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_loshelf2_reinit :: (pConfig: *ma_loshelf2_config, pFilter: *ma_loshelf2) -> ma_result #foreign miniaudio; +ma_loshelf2_process_pcm_frames :: (pFilter: *ma_loshelf2, pFramesOut: *void, pFramesIn: *void, frameCount: ma_uint64) -> ma_result #foreign miniaudio; +ma_loshelf2_get_latency :: (pFilter: *ma_loshelf2) -> ma_uint32 #foreign miniaudio; + +/************************************************************************************************************************************************************** + +High Shelf Filter + +**************************************************************************************************************************************************************/ +ma_hishelf2_config :: struct { + format: ma_format; + channels: ma_uint32; + sampleRate: ma_uint32; + gainDB: float64; + shelfSlope: float64; + frequency: float64; +} + +/************************************************************************************************************************************************************** + +High Shelf Filter + +**************************************************************************************************************************************************************/ +ma_hishelf_config :: ma_hishelf2_config; + +ma_hishelf2_config_init :: (format: ma_format, channels: ma_uint32, sampleRate: ma_uint32, gainDB: float64, shelfSlope: float64, frequency: float64) -> ma_hishelf2_config #foreign miniaudio; + +ma_hishelf2 :: struct { + bq: ma_biquad; +} + +ma_hishelf2_get_heap_size :: (pConfig: *ma_hishelf2_config, pHeapSizeInBytes: *size_t) -> ma_result #foreign miniaudio; +ma_hishelf2_init_preallocated :: (pConfig: *ma_hishelf2_config, pHeap: *void, pFilter: *ma_hishelf2) -> ma_result #foreign miniaudio; +ma_hishelf2_init :: (pConfig: *ma_hishelf2_config, pAllocationCallbacks: *ma_allocation_callbacks, pFilter: *ma_hishelf2) -> ma_result #foreign miniaudio; +ma_hishelf2_uninit :: (pFilter: *ma_hishelf2, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_hishelf2_reinit :: (pConfig: *ma_hishelf2_config, pFilter: *ma_hishelf2) -> ma_result #foreign miniaudio; +ma_hishelf2_process_pcm_frames :: (pFilter: *ma_hishelf2, pFramesOut: *void, pFramesIn: *void, frameCount: ma_uint64) -> ma_result #foreign miniaudio; +ma_hishelf2_get_latency :: (pFilter: *ma_hishelf2) -> ma_uint32 #foreign miniaudio; + +/* +Delay +*/ +ma_delay_config :: struct { + channels: ma_uint32; + sampleRate: ma_uint32; + delayInFrames: ma_uint32; + delayStart: ma_bool32; /* Set to true to delay the start of the output; false otherwise. */ + wet: float; /* 0..1. Default = 1. */ + dry: float; /* 0..1. Default = 1. */ + decay: float; /* 0..1. Default = 0 (no feedback). Feedback decay. Use this for echo. */ +} + +ma_delay_config_init :: (channels: ma_uint32, sampleRate: ma_uint32, delayInFrames: ma_uint32, decay: float) -> ma_delay_config #foreign miniaudio; + +ma_delay :: struct { + config: ma_delay_config; + cursor: ma_uint32; /* Feedback is written to this cursor. Always equal or in front of the read cursor. */ + bufferSizeInFrames: ma_uint32; + pBuffer: *float; +} + +ma_delay_init :: (pConfig: *ma_delay_config, pAllocationCallbacks: *ma_allocation_callbacks, pDelay: *ma_delay) -> ma_result #foreign miniaudio; +ma_delay_uninit :: (pDelay: *ma_delay, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_delay_process_pcm_frames :: (pDelay: *ma_delay, pFramesOut: *void, pFramesIn: *void, frameCount: ma_uint32) -> ma_result #foreign miniaudio; +ma_delay_set_wet :: (pDelay: *ma_delay, value: float) -> void #foreign miniaudio; +ma_delay_get_wet :: (pDelay: *ma_delay) -> float #foreign miniaudio; +ma_delay_set_dry :: (pDelay: *ma_delay, value: float) -> void #foreign miniaudio; +ma_delay_get_dry :: (pDelay: *ma_delay) -> float #foreign miniaudio; +ma_delay_set_decay :: (pDelay: *ma_delay, value: float) -> void #foreign miniaudio; +ma_delay_get_decay :: (pDelay: *ma_delay) -> float #foreign miniaudio; + +/* Gainer for smooth volume changes. */ +ma_gainer_config :: struct { + channels: ma_uint32; + smoothTimeInFrames: ma_uint32; +} + +ma_gainer_config_init :: (channels: ma_uint32, smoothTimeInFrames: ma_uint32) -> ma_gainer_config #foreign miniaudio; + +ma_gainer :: struct { + config: ma_gainer_config; + t: ma_uint32; + masterVolume: float; + pOldGains: *float; + pNewGains: *float; + + /* Memory management. */ + _pHeap: *void; + _ownsHeap: ma_bool32; +} + +ma_gainer_get_heap_size :: (pConfig: *ma_gainer_config, pHeapSizeInBytes: *size_t) -> ma_result #foreign miniaudio; +ma_gainer_init_preallocated :: (pConfig: *ma_gainer_config, pHeap: *void, pGainer: *ma_gainer) -> ma_result #foreign miniaudio; +ma_gainer_init :: (pConfig: *ma_gainer_config, pAllocationCallbacks: *ma_allocation_callbacks, pGainer: *ma_gainer) -> ma_result #foreign miniaudio; +ma_gainer_uninit :: (pGainer: *ma_gainer, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_gainer_process_pcm_frames :: (pGainer: *ma_gainer, pFramesOut: *void, pFramesIn: *void, frameCount: ma_uint64) -> ma_result #foreign miniaudio; +ma_gainer_set_gain :: (pGainer: *ma_gainer, newGain: float) -> ma_result #foreign miniaudio; +ma_gainer_set_gains :: (pGainer: *ma_gainer, pNewGains: *float) -> ma_result #foreign miniaudio; +ma_gainer_set_master_volume :: (pGainer: *ma_gainer, volume: float) -> ma_result #foreign miniaudio; +ma_gainer_get_master_volume :: (pGainer: *ma_gainer, pVolume: *float) -> ma_result #foreign miniaudio; + +/* Stereo panner. */ +ma_pan_mode :: enum s32 { + ma_pan_mode_balance :: 0; + ma_pan_mode_pan :: 1; +} + +ma_panner_config :: struct { + format: ma_format; + channels: ma_uint32; + mode: ma_pan_mode; + pan: float; +} + +ma_panner_config_init :: (format: ma_format, channels: ma_uint32) -> ma_panner_config #foreign miniaudio; + +ma_panner :: struct { + format: ma_format; + channels: ma_uint32; + mode: ma_pan_mode; + pan: float; /* -1..1 where 0 is no pan, -1 is left side, +1 is right side. Defaults to 0. */ +} + +ma_panner_init :: (pConfig: *ma_panner_config, pPanner: *ma_panner) -> ma_result #foreign miniaudio; +ma_panner_process_pcm_frames :: (pPanner: *ma_panner, pFramesOut: *void, pFramesIn: *void, frameCount: ma_uint64) -> ma_result #foreign miniaudio; +ma_panner_set_mode :: (pPanner: *ma_panner, mode: ma_pan_mode) -> void #foreign miniaudio; +ma_panner_get_mode :: (pPanner: *ma_panner) -> ma_pan_mode #foreign miniaudio; +ma_panner_set_pan :: (pPanner: *ma_panner, pan: float) -> void #foreign miniaudio; +ma_panner_get_pan :: (pPanner: *ma_panner) -> float #foreign miniaudio; + +/* Fader. */ +ma_fader_config :: struct { + format: ma_format; + channels: ma_uint32; + sampleRate: ma_uint32; +} + +ma_fader_config_init :: (format: ma_format, channels: ma_uint32, sampleRate: ma_uint32) -> ma_fader_config #foreign miniaudio; + +ma_fader :: struct { + config: ma_fader_config; + volumeBeg: float; /* If volumeBeg and volumeEnd is equal to 1, no fading happens (ma_fader_process_pcm_frames() will run as a passthrough). */ + volumeEnd: float; + lengthInFrames: ma_uint64; /* The total length of the fade. */ + cursorInFrames: ma_int64; /* The current time in frames. Incremented by ma_fader_process_pcm_frames(). Signed because it'll be offset by startOffsetInFrames in set_fade_ex(). */ +} + +ma_fader_init :: (pConfig: *ma_fader_config, pFader: *ma_fader) -> ma_result #foreign miniaudio; +ma_fader_process_pcm_frames :: (pFader: *ma_fader, pFramesOut: *void, pFramesIn: *void, frameCount: ma_uint64) -> ma_result #foreign miniaudio; +ma_fader_get_data_format :: (pFader: *ma_fader, pFormat: *ma_format, pChannels: *ma_uint32, pSampleRate: *ma_uint32) -> void #foreign miniaudio; +ma_fader_set_fade :: (pFader: *ma_fader, volumeBeg: float, volumeEnd: float, lengthInFrames: ma_uint64) -> void #foreign miniaudio; +ma_fader_set_fade_ex :: (pFader: *ma_fader, volumeBeg: float, volumeEnd: float, lengthInFrames: ma_uint64, startOffsetInFrames: ma_int64) -> void #foreign miniaudio; +ma_fader_get_current_volume :: (pFader: *ma_fader) -> float #foreign miniaudio; + +/* Spatializer. */ +ma_vec3f :: struct { + x: float; + y: float; + z: float; +} + +ma_atomic_vec3f :: struct { + v: ma_vec3f; + lock: ma_spinlock; +} + +ma_attenuation_model :: enum s32 { + ma_attenuation_model_none :: 0; + ma_attenuation_model_inverse :: 1; + ma_attenuation_model_linear :: 2; + ma_attenuation_model_exponential :: 3; +} + +ma_positioning :: enum s32 { + ma_positioning_absolute :: 0; + ma_positioning_relative :: 1; +} + +ma_handedness :: enum s32 { + ma_handedness_right :: 0; + ma_handedness_left :: 1; +} + +ma_spatializer_listener_config :: struct { + channelsOut: ma_uint32; + pChannelMapOut: *ma_channel; + handedness: ma_handedness; /* Defaults to right. Forward is -1 on the Z axis. In a left handed system, forward is +1 on the Z axis. */ + coneInnerAngleInRadians: float; + coneOuterAngleInRadians: float; + coneOuterGain: float; + speedOfSound: float; + worldUp: ma_vec3f; +} + +ma_spatializer_listener_config_init :: (channelsOut: ma_uint32) -> ma_spatializer_listener_config #foreign miniaudio; + +ma_spatializer_listener :: struct { + config: ma_spatializer_listener_config; + position: ma_atomic_vec3f; /* The absolute position of the listener. */ + direction: ma_atomic_vec3f; /* The direction the listener is facing. The world up vector is config.worldUp. */ + velocity: ma_atomic_vec3f; + isEnabled: ma_bool32; + + /* Memory management. */ + _ownsHeap: ma_bool32; + _pHeap: *void; +} + +ma_spatializer_listener_get_heap_size :: (pConfig: *ma_spatializer_listener_config, pHeapSizeInBytes: *size_t) -> ma_result #foreign miniaudio; +ma_spatializer_listener_init_preallocated :: (pConfig: *ma_spatializer_listener_config, pHeap: *void, pListener: *ma_spatializer_listener) -> ma_result #foreign miniaudio; +ma_spatializer_listener_init :: (pConfig: *ma_spatializer_listener_config, pAllocationCallbacks: *ma_allocation_callbacks, pListener: *ma_spatializer_listener) -> ma_result #foreign miniaudio; +ma_spatializer_listener_uninit :: (pListener: *ma_spatializer_listener, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_spatializer_listener_get_channel_map :: (pListener: *ma_spatializer_listener) -> *ma_channel #foreign miniaudio; +ma_spatializer_listener_set_cone :: (pListener: *ma_spatializer_listener, innerAngleInRadians: float, outerAngleInRadians: float, outerGain: float) -> void #foreign miniaudio; +ma_spatializer_listener_get_cone :: (pListener: *ma_spatializer_listener, pInnerAngleInRadians: *float, pOuterAngleInRadians: *float, pOuterGain: *float) -> void #foreign miniaudio; +ma_spatializer_listener_set_position :: (pListener: *ma_spatializer_listener, x: float, y: float, z: float) -> void #foreign miniaudio; +ma_spatializer_listener_get_position :: (pListener: *ma_spatializer_listener) -> ma_vec3f #foreign miniaudio; +ma_spatializer_listener_set_direction :: (pListener: *ma_spatializer_listener, x: float, y: float, z: float) -> void #foreign miniaudio; +ma_spatializer_listener_get_direction :: (pListener: *ma_spatializer_listener) -> ma_vec3f #foreign miniaudio; +ma_spatializer_listener_set_velocity :: (pListener: *ma_spatializer_listener, x: float, y: float, z: float) -> void #foreign miniaudio; +ma_spatializer_listener_get_velocity :: (pListener: *ma_spatializer_listener) -> ma_vec3f #foreign miniaudio; +ma_spatializer_listener_set_speed_of_sound :: (pListener: *ma_spatializer_listener, speedOfSound: float) -> void #foreign miniaudio; +ma_spatializer_listener_get_speed_of_sound :: (pListener: *ma_spatializer_listener) -> float #foreign miniaudio; +ma_spatializer_listener_set_world_up :: (pListener: *ma_spatializer_listener, x: float, y: float, z: float) -> void #foreign miniaudio; +ma_spatializer_listener_get_world_up :: (pListener: *ma_spatializer_listener) -> ma_vec3f #foreign miniaudio; +ma_spatializer_listener_set_enabled :: (pListener: *ma_spatializer_listener, isEnabled: ma_bool32) -> void #foreign miniaudio; +ma_spatializer_listener_is_enabled :: (pListener: *ma_spatializer_listener) -> ma_bool32 #foreign miniaudio; + +ma_spatializer_config :: struct { + channelsIn: ma_uint32; + channelsOut: ma_uint32; + pChannelMapIn: *ma_channel; + attenuationModel: ma_attenuation_model; + positioning: ma_positioning; + handedness: ma_handedness; /* Defaults to right. Forward is -1 on the Z axis. In a left handed system, forward is +1 on the Z axis. */ + minGain: float; + maxGain: float; + minDistance: float; + maxDistance: float; + rolloff: float; + coneInnerAngleInRadians: float; + coneOuterAngleInRadians: float; + coneOuterGain: float; + dopplerFactor: float; /* Set to 0 to disable doppler effect. */ + directionalAttenuationFactor: float; /* Set to 0 to disable directional attenuation. */ + minSpatializationChannelGain: float; /* The minimal scaling factor to apply to channel gains when accounting for the direction of the sound relative to the listener. Must be in the range of 0..1. Smaller values means more aggressive directional panning, larger values means more subtle directional panning. */ + gainSmoothTimeInFrames: ma_uint32; /* When the gain of a channel changes during spatialization, the transition will be linearly interpolated over this number of frames. */ +} + +ma_spatializer_config_init :: (channelsIn: ma_uint32, channelsOut: ma_uint32) -> ma_spatializer_config #foreign miniaudio; + +ma_spatializer :: struct { + channelsIn: ma_uint32; + channelsOut: ma_uint32; + pChannelMapIn: *ma_channel; + attenuationModel: ma_attenuation_model; + positioning: ma_positioning; + handedness: ma_handedness; /* Defaults to right. Forward is -1 on the Z axis. In a left handed system, forward is +1 on the Z axis. */ + minGain: float; + maxGain: float; + minDistance: float; + maxDistance: float; + rolloff: float; + coneInnerAngleInRadians: float; + coneOuterAngleInRadians: float; + coneOuterGain: float; + dopplerFactor: float; /* Set to 0 to disable doppler effect. */ + directionalAttenuationFactor: float; /* Set to 0 to disable directional attenuation. */ + gainSmoothTimeInFrames: ma_uint32; /* When the gain of a channel changes during spatialization, the transition will be linearly interpolated over this number of frames. */ + position: ma_atomic_vec3f; + direction: ma_atomic_vec3f; + velocity: ma_atomic_vec3f; /* For doppler effect. */ + dopplerPitch: float; /* Will be updated by ma_spatializer_process_pcm_frames() and can be used by higher level functions to apply a pitch shift for doppler effect. */ + minSpatializationChannelGain: float; + gainer: ma_gainer; /* For smooth gain transitions. */ + pNewChannelGainsOut: *float; /* An offset of _pHeap. Used by ma_spatializer_process_pcm_frames() to store new channel gains. The number of elements in this array is equal to config.channelsOut. */ + + /* Memory management. */ + _pHeap: *void; + _ownsHeap: ma_bool32; +} + +ma_spatializer_get_heap_size :: (pConfig: *ma_spatializer_config, pHeapSizeInBytes: *size_t) -> ma_result #foreign miniaudio; +ma_spatializer_init_preallocated :: (pConfig: *ma_spatializer_config, pHeap: *void, pSpatializer: *ma_spatializer) -> ma_result #foreign miniaudio; +ma_spatializer_init :: (pConfig: *ma_spatializer_config, pAllocationCallbacks: *ma_allocation_callbacks, pSpatializer: *ma_spatializer) -> ma_result #foreign miniaudio; +ma_spatializer_uninit :: (pSpatializer: *ma_spatializer, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_spatializer_process_pcm_frames :: (pSpatializer: *ma_spatializer, pListener: *ma_spatializer_listener, pFramesOut: *void, pFramesIn: *void, frameCount: ma_uint64) -> ma_result #foreign miniaudio; +ma_spatializer_set_master_volume :: (pSpatializer: *ma_spatializer, volume: float) -> ma_result #foreign miniaudio; +ma_spatializer_get_master_volume :: (pSpatializer: *ma_spatializer, pVolume: *float) -> ma_result #foreign miniaudio; +ma_spatializer_get_input_channels :: (pSpatializer: *ma_spatializer) -> ma_uint32 #foreign miniaudio; +ma_spatializer_get_output_channels :: (pSpatializer: *ma_spatializer) -> ma_uint32 #foreign miniaudio; +ma_spatializer_set_attenuation_model :: (pSpatializer: *ma_spatializer, attenuationModel: ma_attenuation_model) -> void #foreign miniaudio; +ma_spatializer_get_attenuation_model :: (pSpatializer: *ma_spatializer) -> ma_attenuation_model #foreign miniaudio; +ma_spatializer_set_positioning :: (pSpatializer: *ma_spatializer, positioning: ma_positioning) -> void #foreign miniaudio; +ma_spatializer_get_positioning :: (pSpatializer: *ma_spatializer) -> ma_positioning #foreign miniaudio; +ma_spatializer_set_rolloff :: (pSpatializer: *ma_spatializer, rolloff: float) -> void #foreign miniaudio; +ma_spatializer_get_rolloff :: (pSpatializer: *ma_spatializer) -> float #foreign miniaudio; +ma_spatializer_set_min_gain :: (pSpatializer: *ma_spatializer, minGain: float) -> void #foreign miniaudio; +ma_spatializer_get_min_gain :: (pSpatializer: *ma_spatializer) -> float #foreign miniaudio; +ma_spatializer_set_max_gain :: (pSpatializer: *ma_spatializer, maxGain: float) -> void #foreign miniaudio; +ma_spatializer_get_max_gain :: (pSpatializer: *ma_spatializer) -> float #foreign miniaudio; +ma_spatializer_set_min_distance :: (pSpatializer: *ma_spatializer, minDistance: float) -> void #foreign miniaudio; +ma_spatializer_get_min_distance :: (pSpatializer: *ma_spatializer) -> float #foreign miniaudio; +ma_spatializer_set_max_distance :: (pSpatializer: *ma_spatializer, maxDistance: float) -> void #foreign miniaudio; +ma_spatializer_get_max_distance :: (pSpatializer: *ma_spatializer) -> float #foreign miniaudio; +ma_spatializer_set_cone :: (pSpatializer: *ma_spatializer, innerAngleInRadians: float, outerAngleInRadians: float, outerGain: float) -> void #foreign miniaudio; +ma_spatializer_get_cone :: (pSpatializer: *ma_spatializer, pInnerAngleInRadians: *float, pOuterAngleInRadians: *float, pOuterGain: *float) -> void #foreign miniaudio; +ma_spatializer_set_doppler_factor :: (pSpatializer: *ma_spatializer, dopplerFactor: float) -> void #foreign miniaudio; +ma_spatializer_get_doppler_factor :: (pSpatializer: *ma_spatializer) -> float #foreign miniaudio; +ma_spatializer_set_directional_attenuation_factor :: (pSpatializer: *ma_spatializer, directionalAttenuationFactor: float) -> void #foreign miniaudio; +ma_spatializer_get_directional_attenuation_factor :: (pSpatializer: *ma_spatializer) -> float #foreign miniaudio; +ma_spatializer_set_position :: (pSpatializer: *ma_spatializer, x: float, y: float, z: float) -> void #foreign miniaudio; +ma_spatializer_get_position :: (pSpatializer: *ma_spatializer) -> ma_vec3f #foreign miniaudio; +ma_spatializer_set_direction :: (pSpatializer: *ma_spatializer, x: float, y: float, z: float) -> void #foreign miniaudio; +ma_spatializer_get_direction :: (pSpatializer: *ma_spatializer) -> ma_vec3f #foreign miniaudio; +ma_spatializer_set_velocity :: (pSpatializer: *ma_spatializer, x: float, y: float, z: float) -> void #foreign miniaudio; +ma_spatializer_get_velocity :: (pSpatializer: *ma_spatializer) -> ma_vec3f #foreign miniaudio; +ma_spatializer_get_relative_position_and_direction :: (pSpatializer: *ma_spatializer, pListener: *ma_spatializer_listener, pRelativePos: *ma_vec3f, pRelativeDir: *ma_vec3f) -> void #foreign miniaudio; + +/************************************************************************************************************************************************************** + +Resampling + +**************************************************************************************************************************************************************/ +ma_linear_resampler_config :: struct { + format: ma_format; + channels: ma_uint32; + sampleRateIn: ma_uint32; + sampleRateOut: ma_uint32; + lpfOrder: ma_uint32; /* The low-pass filter order. Setting this to 0 will disable low-pass filtering. */ + lpfNyquistFactor: float64; /* 0..1. Defaults to 1. 1 = Half the sampling frequency (Nyquist Frequency), 0.5 = Quarter the sampling frequency (half Nyquest Frequency), etc. */ +} + +ma_linear_resampler_config_init :: (format: ma_format, channels: ma_uint32, sampleRateIn: ma_uint32, sampleRateOut: ma_uint32) -> ma_linear_resampler_config #foreign miniaudio; + +ma_linear_resampler :: struct { + config: ma_linear_resampler_config; + inAdvanceInt: ma_uint32; + inAdvanceFrac: ma_uint32; + inTimeInt: ma_uint32; + inTimeFrac: ma_uint32; + x0: union { + f32: *float; + _s16: *ma_int16; + }; /* The previous input frame. */ + + x1: union { + f32: *float; + _s16: *ma_int16; + }; /* The next input frame. */ + + lpf: ma_lpf; + + /* Memory management. */ + _pHeap: *void; + _ownsHeap: ma_bool32; +} + +ma_linear_resampler_get_heap_size :: (pConfig: *ma_linear_resampler_config, pHeapSizeInBytes: *size_t) -> ma_result #foreign miniaudio; +ma_linear_resampler_init_preallocated :: (pConfig: *ma_linear_resampler_config, pHeap: *void, pResampler: *ma_linear_resampler) -> ma_result #foreign miniaudio; +ma_linear_resampler_init :: (pConfig: *ma_linear_resampler_config, pAllocationCallbacks: *ma_allocation_callbacks, pResampler: *ma_linear_resampler) -> ma_result #foreign miniaudio; +ma_linear_resampler_uninit :: (pResampler: *ma_linear_resampler, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_linear_resampler_process_pcm_frames :: (pResampler: *ma_linear_resampler, pFramesIn: *void, pFrameCountIn: *ma_uint64, pFramesOut: *void, pFrameCountOut: *ma_uint64) -> ma_result #foreign miniaudio; +ma_linear_resampler_set_rate :: (pResampler: *ma_linear_resampler, sampleRateIn: ma_uint32, sampleRateOut: ma_uint32) -> ma_result #foreign miniaudio; +ma_linear_resampler_set_rate_ratio :: (pResampler: *ma_linear_resampler, ratioInOut: float) -> ma_result #foreign miniaudio; +ma_linear_resampler_get_input_latency :: (pResampler: *ma_linear_resampler) -> ma_uint64 #foreign miniaudio; +ma_linear_resampler_get_output_latency :: (pResampler: *ma_linear_resampler) -> ma_uint64 #foreign miniaudio; +ma_linear_resampler_get_required_input_frame_count :: (pResampler: *ma_linear_resampler, outputFrameCount: ma_uint64, pInputFrameCount: *ma_uint64) -> ma_result #foreign miniaudio; +ma_linear_resampler_get_expected_output_frame_count :: (pResampler: *ma_linear_resampler, inputFrameCount: ma_uint64, pOutputFrameCount: *ma_uint64) -> ma_result #foreign miniaudio; +ma_linear_resampler_reset :: (pResampler: *ma_linear_resampler) -> ma_result #foreign miniaudio; + +ma_resampling_backend :: void; +ma_resampling_backend_vtable :: struct { + onGetHeapSize: #type (pUserData: *void, pConfig: *ma_resampler_config, pHeapSizeInBytes: *size_t) -> ma_result #c_call; + onInit: #type (pUserData: *void, pConfig: *ma_resampler_config, pHeap: *void, ppBackend: **ma_resampling_backend) -> ma_result #c_call; + onUninit: #type (pUserData: *void, pBackend: *ma_resampling_backend, pAllocationCallbacks: *ma_allocation_callbacks) -> void #c_call; + onProcess: #type (pUserData: *void, pBackend: *ma_resampling_backend, pFramesIn: *void, pFrameCountIn: *ma_uint64, pFramesOut: *void, pFrameCountOut: *ma_uint64) -> ma_result #c_call; + onSetRate: #type (pUserData: *void, pBackend: *ma_resampling_backend, sampleRateIn: ma_uint32, sampleRateOut: ma_uint32) -> ma_result #c_call; /* Optional. Rate changes will be disabled. */ + onGetInputLatency: #type (pUserData: *void, pBackend: *ma_resampling_backend) -> ma_uint64 #c_call; /* Optional. Latency will be reported as 0. */ + onGetOutputLatency: #type (pUserData: *void, pBackend: *ma_resampling_backend) -> ma_uint64 #c_call; /* Optional. Latency will be reported as 0. */ + onGetRequiredInputFrameCount: #type (pUserData: *void, pBackend: *ma_resampling_backend, outputFrameCount: ma_uint64, pInputFrameCount: *ma_uint64) -> ma_result #c_call; /* Optional. Latency mitigation will be disabled. */ + onGetExpectedOutputFrameCount: #type (pUserData: *void, pBackend: *ma_resampling_backend, inputFrameCount: ma_uint64, pOutputFrameCount: *ma_uint64) -> ma_result #c_call; /* Optional. Latency mitigation will be disabled. */ + onReset: #type (pUserData: *void, pBackend: *ma_resampling_backend) -> ma_result #c_call; +} + +ma_resample_algorithm :: enum s32 { + ma_resample_algorithm_linear :: 0; + ma_resample_algorithm_custom :: 1; +} + +ma_resampler_config :: struct { + format: ma_format; /* Must be either ma_format_f32 or ma_format_s16. */ + channels: ma_uint32; + sampleRateIn: ma_uint32; + sampleRateOut: ma_uint32; + algorithm: ma_resample_algorithm; /* When set to ma_resample_algorithm_custom, pBackendVTable will be used. */ + pBackendVTable: *ma_resampling_backend_vtable; + pBackendUserData: *void; + linear: struct { + lpfOrder: ma_uint32; + }; +} + +ma_resampler_config_init :: (format: ma_format, channels: ma_uint32, sampleRateIn: ma_uint32, sampleRateOut: ma_uint32, algorithm: ma_resample_algorithm) -> ma_resampler_config #foreign miniaudio; + +ma_resampler :: struct { + pBackend: *ma_resampling_backend; + pBackendVTable: *ma_resampling_backend_vtable; + pBackendUserData: *void; + format: ma_format; + channels: ma_uint32; + sampleRateIn: ma_uint32; + sampleRateOut: ma_uint32; + state: union { + linear: ma_linear_resampler; + }; /* State for stock resamplers so we can avoid a malloc. For stock resamplers, pBackend will point here. */ + + /* Memory management. */ + _pHeap: *void; + _ownsHeap: ma_bool32; +} + +ma_resampler_get_heap_size :: (pConfig: *ma_resampler_config, pHeapSizeInBytes: *size_t) -> ma_result #foreign miniaudio; +ma_resampler_init_preallocated :: (pConfig: *ma_resampler_config, pHeap: *void, pResampler: *ma_resampler) -> ma_result #foreign miniaudio; + +/* +Initializes a new resampler object from a config. +*/ +ma_resampler_init :: (pConfig: *ma_resampler_config, pAllocationCallbacks: *ma_allocation_callbacks, pResampler: *ma_resampler) -> ma_result #foreign miniaudio; + +/* +Uninitializes a resampler. +*/ +ma_resampler_uninit :: (pResampler: *ma_resampler, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; + +/* +Converts the given input data. + +Both the input and output frames must be in the format specified in the config when the resampler was initilized. + +On input, [pFrameCountOut] contains the number of output frames to process. On output it contains the number of output frames that +were actually processed, which may be less than the requested amount which will happen if there's not enough input data. You can use +ma_resampler_get_expected_output_frame_count() to know how many output frames will be processed for a given number of input frames. + +On input, [pFrameCountIn] contains the number of input frames contained in [pFramesIn]. On output it contains the number of whole +input frames that were actually processed. You can use ma_resampler_get_required_input_frame_count() to know how many input frames +you should provide for a given number of output frames. [pFramesIn] can be NULL, in which case zeroes will be used instead. + +If [pFramesOut] is NULL, a seek is performed. In this case, if [pFrameCountOut] is not NULL it will seek by the specified number of +output frames. Otherwise, if [pFramesCountOut] is NULL and [pFrameCountIn] is not NULL, it will seek by the specified number of input +frames. When seeking, [pFramesIn] is allowed to NULL, in which case the internal timing state will be updated, but no input will be +processed. In this case, any internal filter state will be updated as if zeroes were passed in. + +It is an error for [pFramesOut] to be non-NULL and [pFrameCountOut] to be NULL. + +It is an error for both [pFrameCountOut] and [pFrameCountIn] to be NULL. +*/ +ma_resampler_process_pcm_frames :: (pResampler: *ma_resampler, pFramesIn: *void, pFrameCountIn: *ma_uint64, pFramesOut: *void, pFrameCountOut: *ma_uint64) -> ma_result #foreign miniaudio; + +/* +Sets the input and output sample rate. +*/ +ma_resampler_set_rate :: (pResampler: *ma_resampler, sampleRateIn: ma_uint32, sampleRateOut: ma_uint32) -> ma_result #foreign miniaudio; + +/* +Sets the input and output sample rate as a ratio. + +The ration is in/out. +*/ +ma_resampler_set_rate_ratio :: (pResampler: *ma_resampler, ratio: float) -> ma_result #foreign miniaudio; + +/* +Retrieves the latency introduced by the resampler in input frames. +*/ +ma_resampler_get_input_latency :: (pResampler: *ma_resampler) -> ma_uint64 #foreign miniaudio; + +/* +Retrieves the latency introduced by the resampler in output frames. +*/ +ma_resampler_get_output_latency :: (pResampler: *ma_resampler) -> ma_uint64 #foreign miniaudio; + +/* +Calculates the number of whole input frames that would need to be read from the client in order to output the specified +number of output frames. + +The returned value does not include cached input frames. It only returns the number of extra frames that would need to be +read from the input buffer in order to output the specified number of output frames. +*/ +ma_resampler_get_required_input_frame_count :: (pResampler: *ma_resampler, outputFrameCount: ma_uint64, pInputFrameCount: *ma_uint64) -> ma_result #foreign miniaudio; + +/* +Calculates the number of whole output frames that would be output after fully reading and consuming the specified number of +input frames. +*/ +ma_resampler_get_expected_output_frame_count :: (pResampler: *ma_resampler, inputFrameCount: ma_uint64, pOutputFrameCount: *ma_uint64) -> ma_result #foreign miniaudio; + +/* +Resets the resampler's timer and clears it's internal cache. +*/ +ma_resampler_reset :: (pResampler: *ma_resampler) -> ma_result #foreign miniaudio; + +/************************************************************************************************************************************************************** + +Channel Conversion + +**************************************************************************************************************************************************************/ +ma_channel_conversion_path :: enum s32 { + ma_channel_conversion_path_unknown :: 0; + ma_channel_conversion_path_passthrough :: 1; + ma_channel_conversion_path_mono_out :: 2; + ma_channel_conversion_path_mono_in :: 3; + ma_channel_conversion_path_shuffle :: 4; + ma_channel_conversion_path_weights :: 5; +} + +ma_mono_expansion_mode :: enum s32 { + ma_mono_expansion_mode_duplicate :: 0; + ma_mono_expansion_mode_average :: 1; + ma_mono_expansion_mode_stereo_only :: 2; + ma_mono_expansion_mode_default :: 0; +} + +ma_channel_converter_config :: struct { + format: ma_format; + channelsIn: ma_uint32; + channelsOut: ma_uint32; + pChannelMapIn: *ma_channel; + pChannelMapOut: *ma_channel; + mixingMode: ma_channel_mix_mode; + calculateLFEFromSpatialChannels: ma_bool32; /* When an output LFE channel is present, but no input LFE, set to true to set the output LFE to the average of all spatial channels (LR, FR, etc.). Ignored when an input LFE is present. */ + ppWeights: **float; /* [in][out]. Only used when mixingMode is set to ma_channel_mix_mode_custom_weights. */ +} + +ma_channel_converter_config_init :: (format: ma_format, channelsIn: ma_uint32, pChannelMapIn: *ma_channel, channelsOut: ma_uint32, pChannelMapOut: *ma_channel, mixingMode: ma_channel_mix_mode) -> ma_channel_converter_config #foreign miniaudio; + +ma_channel_converter :: struct { + format: ma_format; + channelsIn: ma_uint32; + channelsOut: ma_uint32; + mixingMode: ma_channel_mix_mode; + conversionPath: ma_channel_conversion_path; + pChannelMapIn: *ma_channel; + pChannelMapOut: *ma_channel; + pShuffleTable: *ma_uint8; /* Indexed by output channel index. */ + weights: union { + f32: **float; + _s16: **ma_int32; + }; /* [in][out] */ + + /* Memory management. */ + _pHeap: *void; + _ownsHeap: ma_bool32; +} + +ma_channel_converter_get_heap_size :: (pConfig: *ma_channel_converter_config, pHeapSizeInBytes: *size_t) -> ma_result #foreign miniaudio; +ma_channel_converter_init_preallocated :: (pConfig: *ma_channel_converter_config, pHeap: *void, pConverter: *ma_channel_converter) -> ma_result #foreign miniaudio; +ma_channel_converter_init :: (pConfig: *ma_channel_converter_config, pAllocationCallbacks: *ma_allocation_callbacks, pConverter: *ma_channel_converter) -> ma_result #foreign miniaudio; +ma_channel_converter_uninit :: (pConverter: *ma_channel_converter, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_channel_converter_process_pcm_frames :: (pConverter: *ma_channel_converter, pFramesOut: *void, pFramesIn: *void, frameCount: ma_uint64) -> ma_result #foreign miniaudio; +ma_channel_converter_get_input_channel_map :: (pConverter: *ma_channel_converter, pChannelMap: *ma_channel, channelMapCap: size_t) -> ma_result #foreign miniaudio; +ma_channel_converter_get_output_channel_map :: (pConverter: *ma_channel_converter, pChannelMap: *ma_channel, channelMapCap: size_t) -> ma_result #foreign miniaudio; + +/************************************************************************************************************************************************************** + +Data Conversion + +**************************************************************************************************************************************************************/ +ma_data_converter_config :: struct { + formatIn: ma_format; + formatOut: ma_format; + channelsIn: ma_uint32; + channelsOut: ma_uint32; + sampleRateIn: ma_uint32; + sampleRateOut: ma_uint32; + pChannelMapIn: *ma_channel; + pChannelMapOut: *ma_channel; + ditherMode: ma_dither_mode; + channelMixMode: ma_channel_mix_mode; + calculateLFEFromSpatialChannels: ma_bool32; /* When an output LFE channel is present, but no input LFE, set to true to set the output LFE to the average of all spatial channels (LR, FR, etc.). Ignored when an input LFE is present. */ + ppChannelWeights: **float; /* [in][out]. Only used when mixingMode is set to ma_channel_mix_mode_custom_weights. */ + allowDynamicSampleRate: ma_bool32; + resampling: ma_resampler_config; +} + +ma_data_converter_config_init_default :: () -> ma_data_converter_config #foreign miniaudio; +ma_data_converter_config_init :: (formatIn: ma_format, formatOut: ma_format, channelsIn: ma_uint32, channelsOut: ma_uint32, sampleRateIn: ma_uint32, sampleRateOut: ma_uint32) -> ma_data_converter_config #foreign miniaudio; + +ma_data_converter_execution_path :: enum s32 { + ma_data_converter_execution_path_passthrough :: 0; + ma_data_converter_execution_path_format_only :: 1; + ma_data_converter_execution_path_channels_only :: 2; + ma_data_converter_execution_path_resample_only :: 3; + ma_data_converter_execution_path_resample_first :: 4; + ma_data_converter_execution_path_channels_first :: 5; +} + +ma_data_converter :: struct { + formatIn: ma_format; + formatOut: ma_format; + channelsIn: ma_uint32; + channelsOut: ma_uint32; + sampleRateIn: ma_uint32; + sampleRateOut: ma_uint32; + ditherMode: ma_dither_mode; + executionPath: ma_data_converter_execution_path; /* The execution path the data converter will follow when processing. */ + channelConverter: ma_channel_converter; + resampler: ma_resampler; + hasPreFormatConversion: ma_bool8; + hasPostFormatConversion: ma_bool8; + hasChannelConverter: ma_bool8; + hasResampler: ma_bool8; + isPassthrough: ma_bool8; + + /* Memory management. */ + _ownsHeap: ma_bool8; + _pHeap: *void; +} + +ma_data_converter_get_heap_size :: (pConfig: *ma_data_converter_config, pHeapSizeInBytes: *size_t) -> ma_result #foreign miniaudio; +ma_data_converter_init_preallocated :: (pConfig: *ma_data_converter_config, pHeap: *void, pConverter: *ma_data_converter) -> ma_result #foreign miniaudio; +ma_data_converter_init :: (pConfig: *ma_data_converter_config, pAllocationCallbacks: *ma_allocation_callbacks, pConverter: *ma_data_converter) -> ma_result #foreign miniaudio; +ma_data_converter_uninit :: (pConverter: *ma_data_converter, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_data_converter_process_pcm_frames :: (pConverter: *ma_data_converter, pFramesIn: *void, pFrameCountIn: *ma_uint64, pFramesOut: *void, pFrameCountOut: *ma_uint64) -> ma_result #foreign miniaudio; +ma_data_converter_set_rate :: (pConverter: *ma_data_converter, sampleRateIn: ma_uint32, sampleRateOut: ma_uint32) -> ma_result #foreign miniaudio; +ma_data_converter_set_rate_ratio :: (pConverter: *ma_data_converter, ratioInOut: float) -> ma_result #foreign miniaudio; +ma_data_converter_get_input_latency :: (pConverter: *ma_data_converter) -> ma_uint64 #foreign miniaudio; +ma_data_converter_get_output_latency :: (pConverter: *ma_data_converter) -> ma_uint64 #foreign miniaudio; +ma_data_converter_get_required_input_frame_count :: (pConverter: *ma_data_converter, outputFrameCount: ma_uint64, pInputFrameCount: *ma_uint64) -> ma_result #foreign miniaudio; +ma_data_converter_get_expected_output_frame_count :: (pConverter: *ma_data_converter, inputFrameCount: ma_uint64, pOutputFrameCount: *ma_uint64) -> ma_result #foreign miniaudio; +ma_data_converter_get_input_channel_map :: (pConverter: *ma_data_converter, pChannelMap: *ma_channel, channelMapCap: size_t) -> ma_result #foreign miniaudio; +ma_data_converter_get_output_channel_map :: (pConverter: *ma_data_converter, pChannelMap: *ma_channel, channelMapCap: size_t) -> ma_result #foreign miniaudio; +ma_data_converter_reset :: (pConverter: *ma_data_converter) -> ma_result #foreign miniaudio; + +/************************************************************************************************************************************************************ + +Format Conversion + +************************************************************************************************************************************************************/ +ma_pcm_u8_to_s16 :: (pOut: *void, pIn: *void, count: ma_uint64, ditherMode: ma_dither_mode) -> void #foreign miniaudio; +ma_pcm_u8_to_s24 :: (pOut: *void, pIn: *void, count: ma_uint64, ditherMode: ma_dither_mode) -> void #foreign miniaudio; +ma_pcm_u8_to_s32 :: (pOut: *void, pIn: *void, count: ma_uint64, ditherMode: ma_dither_mode) -> void #foreign miniaudio; +ma_pcm_u8_to_f32 :: (pOut: *void, pIn: *void, count: ma_uint64, ditherMode: ma_dither_mode) -> void #foreign miniaudio; +ma_pcm_s16_to_u8 :: (pOut: *void, pIn: *void, count: ma_uint64, ditherMode: ma_dither_mode) -> void #foreign miniaudio; +ma_pcm_s16_to_s24 :: (pOut: *void, pIn: *void, count: ma_uint64, ditherMode: ma_dither_mode) -> void #foreign miniaudio; +ma_pcm_s16_to_s32 :: (pOut: *void, pIn: *void, count: ma_uint64, ditherMode: ma_dither_mode) -> void #foreign miniaudio; +ma_pcm_s16_to_f32 :: (pOut: *void, pIn: *void, count: ma_uint64, ditherMode: ma_dither_mode) -> void #foreign miniaudio; +ma_pcm_s24_to_u8 :: (pOut: *void, pIn: *void, count: ma_uint64, ditherMode: ma_dither_mode) -> void #foreign miniaudio; +ma_pcm_s24_to_s16 :: (pOut: *void, pIn: *void, count: ma_uint64, ditherMode: ma_dither_mode) -> void #foreign miniaudio; +ma_pcm_s24_to_s32 :: (pOut: *void, pIn: *void, count: ma_uint64, ditherMode: ma_dither_mode) -> void #foreign miniaudio; +ma_pcm_s24_to_f32 :: (pOut: *void, pIn: *void, count: ma_uint64, ditherMode: ma_dither_mode) -> void #foreign miniaudio; +ma_pcm_s32_to_u8 :: (pOut: *void, pIn: *void, count: ma_uint64, ditherMode: ma_dither_mode) -> void #foreign miniaudio; +ma_pcm_s32_to_s16 :: (pOut: *void, pIn: *void, count: ma_uint64, ditherMode: ma_dither_mode) -> void #foreign miniaudio; +ma_pcm_s32_to_s24 :: (pOut: *void, pIn: *void, count: ma_uint64, ditherMode: ma_dither_mode) -> void #foreign miniaudio; +ma_pcm_s32_to_f32 :: (pOut: *void, pIn: *void, count: ma_uint64, ditherMode: ma_dither_mode) -> void #foreign miniaudio; +ma_pcm_f32_to_u8 :: (pOut: *void, pIn: *void, count: ma_uint64, ditherMode: ma_dither_mode) -> void #foreign miniaudio; +ma_pcm_f32_to_s16 :: (pOut: *void, pIn: *void, count: ma_uint64, ditherMode: ma_dither_mode) -> void #foreign miniaudio; +ma_pcm_f32_to_s24 :: (pOut: *void, pIn: *void, count: ma_uint64, ditherMode: ma_dither_mode) -> void #foreign miniaudio; +ma_pcm_f32_to_s32 :: (pOut: *void, pIn: *void, count: ma_uint64, ditherMode: ma_dither_mode) -> void #foreign miniaudio; +ma_pcm_convert :: (pOut: *void, formatOut: ma_format, pIn: *void, formatIn: ma_format, sampleCount: ma_uint64, ditherMode: ma_dither_mode) -> void #foreign miniaudio; +ma_convert_pcm_frames_format :: (pOut: *void, formatOut: ma_format, pIn: *void, formatIn: ma_format, frameCount: ma_uint64, channels: ma_uint32, ditherMode: ma_dither_mode) -> void #foreign miniaudio; + +/* +Deinterleaves an interleaved buffer. +*/ +ma_deinterleave_pcm_frames :: (format: ma_format, channels: ma_uint32, frameCount: ma_uint64, pInterleavedPCMFrames: *void, ppDeinterleavedPCMFrames: **void) -> void #foreign miniaudio; + +/* +Interleaves a group of deinterleaved buffers. +*/ +ma_interleave_pcm_frames :: (format: ma_format, channels: ma_uint32, frameCount: ma_uint64, ppDeinterleavedPCMFrames: **void, pInterleavedPCMFrames: *void) -> void #foreign miniaudio; + +/* +Retrieves the channel position of the specified channel in the given channel map. + +The pChannelMap parameter can be null, in which case miniaudio's default channel map will be assumed. +*/ +ma_channel_map_get_channel :: (pChannelMap: *ma_channel, channelCount: ma_uint32, channelIndex: ma_uint32) -> ma_channel #foreign miniaudio; + +/* +Initializes a blank channel map. + +When a blank channel map is specified anywhere it indicates that the native channel map should be used. +*/ +ma_channel_map_init_blank :: (pChannelMap: *ma_channel, channels: ma_uint32) -> void #foreign miniaudio; + +/* +Helper for retrieving a standard channel map. + +The output channel map buffer must have a capacity of at least `channelMapCap`. +*/ +ma_channel_map_init_standard :: (standardChannelMap: ma_standard_channel_map, pChannelMap: *ma_channel, channelMapCap: size_t, channels: ma_uint32) -> void #foreign miniaudio; + +/* +Copies a channel map. + +Both input and output channel map buffers must have a capacity of at at least `channels`. +*/ +ma_channel_map_copy :: (pOut: *ma_channel, pIn: *ma_channel, channels: ma_uint32) -> void #foreign miniaudio; + +/* +Copies a channel map if one is specified, otherwise copies the default channel map. + +The output buffer must have a capacity of at least `channels`. If not NULL, the input channel map must also have a capacity of at least `channels`. +*/ +ma_channel_map_copy_or_default :: (pOut: *ma_channel, channelMapCapOut: size_t, pIn: *ma_channel, channels: ma_uint32) -> void #foreign miniaudio; + +/* +Determines whether or not a channel map is valid. + +A blank channel map is valid (all channels set to MA_CHANNEL_NONE). The way a blank channel map is handled is context specific, but +is usually treated as a passthrough. + +Invalid channel maps: +- A channel map with no channels +- A channel map with more than one channel and a mono channel + +The channel map buffer must have a capacity of at least `channels`. +*/ +ma_channel_map_is_valid :: (pChannelMap: *ma_channel, channels: ma_uint32) -> ma_bool32 #foreign miniaudio; + +/* +Helper for comparing two channel maps for equality. + +This assumes the channel count is the same between the two. + +Both channels map buffers must have a capacity of at least `channels`. +*/ +ma_channel_map_is_equal :: (pChannelMapA: *ma_channel, pChannelMapB: *ma_channel, channels: ma_uint32) -> ma_bool32 #foreign miniaudio; + +/* +Helper for determining if a channel map is blank (all channels set to MA_CHANNEL_NONE). + +The channel map buffer must have a capacity of at least `channels`. +*/ +ma_channel_map_is_blank :: (pChannelMap: *ma_channel, channels: ma_uint32) -> ma_bool32 #foreign miniaudio; + +/* +Helper for determining whether or not a channel is present in the given channel map. + +The channel map buffer must have a capacity of at least `channels`. +*/ +ma_channel_map_contains_channel_position :: (channels: ma_uint32, pChannelMap: *ma_channel, channelPosition: ma_channel) -> ma_bool32 #foreign miniaudio; + +/* +Find a channel position in the given channel map. Returns MA_TRUE if the channel is found; MA_FALSE otherwise. The +index of the channel is output to `pChannelIndex`. + +The channel map buffer must have a capacity of at least `channels`. +*/ +ma_channel_map_find_channel_position :: (channels: ma_uint32, pChannelMap: *ma_channel, channelPosition: ma_channel, pChannelIndex: *ma_uint32) -> ma_bool32 #foreign miniaudio; + +/* +Generates a string representing the given channel map. + +This is for printing and debugging purposes, not serialization/deserialization. + +Returns the length of the string, not including the null terminator. +*/ +ma_channel_map_to_string :: (pChannelMap: *ma_channel, channels: ma_uint32, pBufferOut: *u8, bufferCap: size_t) -> size_t #foreign miniaudio; + +/* +Retrieves a human readable version of a channel position. +*/ +ma_channel_position_to_string :: (channel: ma_channel) -> *u8 #foreign miniaudio; + +/* +High-level helper for doing a full format conversion in one go. Returns the number of output frames. Call this with pOut set to NULL to +determine the required size of the output buffer. frameCountOut should be set to the capacity of pOut. If pOut is NULL, frameCountOut is +ignored. + +A return value of 0 indicates an error. + +This function is useful for one-off bulk conversions, but if you're streaming data you should use the ma_data_converter APIs instead. +*/ +ma_convert_frames :: (pOut: *void, frameCountOut: ma_uint64, formatOut: ma_format, channelsOut: ma_uint32, sampleRateOut: ma_uint32, pIn: *void, frameCountIn: ma_uint64, formatIn: ma_format, channelsIn: ma_uint32, sampleRateIn: ma_uint32) -> ma_uint64 #foreign miniaudio; +ma_convert_frames_ex :: (pOut: *void, frameCountOut: ma_uint64, pIn: *void, frameCountIn: ma_uint64, pConfig: *ma_data_converter_config) -> ma_uint64 #foreign miniaudio; + +/************************************************************************************************************************************************************ + +Data Source + +************************************************************************************************************************************************************/ +ma_data_source :: void; + +ma_data_source_vtable :: struct { + onRead: #type (pDataSource: *ma_data_source, pFramesOut: *void, frameCount: ma_uint64, pFramesRead: *ma_uint64) -> ma_result #c_call; + onSeek: #type (pDataSource: *ma_data_source, frameIndex: ma_uint64) -> ma_result #c_call; + onGetDataFormat: #type (pDataSource: *ma_data_source, pFormat: *ma_format, pChannels: *ma_uint32, pSampleRate: *ma_uint32, pChannelMap: *ma_channel, channelMapCap: size_t) -> ma_result #c_call; + onGetCursor: #type (pDataSource: *ma_data_source, pCursor: *ma_uint64) -> ma_result #c_call; + onGetLength: #type (pDataSource: *ma_data_source, pLength: *ma_uint64) -> ma_result #c_call; + onSetLooping: #type (pDataSource: *ma_data_source, isLooping: ma_bool32) -> ma_result #c_call; + flags: ma_uint32; +} + +ma_data_source_get_next_proc :: #type (pDataSource: *ma_data_source) -> *ma_data_source #c_call; + +ma_data_source_config :: struct { + vtable: *ma_data_source_vtable; +} + +ma_data_source_config_init :: () -> ma_data_source_config #foreign miniaudio; + +ma_data_source_base :: struct { + vtable: *ma_data_source_vtable; + rangeBegInFrames: ma_uint64; + rangeEndInFrames: ma_uint64; /* Set to -1 for unranged (default). */ + loopBegInFrames: ma_uint64; /* Relative to rangeBegInFrames. */ + loopEndInFrames: ma_uint64; /* Relative to rangeBegInFrames. Set to -1 for the end of the range. */ + pCurrent: *ma_data_source; /* When non-NULL, the data source being initialized will act as a proxy and will route all operations to pCurrent. Used in conjunction with pNext/onGetNext for seamless chaining. */ + pNext: *ma_data_source; /* When set to NULL, onGetNext will be used. */ + onGetNext: ma_data_source_get_next_proc; /* Will be used when pNext is NULL. If both are NULL, no next will be used. */ + isLooping: ma_bool32; +} + +ma_data_source_init :: (pConfig: *ma_data_source_config, pDataSource: *ma_data_source) -> ma_result #foreign miniaudio; +ma_data_source_uninit :: (pDataSource: *ma_data_source) -> void #foreign miniaudio; +ma_data_source_read_pcm_frames :: (pDataSource: *ma_data_source, pFramesOut: *void, frameCount: ma_uint64, pFramesRead: *ma_uint64) -> ma_result #foreign miniaudio; +ma_data_source_seek_pcm_frames :: (pDataSource: *ma_data_source, frameCount: ma_uint64, pFramesSeeked: *ma_uint64) -> ma_result #foreign miniaudio; +ma_data_source_seek_to_pcm_frame :: (pDataSource: *ma_data_source, frameIndex: ma_uint64) -> ma_result #foreign miniaudio; +ma_data_source_get_data_format :: (pDataSource: *ma_data_source, pFormat: *ma_format, pChannels: *ma_uint32, pSampleRate: *ma_uint32, pChannelMap: *ma_channel, channelMapCap: size_t) -> ma_result #foreign miniaudio; +ma_data_source_get_cursor_in_pcm_frames :: (pDataSource: *ma_data_source, pCursor: *ma_uint64) -> ma_result #foreign miniaudio; +ma_data_source_get_length_in_pcm_frames :: (pDataSource: *ma_data_source, pLength: *ma_uint64) -> ma_result #foreign miniaudio; +ma_data_source_get_cursor_in_seconds :: (pDataSource: *ma_data_source, pCursor: *float) -> ma_result #foreign miniaudio; +ma_data_source_get_length_in_seconds :: (pDataSource: *ma_data_source, pLength: *float) -> ma_result #foreign miniaudio; +ma_data_source_set_looping :: (pDataSource: *ma_data_source, isLooping: ma_bool32) -> ma_result #foreign miniaudio; +ma_data_source_is_looping :: (pDataSource: *ma_data_source) -> ma_bool32 #foreign miniaudio; +ma_data_source_set_range_in_pcm_frames :: (pDataSource: *ma_data_source, rangeBegInFrames: ma_uint64, rangeEndInFrames: ma_uint64) -> ma_result #foreign miniaudio; +ma_data_source_get_range_in_pcm_frames :: (pDataSource: *ma_data_source, pRangeBegInFrames: *ma_uint64, pRangeEndInFrames: *ma_uint64) -> void #foreign miniaudio; +ma_data_source_set_loop_point_in_pcm_frames :: (pDataSource: *ma_data_source, loopBegInFrames: ma_uint64, loopEndInFrames: ma_uint64) -> ma_result #foreign miniaudio; +ma_data_source_get_loop_point_in_pcm_frames :: (pDataSource: *ma_data_source, pLoopBegInFrames: *ma_uint64, pLoopEndInFrames: *ma_uint64) -> void #foreign miniaudio; +ma_data_source_set_current :: (pDataSource: *ma_data_source, pCurrentDataSource: *ma_data_source) -> ma_result #foreign miniaudio; +ma_data_source_get_current :: (pDataSource: *ma_data_source) -> *ma_data_source #foreign miniaudio; +ma_data_source_set_next :: (pDataSource: *ma_data_source, pNextDataSource: *ma_data_source) -> ma_result #foreign miniaudio; +ma_data_source_get_next :: (pDataSource: *ma_data_source) -> *ma_data_source #foreign miniaudio; +ma_data_source_set_next_callback :: (pDataSource: *ma_data_source, onGetNext: ma_data_source_get_next_proc) -> ma_result #foreign miniaudio; +ma_data_source_get_next_callback :: (pDataSource: *ma_data_source) -> ma_data_source_get_next_proc #foreign miniaudio; + +ma_audio_buffer_ref :: struct { + ds: ma_data_source_base; + format: ma_format; + channels: ma_uint32; + sampleRate: ma_uint32; + cursor: ma_uint64; + sizeInFrames: ma_uint64; + pData: *void; +} + +ma_audio_buffer_ref_init :: (format: ma_format, channels: ma_uint32, pData: *void, sizeInFrames: ma_uint64, pAudioBufferRef: *ma_audio_buffer_ref) -> ma_result #foreign miniaudio; +ma_audio_buffer_ref_uninit :: (pAudioBufferRef: *ma_audio_buffer_ref) -> void #foreign miniaudio; +ma_audio_buffer_ref_set_data :: (pAudioBufferRef: *ma_audio_buffer_ref, pData: *void, sizeInFrames: ma_uint64) -> ma_result #foreign miniaudio; +ma_audio_buffer_ref_read_pcm_frames :: (pAudioBufferRef: *ma_audio_buffer_ref, pFramesOut: *void, frameCount: ma_uint64, loop: ma_bool32) -> ma_uint64 #foreign miniaudio; +ma_audio_buffer_ref_seek_to_pcm_frame :: (pAudioBufferRef: *ma_audio_buffer_ref, frameIndex: ma_uint64) -> ma_result #foreign miniaudio; +ma_audio_buffer_ref_map :: (pAudioBufferRef: *ma_audio_buffer_ref, ppFramesOut: **void, pFrameCount: *ma_uint64) -> ma_result #foreign miniaudio; +ma_audio_buffer_ref_unmap :: (pAudioBufferRef: *ma_audio_buffer_ref, frameCount: ma_uint64) -> ma_result #foreign miniaudio; +ma_audio_buffer_ref_at_end :: (pAudioBufferRef: *ma_audio_buffer_ref) -> ma_bool32 #foreign miniaudio; +ma_audio_buffer_ref_get_cursor_in_pcm_frames :: (pAudioBufferRef: *ma_audio_buffer_ref, pCursor: *ma_uint64) -> ma_result #foreign miniaudio; +ma_audio_buffer_ref_get_length_in_pcm_frames :: (pAudioBufferRef: *ma_audio_buffer_ref, pLength: *ma_uint64) -> ma_result #foreign miniaudio; +ma_audio_buffer_ref_get_available_frames :: (pAudioBufferRef: *ma_audio_buffer_ref, pAvailableFrames: *ma_uint64) -> ma_result #foreign miniaudio; + +ma_audio_buffer_config :: struct { + format: ma_format; + channels: ma_uint32; + sampleRate: ma_uint32; + sizeInFrames: ma_uint64; + pData: *void; /* If set to NULL, will allocate a block of memory for you. */ + allocationCallbacks: ma_allocation_callbacks; +} + +ma_audio_buffer_config_init :: (format: ma_format, channels: ma_uint32, sizeInFrames: ma_uint64, pData: *void, pAllocationCallbacks: *ma_allocation_callbacks) -> ma_audio_buffer_config #foreign miniaudio; + +ma_audio_buffer :: struct { + ref: ma_audio_buffer_ref; + allocationCallbacks: ma_allocation_callbacks; + ownsData: ma_bool32; /* Used to control whether or not miniaudio owns the data buffer. If set to true, pData will be freed in ma_audio_buffer_uninit(). */ + _pExtraData: [1] ma_uint8; /* For allocating a buffer with the memory located directly after the other memory of the structure. */ +} + +ma_audio_buffer_init :: (pConfig: *ma_audio_buffer_config, pAudioBuffer: *ma_audio_buffer) -> ma_result #foreign miniaudio; +ma_audio_buffer_init_copy :: (pConfig: *ma_audio_buffer_config, pAudioBuffer: *ma_audio_buffer) -> ma_result #foreign miniaudio; +ma_audio_buffer_alloc_and_init :: (pConfig: *ma_audio_buffer_config, ppAudioBuffer: **ma_audio_buffer) -> ma_result #foreign miniaudio; +ma_audio_buffer_uninit :: (pAudioBuffer: *ma_audio_buffer) -> void #foreign miniaudio; +ma_audio_buffer_uninit_and_free :: (pAudioBuffer: *ma_audio_buffer) -> void #foreign miniaudio; +ma_audio_buffer_read_pcm_frames :: (pAudioBuffer: *ma_audio_buffer, pFramesOut: *void, frameCount: ma_uint64, loop: ma_bool32) -> ma_uint64 #foreign miniaudio; +ma_audio_buffer_seek_to_pcm_frame :: (pAudioBuffer: *ma_audio_buffer, frameIndex: ma_uint64) -> ma_result #foreign miniaudio; +ma_audio_buffer_map :: (pAudioBuffer: *ma_audio_buffer, ppFramesOut: **void, pFrameCount: *ma_uint64) -> ma_result #foreign miniaudio; +ma_audio_buffer_unmap :: (pAudioBuffer: *ma_audio_buffer, frameCount: ma_uint64) -> ma_result #foreign miniaudio; +ma_audio_buffer_at_end :: (pAudioBuffer: *ma_audio_buffer) -> ma_bool32 #foreign miniaudio; +ma_audio_buffer_get_cursor_in_pcm_frames :: (pAudioBuffer: *ma_audio_buffer, pCursor: *ma_uint64) -> ma_result #foreign miniaudio; +ma_audio_buffer_get_length_in_pcm_frames :: (pAudioBuffer: *ma_audio_buffer, pLength: *ma_uint64) -> ma_result #foreign miniaudio; +ma_audio_buffer_get_available_frames :: (pAudioBuffer: *ma_audio_buffer, pAvailableFrames: *ma_uint64) -> ma_result #foreign miniaudio; + +ma_paged_audio_buffer_page :: struct { + pNext: *ma_paged_audio_buffer_page; + sizeInFrames: ma_uint64; + pAudioData: [1] ma_uint8; +} + +ma_paged_audio_buffer_data :: struct { + format: ma_format; + channels: ma_uint32; + head: ma_paged_audio_buffer_page; /* Dummy head for the lock-free algorithm. Always has a size of 0. */ + pTail: *ma_paged_audio_buffer_page; /* Never null. Initially set to &head. */ +} + +ma_paged_audio_buffer_data_init :: (format: ma_format, channels: ma_uint32, pData: *ma_paged_audio_buffer_data) -> ma_result #foreign miniaudio; +ma_paged_audio_buffer_data_uninit :: (pData: *ma_paged_audio_buffer_data, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_paged_audio_buffer_data_get_head :: (pData: *ma_paged_audio_buffer_data) -> *ma_paged_audio_buffer_page #foreign miniaudio; +ma_paged_audio_buffer_data_get_tail :: (pData: *ma_paged_audio_buffer_data) -> *ma_paged_audio_buffer_page #foreign miniaudio; +ma_paged_audio_buffer_data_get_length_in_pcm_frames :: (pData: *ma_paged_audio_buffer_data, pLength: *ma_uint64) -> ma_result #foreign miniaudio; +ma_paged_audio_buffer_data_allocate_page :: (pData: *ma_paged_audio_buffer_data, pageSizeInFrames: ma_uint64, pInitialData: *void, pAllocationCallbacks: *ma_allocation_callbacks, ppPage: **ma_paged_audio_buffer_page) -> ma_result #foreign miniaudio; +ma_paged_audio_buffer_data_free_page :: (pData: *ma_paged_audio_buffer_data, pPage: *ma_paged_audio_buffer_page, pAllocationCallbacks: *ma_allocation_callbacks) -> ma_result #foreign miniaudio; +ma_paged_audio_buffer_data_append_page :: (pData: *ma_paged_audio_buffer_data, pPage: *ma_paged_audio_buffer_page) -> ma_result #foreign miniaudio; +ma_paged_audio_buffer_data_allocate_and_append_page :: (pData: *ma_paged_audio_buffer_data, pageSizeInFrames: ma_uint32, pInitialData: *void, pAllocationCallbacks: *ma_allocation_callbacks) -> ma_result #foreign miniaudio; + +ma_paged_audio_buffer_config :: struct { + pData: *ma_paged_audio_buffer_data; /* Must not be null. */ +} + +ma_paged_audio_buffer_config_init :: (pData: *ma_paged_audio_buffer_data) -> ma_paged_audio_buffer_config #foreign miniaudio; + +ma_paged_audio_buffer :: struct { + ds: ma_data_source_base; + pData: *ma_paged_audio_buffer_data; /* Audio data is read from here. Cannot be null. */ + pCurrent: *ma_paged_audio_buffer_page; + relativeCursor: ma_uint64; /* Relative to the current page. */ + absoluteCursor: ma_uint64; +} + +ma_paged_audio_buffer_init :: (pConfig: *ma_paged_audio_buffer_config, pPagedAudioBuffer: *ma_paged_audio_buffer) -> ma_result #foreign miniaudio; +ma_paged_audio_buffer_uninit :: (pPagedAudioBuffer: *ma_paged_audio_buffer) -> void #foreign miniaudio; +ma_paged_audio_buffer_read_pcm_frames :: (pPagedAudioBuffer: *ma_paged_audio_buffer, pFramesOut: *void, frameCount: ma_uint64, pFramesRead: *ma_uint64) -> ma_result #foreign miniaudio; +ma_paged_audio_buffer_seek_to_pcm_frame :: (pPagedAudioBuffer: *ma_paged_audio_buffer, frameIndex: ma_uint64) -> ma_result #foreign miniaudio; +ma_paged_audio_buffer_get_cursor_in_pcm_frames :: (pPagedAudioBuffer: *ma_paged_audio_buffer, pCursor: *ma_uint64) -> ma_result #foreign miniaudio; +ma_paged_audio_buffer_get_length_in_pcm_frames :: (pPagedAudioBuffer: *ma_paged_audio_buffer, pLength: *ma_uint64) -> ma_result #foreign miniaudio; + +/************************************************************************************************************************************************************ + +Ring Buffer + +************************************************************************************************************************************************************/ +ma_rb :: struct { + pBuffer: *void; + subbufferSizeInBytes: ma_uint32; + subbufferCount: ma_uint32; + subbufferStrideInBytes: ma_uint32; + encodedReadOffset: ma_uint32; /* Most significant bit is the loop flag. Lower 31 bits contains the actual offset in bytes. Must be used atomically. */ + encodedWriteOffset: ma_uint32; /* Most significant bit is the loop flag. Lower 31 bits contains the actual offset in bytes. Must be used atomically. */ + ownsBuffer: ma_bool8; /* Used to know whether or not miniaudio is responsible for free()-ing the buffer. */ + clearOnWriteAcquire: ma_bool8; /* When set, clears the acquired write buffer before returning from ma_rb_acquire_write(). */ + allocationCallbacks: ma_allocation_callbacks; +} + +ma_rb_init_ex :: (subbufferSizeInBytes: size_t, subbufferCount: size_t, subbufferStrideInBytes: size_t, pOptionalPreallocatedBuffer: *void, pAllocationCallbacks: *ma_allocation_callbacks, pRB: *ma_rb) -> ma_result #foreign miniaudio; +ma_rb_init :: (bufferSizeInBytes: size_t, pOptionalPreallocatedBuffer: *void, pAllocationCallbacks: *ma_allocation_callbacks, pRB: *ma_rb) -> ma_result #foreign miniaudio; +ma_rb_uninit :: (pRB: *ma_rb) -> void #foreign miniaudio; +ma_rb_reset :: (pRB: *ma_rb) -> void #foreign miniaudio; +ma_rb_acquire_read :: (pRB: *ma_rb, pSizeInBytes: *size_t, ppBufferOut: **void) -> ma_result #foreign miniaudio; +ma_rb_commit_read :: (pRB: *ma_rb, sizeInBytes: size_t) -> ma_result #foreign miniaudio; +ma_rb_acquire_write :: (pRB: *ma_rb, pSizeInBytes: *size_t, ppBufferOut: **void) -> ma_result #foreign miniaudio; +ma_rb_commit_write :: (pRB: *ma_rb, sizeInBytes: size_t) -> ma_result #foreign miniaudio; +ma_rb_seek_read :: (pRB: *ma_rb, offsetInBytes: size_t) -> ma_result #foreign miniaudio; +ma_rb_seek_write :: (pRB: *ma_rb, offsetInBytes: size_t) -> ma_result #foreign miniaudio; +ma_rb_pointer_distance :: (pRB: *ma_rb) -> ma_int32 #foreign miniaudio; +ma_rb_available_read :: (pRB: *ma_rb) -> ma_uint32 #foreign miniaudio; +ma_rb_available_write :: (pRB: *ma_rb) -> ma_uint32 #foreign miniaudio; +ma_rb_get_subbuffer_size :: (pRB: *ma_rb) -> size_t #foreign miniaudio; +ma_rb_get_subbuffer_stride :: (pRB: *ma_rb) -> size_t #foreign miniaudio; +ma_rb_get_subbuffer_offset :: (pRB: *ma_rb, subbufferIndex: size_t) -> size_t #foreign miniaudio; +ma_rb_get_subbuffer_ptr :: (pRB: *ma_rb, subbufferIndex: size_t, pBuffer: *void) -> *void #foreign miniaudio; + +ma_pcm_rb :: struct { + ds: ma_data_source_base; + rb: ma_rb; + format: ma_format; + channels: ma_uint32; + sampleRate: ma_uint32; /* Not required for the ring buffer itself, but useful for associating the data with some sample rate, particularly for data sources. */ +} + +ma_pcm_rb_init_ex :: (format: ma_format, channels: ma_uint32, subbufferSizeInFrames: ma_uint32, subbufferCount: ma_uint32, subbufferStrideInFrames: ma_uint32, pOptionalPreallocatedBuffer: *void, pAllocationCallbacks: *ma_allocation_callbacks, pRB: *ma_pcm_rb) -> ma_result #foreign miniaudio; +ma_pcm_rb_init :: (format: ma_format, channels: ma_uint32, bufferSizeInFrames: ma_uint32, pOptionalPreallocatedBuffer: *void, pAllocationCallbacks: *ma_allocation_callbacks, pRB: *ma_pcm_rb) -> ma_result #foreign miniaudio; +ma_pcm_rb_uninit :: (pRB: *ma_pcm_rb) -> void #foreign miniaudio; +ma_pcm_rb_reset :: (pRB: *ma_pcm_rb) -> void #foreign miniaudio; +ma_pcm_rb_acquire_read :: (pRB: *ma_pcm_rb, pSizeInFrames: *ma_uint32, ppBufferOut: **void) -> ma_result #foreign miniaudio; +ma_pcm_rb_commit_read :: (pRB: *ma_pcm_rb, sizeInFrames: ma_uint32) -> ma_result #foreign miniaudio; +ma_pcm_rb_acquire_write :: (pRB: *ma_pcm_rb, pSizeInFrames: *ma_uint32, ppBufferOut: **void) -> ma_result #foreign miniaudio; +ma_pcm_rb_commit_write :: (pRB: *ma_pcm_rb, sizeInFrames: ma_uint32) -> ma_result #foreign miniaudio; +ma_pcm_rb_seek_read :: (pRB: *ma_pcm_rb, offsetInFrames: ma_uint32) -> ma_result #foreign miniaudio; +ma_pcm_rb_seek_write :: (pRB: *ma_pcm_rb, offsetInFrames: ma_uint32) -> ma_result #foreign miniaudio; +ma_pcm_rb_pointer_distance :: (pRB: *ma_pcm_rb) -> ma_int32 #foreign miniaudio; +ma_pcm_rb_available_read :: (pRB: *ma_pcm_rb) -> ma_uint32 #foreign miniaudio; +ma_pcm_rb_available_write :: (pRB: *ma_pcm_rb) -> ma_uint32 #foreign miniaudio; +ma_pcm_rb_get_subbuffer_size :: (pRB: *ma_pcm_rb) -> ma_uint32 #foreign miniaudio; +ma_pcm_rb_get_subbuffer_stride :: (pRB: *ma_pcm_rb) -> ma_uint32 #foreign miniaudio; +ma_pcm_rb_get_subbuffer_offset :: (pRB: *ma_pcm_rb, subbufferIndex: ma_uint32) -> ma_uint32 #foreign miniaudio; +ma_pcm_rb_get_subbuffer_ptr :: (pRB: *ma_pcm_rb, subbufferIndex: ma_uint32, pBuffer: *void) -> *void #foreign miniaudio; +ma_pcm_rb_get_format :: (pRB: *ma_pcm_rb) -> ma_format #foreign miniaudio; +ma_pcm_rb_get_channels :: (pRB: *ma_pcm_rb) -> ma_uint32 #foreign miniaudio; +ma_pcm_rb_get_sample_rate :: (pRB: *ma_pcm_rb) -> ma_uint32 #foreign miniaudio; +ma_pcm_rb_set_sample_rate :: (pRB: *ma_pcm_rb, sampleRate: ma_uint32) -> void #foreign miniaudio; + +/* +The idea of the duplex ring buffer is to act as the intermediary buffer when running two asynchronous devices in a duplex set up. The +capture device writes to it, and then a playback device reads from it. + +At the moment this is just a simple naive implementation, but in the future I want to implement some dynamic resampling to seamlessly +handle desyncs. Note that the API is work in progress and may change at any time in any version. + +The size of the buffer is based on the capture side since that's what'll be written to the buffer. It is based on the capture period size +in frames. The internal sample rate of the capture device is also needed in order to calculate the size. +*/ +ma_duplex_rb :: struct { + rb: ma_pcm_rb; +} + +ma_duplex_rb_init :: (captureFormat: ma_format, captureChannels: ma_uint32, sampleRate: ma_uint32, captureInternalSampleRate: ma_uint32, captureInternalPeriodSizeInFrames: ma_uint32, pAllocationCallbacks: *ma_allocation_callbacks, pRB: *ma_duplex_rb) -> ma_result #foreign miniaudio; +ma_duplex_rb_uninit :: (pRB: *ma_duplex_rb) -> ma_result #foreign miniaudio; + +/************************************************************************************************************************************************************ + +Miscellaneous Helpers + +************************************************************************************************************************************************************/ +/* +Retrieves a human readable description of the given result code. +*/ +ma_result_description :: (result: ma_result) -> *u8 #foreign miniaudio; + +/* +malloc() +*/ +ma_malloc :: (sz: size_t, pAllocationCallbacks: *ma_allocation_callbacks) -> *void #foreign miniaudio; + +/* +calloc() +*/ +ma_calloc :: (sz: size_t, pAllocationCallbacks: *ma_allocation_callbacks) -> *void #foreign miniaudio; + +/* +realloc() +*/ +ma_realloc :: (p: *void, sz: size_t, pAllocationCallbacks: *ma_allocation_callbacks) -> *void #foreign miniaudio; + +/* +free() +*/ +ma_free :: (p: *void, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; + +/* +Performs an aligned malloc, with the assumption that the alignment is a power of 2. +*/ +ma_aligned_malloc :: (sz: size_t, alignment: size_t, pAllocationCallbacks: *ma_allocation_callbacks) -> *void #foreign miniaudio; + +/* +Free's an aligned malloc'd buffer. +*/ +ma_aligned_free :: (p: *void, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; + +/* +Retrieves a friendly name for a format. +*/ +ma_get_format_name :: (format: ma_format) -> *u8 #foreign miniaudio; + +/* +Blends two frames in floating point format. +*/ +ma_blend_f32 :: (pOut: *float, pInA: *float, pInB: *float, factor: float, channels: ma_uint32) -> void #foreign miniaudio; + +/* +Retrieves the size of a sample in bytes for the given format. + +This API is efficient and is implemented using a lookup table. + +Thread Safety: SAFE +This API is pure. +*/ +ma_get_bytes_per_sample :: (format: ma_format) -> ma_uint32 #foreign miniaudio; + +/* +Converts a log level to a string. +*/ +ma_log_level_to_string :: (logLevel: ma_uint32) -> *u8 #foreign miniaudio; + +/************************************************************************************************************************************************************ + +Synchronization + +************************************************************************************************************************************************************/ +/* +Locks a spinlock. +*/ +ma_spinlock_lock :: (pSpinlock: *ma_spinlock) -> ma_result #foreign miniaudio; + +/* +Locks a spinlock, but does not yield() when looping. +*/ +ma_spinlock_lock_noyield :: (pSpinlock: *ma_spinlock) -> ma_result #foreign miniaudio; + +/* +Unlocks a spinlock. +*/ +ma_spinlock_unlock :: (pSpinlock: *ma_spinlock) -> ma_result #foreign miniaudio; + +/* +Creates a mutex. + +A mutex must be created from a valid context. A mutex is initially unlocked. +*/ +ma_mutex_init :: (pMutex: *ma_mutex) -> ma_result #foreign miniaudio; + +/* +Deletes a mutex. +*/ +ma_mutex_uninit :: (pMutex: *ma_mutex) -> void #foreign miniaudio; + +/* +Locks a mutex with an infinite timeout. +*/ +ma_mutex_lock :: (pMutex: *ma_mutex) -> void #foreign miniaudio; + +/* +Unlocks a mutex. +*/ +ma_mutex_unlock :: (pMutex: *ma_mutex) -> void #foreign miniaudio; + +/* +Initializes an auto-reset event. +*/ +ma_event_init :: (pEvent: *ma_event) -> ma_result #foreign miniaudio; + +/* +Uninitializes an auto-reset event. +*/ +ma_event_uninit :: (pEvent: *ma_event) -> void #foreign miniaudio; + +/* +Waits for the specified auto-reset event to become signalled. +*/ +ma_event_wait :: (pEvent: *ma_event) -> ma_result #foreign miniaudio; + +/* +Signals the specified auto-reset event. +*/ +ma_event_signal :: (pEvent: *ma_event) -> ma_result #foreign miniaudio; + +/* +Fence +===== +This locks while the counter is larger than 0. Counter can be incremented and decremented by any +thread, but care needs to be taken when waiting. It is possible for one thread to acquire the +fence just as another thread returns from ma_fence_wait(). + +The idea behind a fence is to allow you to wait for a group of operations to complete. When an +operation starts, the counter is incremented which locks the fence. When the operation completes, +the fence will be released which decrements the counter. ma_fence_wait() will block until the +counter hits zero. + +If threading is disabled, ma_fence_wait() will spin on the counter. +*/ +ma_fence :: struct { + e: ma_event; + + counter: ma_uint32; +} + +ma_fence_init :: (pFence: *ma_fence) -> ma_result #foreign miniaudio; +ma_fence_uninit :: (pFence: *ma_fence) -> void #foreign miniaudio; +ma_fence_acquire :: (pFence: *ma_fence) -> ma_result #foreign miniaudio; +ma_fence_release :: (pFence: *ma_fence) -> ma_result #foreign miniaudio; +ma_fence_wait :: (pFence: *ma_fence) -> ma_result #foreign miniaudio; + +/* +Notification callback for asynchronous operations. +*/ +ma_async_notification :: void; + +ma_async_notification_callbacks :: struct { + onSignal: #type (pNotification: *ma_async_notification) -> void #c_call; +} + +ma_async_notification_signal :: (pNotification: *ma_async_notification) -> ma_result #foreign miniaudio; + +/* +Simple polling notification. + +This just sets a variable when the notification has been signalled which is then polled with ma_async_notification_poll_is_signalled() +*/ +ma_async_notification_poll :: struct { + cb: ma_async_notification_callbacks; + signalled: ma_bool32; +} + +ma_async_notification_poll_init :: (pNotificationPoll: *ma_async_notification_poll) -> ma_result #foreign miniaudio; +ma_async_notification_poll_is_signalled :: (pNotificationPoll: *ma_async_notification_poll) -> ma_bool32 #foreign miniaudio; + +/* +Event Notification + +This uses an ma_event. If threading is disabled (MA_NO_THREADING), initialization will fail. +*/ +ma_async_notification_event :: struct { + cb: ma_async_notification_callbacks; + + e: ma_event; +} + +ma_async_notification_event_init :: (pNotificationEvent: *ma_async_notification_event) -> ma_result #foreign miniaudio; +ma_async_notification_event_uninit :: (pNotificationEvent: *ma_async_notification_event) -> ma_result #foreign miniaudio; +ma_async_notification_event_wait :: (pNotificationEvent: *ma_async_notification_event) -> ma_result #foreign miniaudio; +ma_async_notification_event_signal :: (pNotificationEvent: *ma_async_notification_event) -> ma_result #foreign miniaudio; + +/* +Slot Allocator +-------------- +The idea of the slot allocator is for it to be used in conjunction with a fixed sized buffer. You use the slot allocator to allocator an index that can be used +as the insertion point for an object. + +Slots are reference counted to help mitigate the ABA problem in the lock-free queue we use for tracking jobs. + +The slot index is stored in the low 32 bits. The reference counter is stored in the high 32 bits: + ++-----------------+-----------------+ +| 32 Bits | 32 Bits | ++-----------------+-----------------+ +| Reference Count | Slot Index | ++-----------------+-----------------+ +*/ +ma_slot_allocator_config :: struct { + capacity: ma_uint32; /* The number of slots to make available. */ +} + +ma_slot_allocator_config_init :: (capacity: ma_uint32) -> ma_slot_allocator_config #foreign miniaudio; + +ma_slot_allocator_group :: struct { + bitfield: ma_uint32; /* Must be used atomically because the allocation and freeing routines need to make copies of this which must never be optimized away by the compiler. */ +} + +ma_slot_allocator :: struct { + pGroups: *ma_slot_allocator_group; /* Slots are grouped in chunks of 32. */ + pSlots: *ma_uint32; /* 32 bits for reference counting for ABA mitigation. */ + count: ma_uint32; /* Allocation count. */ + capacity: ma_uint32; + + /* Memory management. */ + _ownsHeap: ma_bool32; + _pHeap: *void; +} + +ma_slot_allocator_get_heap_size :: (pConfig: *ma_slot_allocator_config, pHeapSizeInBytes: *size_t) -> ma_result #foreign miniaudio; +ma_slot_allocator_init_preallocated :: (pConfig: *ma_slot_allocator_config, pHeap: *void, pAllocator: *ma_slot_allocator) -> ma_result #foreign miniaudio; +ma_slot_allocator_init :: (pConfig: *ma_slot_allocator_config, pAllocationCallbacks: *ma_allocation_callbacks, pAllocator: *ma_slot_allocator) -> ma_result #foreign miniaudio; +ma_slot_allocator_uninit :: (pAllocator: *ma_slot_allocator, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_slot_allocator_alloc :: (pAllocator: *ma_slot_allocator, pSlot: *ma_uint64) -> ma_result #foreign miniaudio; +ma_slot_allocator_free :: (pAllocator: *ma_slot_allocator, slot: ma_uint64) -> ma_result #foreign miniaudio; + +/* +Callback for processing a job. Each job type will have their own processing callback which will be +called by ma_job_process(). +*/ +ma_job_proc :: #type (pJob: *ma_job) -> ma_result #c_call; + +/* When a job type is added here an callback needs to be added go "g_jobVTable" in the implementation section. */ +ma_job_type :: enum s32 { + MA_JOB_TYPE_QUIT :: 0; + MA_JOB_TYPE_CUSTOM :: 1; + + MA_JOB_TYPE_RESOURCE_MANAGER_LOAD_DATA_BUFFER_NODE :: 2; + MA_JOB_TYPE_RESOURCE_MANAGER_FREE_DATA_BUFFER_NODE :: 3; + MA_JOB_TYPE_RESOURCE_MANAGER_PAGE_DATA_BUFFER_NODE :: 4; + MA_JOB_TYPE_RESOURCE_MANAGER_LOAD_DATA_BUFFER :: 5; + MA_JOB_TYPE_RESOURCE_MANAGER_FREE_DATA_BUFFER :: 6; + MA_JOB_TYPE_RESOURCE_MANAGER_LOAD_DATA_STREAM :: 7; + MA_JOB_TYPE_RESOURCE_MANAGER_FREE_DATA_STREAM :: 8; + MA_JOB_TYPE_RESOURCE_MANAGER_PAGE_DATA_STREAM :: 9; + MA_JOB_TYPE_RESOURCE_MANAGER_SEEK_DATA_STREAM :: 10; + + MA_JOB_TYPE_DEVICE_AAUDIO_REROUTE :: 11; + + MA_JOB_TYPE_COUNT :: 12; +} + +ma_job :: struct { + toc: union { + breakup: struct { + code: ma_uint16; /* Job type. */ + slot: ma_uint16; /* Index into a ma_slot_allocator. */ + refcount: ma_uint32; + }; + + allocation: ma_uint64; + }; /* 8 bytes. We encode the job code into the slot allocation data to save space. */ + + next: ma_uint64; /* refcount + slot for the next item. Does not include the job code. */ + order: ma_uint32; /* Execution order. Used to create a data dependency and ensure a job is executed in order. Usage is contextual depending on the job type. */ + + data: union { + custom: struct { + proc: ma_job_proc; + data0: ma_uintptr; + data1: ma_uintptr; + }; + + resourceManager: union { + loadDataBufferNode: struct { + pResourceManager: *void; /*ma_resource_manager**/ + pDataBufferNode: *void; /*ma_resource_manager_data_buffer_node**/ + pFilePath: *u8; + pFilePathW: *s16; + flags: ma_uint32; /* Resource manager data source flags that were used when initializing the data buffer. */ + pInitNotification: *ma_async_notification; /* Signalled when the data buffer has been initialized and the format/channels/rate can be retrieved. */ + pDoneNotification: *ma_async_notification; /* Signalled when the data buffer has been fully decoded. Will be passed through to MA_JOB_TYPE_RESOURCE_MANAGER_PAGE_DATA_BUFFER_NODE when decoding. */ + pInitFence: *ma_fence; /* Released when initialization of the decoder is complete. */ + pDoneFence: *ma_fence; /* Released if initialization of the decoder fails. Passed through to PAGE_DATA_BUFFER_NODE untouched if init is successful. */ + }; + + freeDataBufferNode: struct { + pResourceManager: *void; /*ma_resource_manager**/ + pDataBufferNode: *void; /*ma_resource_manager_data_buffer_node**/ + pDoneNotification: *ma_async_notification; + pDoneFence: *ma_fence; + }; + + pageDataBufferNode: struct { + pResourceManager: *void; /*ma_resource_manager**/ + pDataBufferNode: *void; /*ma_resource_manager_data_buffer_node**/ + pDecoder: *void; /*ma_decoder**/ + pDoneNotification: *ma_async_notification; /* Signalled when the data buffer has been fully decoded. */ + pDoneFence: *ma_fence; /* Passed through from LOAD_DATA_BUFFER_NODE and released when the data buffer completes decoding or an error occurs. */ + }; + + loadDataBuffer: struct { + pDataBuffer: *void; /*ma_resource_manager_data_buffer**/ + pInitNotification: *ma_async_notification; /* Signalled when the data buffer has been initialized and the format/channels/rate can be retrieved. */ + pDoneNotification: *ma_async_notification; /* Signalled when the data buffer has been fully decoded. */ + pInitFence: *ma_fence; /* Released when the data buffer has been initialized and the format/channels/rate can be retrieved. */ + pDoneFence: *ma_fence; /* Released when the data buffer has been fully decoded. */ + rangeBegInPCMFrames: ma_uint64; + rangeEndInPCMFrames: ma_uint64; + loopPointBegInPCMFrames: ma_uint64; + loopPointEndInPCMFrames: ma_uint64; + isLooping: ma_uint32; + }; + + freeDataBuffer: struct { + pDataBuffer: *void; /*ma_resource_manager_data_buffer**/ + pDoneNotification: *ma_async_notification; + pDoneFence: *ma_fence; + }; + + loadDataStream: struct { + pDataStream: *void; /*ma_resource_manager_data_stream**/ + pFilePath: *u8; /* Allocated when the job is posted, freed by the job thread after loading. */ + pFilePathW: *s16; /* ^ As above ^. Only used if pFilePath is NULL. */ + initialSeekPoint: ma_uint64; + pInitNotification: *ma_async_notification; /* Signalled after the first two pages have been decoded and frames can be read from the stream. */ + pInitFence: *ma_fence; + }; + + freeDataStream: struct { + pDataStream: *void; /*ma_resource_manager_data_stream**/ + pDoneNotification: *ma_async_notification; + pDoneFence: *ma_fence; + }; + + pageDataStream: struct { + pDataStream: *void; /*ma_resource_manager_data_stream**/ + pageIndex: ma_uint32; /* The index of the page to decode into. */ + }; + + seekDataStream: struct { + pDataStream: *void; /*ma_resource_manager_data_stream**/ + frameIndex: ma_uint64; + }; + }; + + device: union { + aaudio: union { + reroute: struct { + pDevice: *void; /*ma_device**/ + deviceType: ma_uint32; /*ma_device_type*/ + }; + }; + }; + }; +} + +ma_job_init :: (code: ma_uint16) -> ma_job #foreign miniaudio; +ma_job_process :: (pJob: *ma_job) -> ma_result #foreign miniaudio; + +/* +When set, ma_job_queue_next() will not wait and no semaphore will be signaled in +ma_job_queue_post(). ma_job_queue_next() will return MA_NO_DATA_AVAILABLE if nothing is available. + +This flag should always be used for platforms that do not support multithreading. +*/ +ma_job_queue_flags :: enum s32 { + MA_JOB_QUEUE_FLAG_NON_BLOCKING :: 1; +} + +ma_job_queue_config :: struct { + flags: ma_uint32; + capacity: ma_uint32; /* The maximum number of jobs that can fit in the queue at a time. */ +} + +ma_job_queue_config_init :: (flags: ma_uint32, capacity: ma_uint32) -> ma_job_queue_config #foreign miniaudio; + +ma_job_queue :: struct { + flags: ma_uint32; /* Flags passed in at initialization time. */ + capacity: ma_uint32; /* The maximum number of jobs that can fit in the queue at a time. Set by the config. */ + head: ma_uint64; /* The first item in the list. Required for removing from the top of the list. */ + tail: ma_uint64; /* The last item in the list. Required for appending to the end of the list. */ + + sem: ma_semaphore; /* Only used when MA_JOB_QUEUE_FLAG_NON_BLOCKING is unset. */ + + allocator: ma_slot_allocator; + pJobs: *ma_job; + + lock: ma_spinlock; + + /* Memory management. */ + _pHeap: *void; + _ownsHeap: ma_bool32; +} + +ma_job_queue_get_heap_size :: (pConfig: *ma_job_queue_config, pHeapSizeInBytes: *size_t) -> ma_result #foreign miniaudio; +ma_job_queue_init_preallocated :: (pConfig: *ma_job_queue_config, pHeap: *void, pQueue: *ma_job_queue) -> ma_result #foreign miniaudio; +ma_job_queue_init :: (pConfig: *ma_job_queue_config, pAllocationCallbacks: *ma_allocation_callbacks, pQueue: *ma_job_queue) -> ma_result #foreign miniaudio; +ma_job_queue_uninit :: (pQueue: *ma_job_queue, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_job_queue_post :: (pQueue: *ma_job_queue, pJob: *ma_job) -> ma_result #foreign miniaudio; +ma_job_queue_next :: (pQueue: *ma_job_queue, pJob: *ma_job) -> ma_result #foreign miniaudio; + +ma_device_state :: enum s32 { + ma_device_state_uninitialized :: 0; + ma_device_state_stopped :: 1; + ma_device_state_started :: 2; + ma_device_state_starting :: 3; + ma_device_state_stopping :: 4; +} + +ma_atomic_device_state :: struct { + value: ma_device_state; +} + +/* We need a IMMNotificationClient object for WASAPI. */ +ma_IMMNotificationClient :: struct { + lpVtbl: *void; + counter: ma_uint32; + pDevice: *ma_device; +} + +/* Backend enums must be in priority order. */ +ma_backend :: enum s32 { + ma_backend_wasapi :: 0; + ma_backend_dsound :: 1; + ma_backend_winmm :: 2; + ma_backend_coreaudio :: 3; + ma_backend_sndio :: 4; + ma_backend_audio4 :: 5; + ma_backend_oss :: 6; + ma_backend_pulseaudio :: 7; + ma_backend_alsa :: 8; + ma_backend_jack :: 9; + ma_backend_aaudio :: 10; + ma_backend_opensl :: 11; + ma_backend_webaudio :: 12; + ma_backend_custom :: 13; + ma_backend_null :: 14; +} + +/* +Device job thread. This is used by backends that require asynchronous processing of certain +operations. It is not used by all backends. + +The device job thread is made up of a thread and a job queue. You can post a job to the thread with +ma_device_job_thread_post(). The thread will do the processing of the job. +*/ +ma_device_job_thread_config :: struct { + noThread: ma_bool32; /* Set this to true if you want to process jobs yourself. */ + jobQueueCapacity: ma_uint32; + jobQueueFlags: ma_uint32; +} + +ma_device_job_thread_config_init :: () -> ma_device_job_thread_config #foreign miniaudio; + +ma_device_job_thread :: struct { + thread: ma_thread; + jobQueue: ma_job_queue; + _hasThread: ma_bool32; +} + +ma_device_job_thread_init :: (pConfig: *ma_device_job_thread_config, pAllocationCallbacks: *ma_allocation_callbacks, pJobThread: *ma_device_job_thread) -> ma_result #foreign miniaudio; +ma_device_job_thread_uninit :: (pJobThread: *ma_device_job_thread, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_device_job_thread_post :: (pJobThread: *ma_device_job_thread, pJob: *ma_job) -> ma_result #foreign miniaudio; +ma_device_job_thread_next :: (pJobThread: *ma_device_job_thread, pJob: *ma_job) -> ma_result #foreign miniaudio; + +/* Device notification types. */ +ma_device_notification_type :: enum s32 { + ma_device_notification_type_started :: 0; + ma_device_notification_type_stopped :: 1; + ma_device_notification_type_rerouted :: 2; + ma_device_notification_type_interruption_began :: 3; + ma_device_notification_type_interruption_ended :: 4; +} + +ma_device_notification :: struct { + pDevice: *ma_device; + type: ma_device_notification_type; + data: union { + started: struct { + _unused: s32; + }; + + stopped: struct { + _unused: s32; + }; + + rerouted: struct { + _unused: s32; + }; + + interruption: struct { + _unused: s32; + }; + }; +} + +/* +The notification callback for when the application should be notified of a change to the device. + +This callback is used for notifying the application of changes such as when the device has started, +stopped, rerouted or an interruption has occurred. Note that not all backends will post all +notification types. For example, some backends will perform automatic stream routing without any +kind of notification to the host program which means miniaudio will never know about it and will +never be able to fire the rerouted notification. You should keep this in mind when designing your +program. + +The stopped notification will *not* get fired when a device is rerouted. + + +Parameters +---------- +pNotification (in) +A pointer to a structure containing information about the event. Use the `pDevice` member of +this object to retrieve the relevant device. The `type` member can be used to discriminate +against each of the notification types. + + +Remarks +------- +Do not restart or uninitialize the device from the callback. + +Not all notifications will be triggered by all backends, however the started and stopped events +should be reliable for all backends. Some backends do not have a good way to detect device +stoppages due to unplugging the device which may result in the stopped callback not getting +fired. This has been observed with at least one BSD variant. + +The rerouted notification is fired *after* the reroute has occurred. The stopped notification will +*not* get fired when a device is rerouted. The following backends are known to do automatic stream +rerouting, but do not have a way to be notified of the change: + +* DirectSound + +The interruption notifications are used on mobile platforms for detecting when audio is interrupted +due to things like an incoming phone call. Currently this is only implemented on iOS. None of the +Android backends will report this notification. +*/ +ma_device_notification_proc :: #type (pNotification: *ma_device_notification) -> void #c_call; + +/* +The callback for processing audio data from the device. + +The data callback is fired by miniaudio whenever the device needs to have more data delivered to a playback device, or when a capture device has some data +available. This is called as soon as the backend asks for more data which means it may be called with inconsistent frame counts. You cannot assume the +callback will be fired with a consistent frame count. + + +Parameters +---------- +pDevice (in) +A pointer to the relevant device. + +pOutput (out) +A pointer to the output buffer that will receive audio data that will later be played back through the speakers. This will be non-null for a playback or +full-duplex device and null for a capture and loopback device. + +pInput (in) +A pointer to the buffer containing input data from a recording device. This will be non-null for a capture, full-duplex or loopback device and null for a +playback device. + +frameCount (in) +The number of PCM frames to process. Note that this will not necessarily be equal to what you requested when you initialized the device. The +`periodSizeInFrames` and `periodSizeInMilliseconds` members of the device config are just hints, and are not necessarily exactly what you'll get. You must +not assume this will always be the same value each time the callback is fired. + + +Remarks +------- +You cannot stop and start the device from inside the callback or else you'll get a deadlock. You must also not uninitialize the device from inside the +callback. The following APIs cannot be called from inside the callback: + +ma_device_init() +ma_device_init_ex() +ma_device_uninit() +ma_device_start() +ma_device_stop() + +The proper way to stop the device is to call `ma_device_stop()` from a different thread, normally the main application thread. +*/ +ma_device_data_proc :: #type (pDevice: *ma_device, pOutput: *void, pInput: *void, frameCount: ma_uint32) -> void #c_call; + +/* +DEPRECATED. Use ma_device_notification_proc instead. + +The callback for when the device has been stopped. + +This will be called when the device is stopped explicitly with `ma_device_stop()` and also called implicitly when the device is stopped through external forces +such as being unplugged or an internal error occurring. + + +Parameters +---------- +pDevice (in) +A pointer to the device that has just stopped. + + +Remarks +------- +Do not restart or uninitialize the device from the callback. +*/ +ma_stop_proc :: #type (pDevice: *ma_device) -> void #c_call; + +ma_device_type :: enum s32 { + ma_device_type_playback :: 1; + ma_device_type_capture :: 2; + ma_device_type_duplex :: 3; + ma_device_type_loopback :: 4; +} + +ma_share_mode :: enum s32 { + ma_share_mode_shared :: 0; + ma_share_mode_exclusive :: 1; +} + +/* iOS/tvOS/watchOS session categories. */ +ma_ios_session_category :: enum s32 { + ma_ios_session_category_default :: 0; + ma_ios_session_category_none :: 1; + ma_ios_session_category_ambient :: 2; + ma_ios_session_category_solo_ambient :: 3; + ma_ios_session_category_playback :: 4; + ma_ios_session_category_record :: 5; + ma_ios_session_category_play_and_record :: 6; + ma_ios_session_category_multi_route :: 7; +} + +/* iOS/tvOS/watchOS session category options */ +ma_ios_session_category_option :: enum s32 { + ma_ios_session_category_option_mix_with_others :: 1; + ma_ios_session_category_option_duck_others :: 2; + ma_ios_session_category_option_allow_bluetooth :: 4; + ma_ios_session_category_option_default_to_speaker :: 8; + ma_ios_session_category_option_interrupt_spoken_audio_and_mix_with_others :: 17; + ma_ios_session_category_option_allow_bluetooth_a2dp :: 32; + ma_ios_session_category_option_allow_air_play :: 64; +} + +/* OpenSL stream types. */ +ma_opensl_stream_type :: enum s32 { + ma_opensl_stream_type_default :: 0; + ma_opensl_stream_type_voice :: 1; + ma_opensl_stream_type_system :: 2; + ma_opensl_stream_type_ring :: 3; + ma_opensl_stream_type_media :: 4; + ma_opensl_stream_type_alarm :: 5; + ma_opensl_stream_type_notification :: 6; +} + +/* OpenSL recording presets. */ +ma_opensl_recording_preset :: enum s32 { + ma_opensl_recording_preset_default :: 0; + ma_opensl_recording_preset_generic :: 1; + ma_opensl_recording_preset_camcorder :: 2; + ma_opensl_recording_preset_voice_recognition :: 3; + ma_opensl_recording_preset_voice_communication :: 4; + ma_opensl_recording_preset_voice_unprocessed :: 5; +} + +/* WASAPI audio thread priority characteristics. */ +ma_wasapi_usage :: enum s32 { + ma_wasapi_usage_default :: 0; + ma_wasapi_usage_games :: 1; + ma_wasapi_usage_pro_audio :: 2; +} + +/* AAudio usage types. */ +ma_aaudio_usage :: enum s32 { + ma_aaudio_usage_default :: 0; + ma_aaudio_usage_media :: 1; + ma_aaudio_usage_voice_communication :: 2; + ma_aaudio_usage_voice_communication_signalling :: 3; + ma_aaudio_usage_alarm :: 4; + ma_aaudio_usage_notification :: 5; + ma_aaudio_usage_notification_ringtone :: 6; + ma_aaudio_usage_notification_event :: 7; + ma_aaudio_usage_assistance_accessibility :: 8; + ma_aaudio_usage_assistance_navigation_guidance :: 9; + ma_aaudio_usage_assistance_sonification :: 10; + ma_aaudio_usage_game :: 11; + ma_aaudio_usage_assitant :: 12; + ma_aaudio_usage_emergency :: 13; + ma_aaudio_usage_safety :: 14; + ma_aaudio_usage_vehicle_status :: 15; + ma_aaudio_usage_announcement :: 16; +} + +/* AAudio content types. */ +ma_aaudio_content_type :: enum s32 { + ma_aaudio_content_type_default :: 0; + ma_aaudio_content_type_speech :: 1; + ma_aaudio_content_type_music :: 2; + ma_aaudio_content_type_movie :: 3; + ma_aaudio_content_type_sonification :: 4; +} + +/* AAudio input presets. */ +ma_aaudio_input_preset :: enum s32 { + ma_aaudio_input_preset_default :: 0; + ma_aaudio_input_preset_generic :: 1; + ma_aaudio_input_preset_camcorder :: 2; + ma_aaudio_input_preset_voice_recognition :: 3; + ma_aaudio_input_preset_voice_communication :: 4; + ma_aaudio_input_preset_unprocessed :: 5; + ma_aaudio_input_preset_voice_performance :: 6; +} + +ma_aaudio_allowed_capture_policy :: enum s32 { + ma_aaudio_allow_capture_default :: 0; + ma_aaudio_allow_capture_by_all :: 1; + ma_aaudio_allow_capture_by_system :: 2; + ma_aaudio_allow_capture_by_none :: 3; +} + +ma_timer :: union { + counter: ma_int64; + counterD: float64; +} + +ma_device_id :: union { + wasapi: [64] ma_wchar_win32; /* WASAPI uses a wchar_t string for identification. */ + dsound: [16] ma_uint8; /* DirectSound uses a GUID for identification. */ + winmm: ma_uint32; /* When creating a device, WinMM expects a Win32 UINT_PTR for device identification. In practice it's actually just a UINT. */ + alsa: [256] u8; /* ALSA uses a name string for identification. */ + pulse: [256] u8; /* PulseAudio uses a name string for identification. */ + jack: s32; /* JACK always uses default devices. */ + coreaudio: [256] u8; /* Core Audio uses a string for identification. */ + sndio: [256] u8; /* "snd/0", etc. */ + audio4: [256] u8; /* "/dev/audio", etc. */ + oss: [64] u8; /* "dev/dsp0", etc. "dev/dsp" for the default device. */ + aaudio: ma_int32; /* AAudio uses a 32-bit integer for identification. */ + opensl: ma_uint32; /* OpenSL|ES uses a 32-bit unsigned integer for identification. */ + webaudio: [32] u8; /* Web Audio always uses default devices for now, but if this changes it'll be a GUID. */ + custom: union { + i: s32; + s: [256] u8; + p: *void; + }; /* The custom backend could be anything. Give them a few options. */ + + nullbackend: s32; /* The null backend uses an integer for device IDs. */ +} + +ma_device_info :: struct { + /* Basic info. This is the only information guaranteed to be filled in during device enumeration. */ + id: ma_device_id; + name: [256] u8; /* +1 for null terminator. */ + isDefault: ma_bool32; + + nativeDataFormatCount: ma_uint32; + nativeDataFormats: [64] struct { + format: ma_format; /* Sample format. If set to ma_format_unknown, all sample formats are supported. */ + channels: ma_uint32; /* If set to 0, all channels are supported. */ + sampleRate: ma_uint32; /* If set to 0, all sample rates are supported. */ + flags: ma_uint32; /* A combination of MA_DATA_FORMAT_FLAG_* flags. */ + }; /*ma_format_count * ma_standard_sample_rate_count * MA_MAX_CHANNELS*/ +} + +ma_device_config :: struct { + deviceType: ma_device_type; + sampleRate: ma_uint32; + periodSizeInFrames: ma_uint32; + periodSizeInMilliseconds: ma_uint32; + periods: ma_uint32; + performanceProfile: ma_performance_profile; + noPreSilencedOutputBuffer: ma_bool8; /* When set to true, the contents of the output buffer passed into the data callback will be left undefined rather than initialized to silence. */ + noClip: ma_bool8; /* When set to true, the contents of the output buffer passed into the data callback will be clipped after returning. Only applies when the playback sample format is f32. */ + noDisableDenormals: ma_bool8; /* Do not disable denormals when firing the data callback. */ + noFixedSizedCallback: ma_bool8; /* Disables strict fixed-sized data callbacks. Setting this to true will result in the period size being treated only as a hint to the backend. This is an optimization for those who don't need fixed sized callbacks. */ + dataCallback: ma_device_data_proc; + notificationCallback: ma_device_notification_proc; + stopCallback: ma_stop_proc; + pUserData: *void; + resampling: ma_resampler_config; + playback: struct { + pDeviceID: *ma_device_id; + format: ma_format; + channels: ma_uint32; + pChannelMap: *ma_channel; + channelMixMode: ma_channel_mix_mode; + calculateLFEFromSpatialChannels: ma_bool32; /* When an output LFE channel is present, but no input LFE, set to true to set the output LFE to the average of all spatial channels (LR, FR, etc.). Ignored when an input LFE is present. */ + shareMode: ma_share_mode; + }; + + capture: struct { + pDeviceID: *ma_device_id; + format: ma_format; + channels: ma_uint32; + pChannelMap: *ma_channel; + channelMixMode: ma_channel_mix_mode; + calculateLFEFromSpatialChannels: ma_bool32; /* When an output LFE channel is present, but no input LFE, set to true to set the output LFE to the average of all spatial channels (LR, FR, etc.). Ignored when an input LFE is present. */ + shareMode: ma_share_mode; + }; + + wasapi: struct { + usage: ma_wasapi_usage; /* When configured, uses Avrt APIs to set the thread characteristics. */ + noAutoConvertSRC: ma_bool8; /* When set to true, disables the use of AUDCLNT_STREAMFLAGS_AUTOCONVERTPCM. */ + noDefaultQualitySRC: ma_bool8; /* When set to true, disables the use of AUDCLNT_STREAMFLAGS_SRC_DEFAULT_QUALITY. */ + noAutoStreamRouting: ma_bool8; /* Disables automatic stream routing. */ + noHardwareOffloading: ma_bool8; /* Disables WASAPI's hardware offloading feature. */ + loopbackProcessID: ma_uint32; /* The process ID to include or exclude for loopback mode. Set to 0 to capture audio from all processes. Ignored when an explicit device ID is specified. */ + loopbackProcessExclude: ma_bool8; /* When set to true, excludes the process specified by loopbackProcessID. By default, the process will be included. */ + }; + + alsa: struct { + noMMap: ma_bool32; /* Disables MMap mode. */ + noAutoFormat: ma_bool32; /* Opens the ALSA device with SND_PCM_NO_AUTO_FORMAT. */ + noAutoChannels: ma_bool32; /* Opens the ALSA device with SND_PCM_NO_AUTO_CHANNELS. */ + noAutoResample: ma_bool32; /* Opens the ALSA device with SND_PCM_NO_AUTO_RESAMPLE. */ + }; + + pulse: struct { + pStreamNamePlayback: *u8; + pStreamNameCapture: *u8; + }; + + coreaudio: struct { + allowNominalSampleRateChange: ma_bool32; /* Desktop only. When enabled, allows changing of the sample rate at the operating system level. */ + }; + + opensl: struct { + streamType: ma_opensl_stream_type; + recordingPreset: ma_opensl_recording_preset; + enableCompatibilityWorkarounds: ma_bool32; + }; + + aaudio: struct { + usage: ma_aaudio_usage; + contentType: ma_aaudio_content_type; + inputPreset: ma_aaudio_input_preset; + allowedCapturePolicy: ma_aaudio_allowed_capture_policy; + noAutoStartAfterReroute: ma_bool32; + enableCompatibilityWorkarounds: ma_bool32; + }; +} + +/* +The callback for handling device enumeration. This is fired from `ma_context_enumerate_devices()`. + + +Parameters +---------- +pContext (in) +A pointer to the context performing the enumeration. + +deviceType (in) +The type of the device being enumerated. This will always be either `ma_device_type_playback` or `ma_device_type_capture`. + +pInfo (in) +A pointer to a `ma_device_info` containing the ID and name of the enumerated device. Note that this will not include detailed information about the device, +only basic information (ID and name). The reason for this is that it would otherwise require opening the backend device to probe for the information which +is too inefficient. + +pUserData (in) +The user data pointer passed into `ma_context_enumerate_devices()`. +*/ +ma_enum_devices_callback_proc :: #type (pContext: *ma_context, deviceType: ma_device_type, pInfo: *ma_device_info, pUserData: *void) -> ma_bool32 #c_call; + +/* +Describes some basic details about a playback or capture device. +*/ +ma_device_descriptor :: struct { + pDeviceID: *ma_device_id; + shareMode: ma_share_mode; + format: ma_format; + channels: ma_uint32; + sampleRate: ma_uint32; + channelMap: [254] ma_channel; + periodSizeInFrames: ma_uint32; + periodSizeInMilliseconds: ma_uint32; + periodCount: ma_uint32; +} + +/* +These are the callbacks required to be implemented for a backend. These callbacks are grouped into two parts: context and device. There is one context +to many devices. A device is created from a context. + +The general flow goes like this: + +1) A context is created with `onContextInit()` +1a) Available devices can be enumerated with `onContextEnumerateDevices()` if required. +1b) Detailed information about a device can be queried with `onContextGetDeviceInfo()` if required. +2) A device is created from the context that was created in the first step using `onDeviceInit()`, and optionally a device ID that was +selected from device enumeration via `onContextEnumerateDevices()`. +3) A device is started or stopped with `onDeviceStart()` / `onDeviceStop()` +4) Data is delivered to and from the device by the backend. This is always done based on the native format returned by the prior call +to `onDeviceInit()`. Conversion between the device's native format and the format requested by the application will be handled by +miniaudio internally. + +Initialization of the context is quite simple. You need to do any necessary initialization of internal objects and then output the +callbacks defined in this structure. + +Once the context has been initialized you can initialize a device. Before doing so, however, the application may want to know which +physical devices are available. This is where `onContextEnumerateDevices()` comes in. This is fairly simple. For each device, fire the +given callback with, at a minimum, the basic information filled out in `ma_device_info`. When the callback returns `MA_FALSE`, enumeration +needs to stop and the `onContextEnumerateDevices()` function returns with a success code. + +Detailed device information can be retrieved from a device ID using `onContextGetDeviceInfo()`. This takes as input the device type and ID, +and on output returns detailed information about the device in `ma_device_info`. The `onContextGetDeviceInfo()` callback must handle the +case when the device ID is NULL, in which case information about the default device needs to be retrieved. + +Once the context has been created and the device ID retrieved (if using anything other than the default device), the device can be created. +This is a little bit more complicated than initialization of the context due to it's more complicated configuration. When initializing a +device, a duplex device may be requested. This means a separate data format needs to be specified for both playback and capture. On input, +the data format is set to what the application wants. On output it's set to the native format which should match as closely as possible to +the requested format. The conversion between the format requested by the application and the device's native format will be handled +internally by miniaudio. + +On input, if the sample format is set to `ma_format_unknown`, the backend is free to use whatever sample format it desires, so long as it's +supported by miniaudio. When the channel count is set to 0, the backend should use the device's native channel count. The same applies for +sample rate. For the channel map, the default should be used when `ma_channel_map_is_blank()` returns true (all channels set to +`MA_CHANNEL_NONE`). On input, the `periodSizeInFrames` or `periodSizeInMilliseconds` option should always be set. The backend should +inspect both of these variables. If `periodSizeInFrames` is set, it should take priority, otherwise it needs to be derived from the period +size in milliseconds (`periodSizeInMilliseconds`) and the sample rate, keeping in mind that the sample rate may be 0, in which case the +sample rate will need to be determined before calculating the period size in frames. On output, all members of the `ma_device_descriptor` +object should be set to a valid value, except for `periodSizeInMilliseconds` which is optional (`periodSizeInFrames` *must* be set). + +Starting and stopping of the device is done with `onDeviceStart()` and `onDeviceStop()` and should be self-explanatory. If the backend uses +asynchronous reading and writing, `onDeviceStart()` and `onDeviceStop()` should always be implemented. + +The handling of data delivery between the application and the device is the most complicated part of the process. To make this a bit +easier, some helper callbacks are available. If the backend uses a blocking read/write style of API, the `onDeviceRead()` and +`onDeviceWrite()` callbacks can optionally be implemented. These are blocking and work just like reading and writing from a file. If the +backend uses a callback for data delivery, that callback must call `ma_device_handle_backend_data_callback()` from within it's callback. +This allows miniaudio to then process any necessary data conversion and then pass it to the miniaudio data callback. + +If the backend requires absolute flexibility with it's data delivery, it can optionally implement the `onDeviceDataLoop()` callback +which will allow it to implement the logic that will run on the audio thread. This is much more advanced and is completely optional. + +The audio thread should run data delivery logic in a loop while `ma_device_get_state() == ma_device_state_started` and no errors have been +encountered. Do not start or stop the device here. That will be handled from outside the `onDeviceDataLoop()` callback. + +The invocation of the `onDeviceDataLoop()` callback will be handled by miniaudio. When you start the device, miniaudio will fire this +callback. When the device is stopped, the `ma_device_get_state() == ma_device_state_started` condition will fail and the loop will be terminated +which will then fall through to the part that stops the device. For an example on how to implement the `onDeviceDataLoop()` callback, +look at `ma_device_audio_thread__default_read_write()`. Implement the `onDeviceDataLoopWakeup()` callback if you need a mechanism to +wake up the audio thread. + +If the backend supports an optimized retrieval of device information from an initialized `ma_device` object, it should implement the +`onDeviceGetInfo()` callback. This is optional, in which case it will fall back to `onContextGetDeviceInfo()` which is less efficient. +*/ +ma_backend_callbacks :: struct { + onContextInit: #type (pContext: *ma_context, pConfig: *ma_context_config, pCallbacks: *ma_backend_callbacks) -> ma_result #c_call; + onContextUninit: #type (pContext: *ma_context) -> ma_result #c_call; + onContextEnumerateDevices: #type (pContext: *ma_context, callback: ma_enum_devices_callback_proc, pUserData: *void) -> ma_result #c_call; + onContextGetDeviceInfo: #type (pContext: *ma_context, deviceType: ma_device_type, pDeviceID: *ma_device_id, pDeviceInfo: *ma_device_info) -> ma_result #c_call; + onDeviceInit: #type (pDevice: *ma_device, pConfig: *ma_device_config, pDescriptorPlayback: *ma_device_descriptor, pDescriptorCapture: *ma_device_descriptor) -> ma_result #c_call; + onDeviceUninit: #type (pDevice: *ma_device) -> ma_result #c_call; + onDeviceStart: #type (pDevice: *ma_device) -> ma_result #c_call; + onDeviceStop: #type (pDevice: *ma_device) -> ma_result #c_call; + onDeviceRead: #type (pDevice: *ma_device, pFrames: *void, frameCount: ma_uint32, pFramesRead: *ma_uint32) -> ma_result #c_call; + onDeviceWrite: #type (pDevice: *ma_device, pFrames: *void, frameCount: ma_uint32, pFramesWritten: *ma_uint32) -> ma_result #c_call; + onDeviceDataLoop: #type (pDevice: *ma_device) -> ma_result #c_call; + onDeviceDataLoopWakeup: #type (pDevice: *ma_device) -> ma_result #c_call; + onDeviceGetInfo: #type (pDevice: *ma_device, type: ma_device_type, pDeviceInfo: *ma_device_info) -> ma_result #c_call; +} + +ma_context_config :: struct { + pLog: *ma_log; + threadPriority: ma_thread_priority; + threadStackSize: size_t; + pUserData: *void; + allocationCallbacks: ma_allocation_callbacks; + alsa: struct { + useVerboseDeviceEnumeration: ma_bool32; + }; + + pulse: struct { + pApplicationName: *u8; + pServerName: *u8; + tryAutoSpawn: ma_bool32; /* Enables autospawning of the PulseAudio daemon if necessary. */ + }; + + coreaudio: struct { + sessionCategory: ma_ios_session_category; + sessionCategoryOptions: ma_uint32; + noAudioSessionActivate: ma_bool32; /* iOS only. When set to true, does not perform an explicit [[AVAudioSession sharedInstace] setActive:true] on initialization. */ + noAudioSessionDeactivate: ma_bool32; /* iOS only. When set to true, does not perform an explicit [[AVAudioSession sharedInstace] setActive:false] on uninitialization. */ + }; + + jack: struct { + pClientName: *u8; + tryStartServer: ma_bool32; + }; + + custom: ma_backend_callbacks; +} + +/* WASAPI specific structure for some commands which must run on a common thread due to bugs in WASAPI. */ +ma_context_command__wasapi :: struct { + code: s32; + pEvent: *ma_event; /* This will be signalled when the event is complete. */ + data: union { + quit: struct { + _unused: s32; + }; + + createAudioClient: struct { + deviceType: ma_device_type; + pAudioClient: *void; + ppAudioClientService: **void; + pResult: *ma_result; /* The result from creating the audio client service. */ + }; + + releaseAudioClient: struct { + pDevice: *ma_device; + deviceType: ma_device_type; + }; + }; +} + +ma_context :: struct { + callbacks: ma_backend_callbacks; + backend: ma_backend; /* DirectSound, ALSA, etc. */ + pLog: *ma_log; + log: ma_log; /* Only used if the log is owned by the context. The pLog member will be set to &log in this case. */ + threadPriority: ma_thread_priority; + threadStackSize: size_t; + pUserData: *void; + allocationCallbacks: ma_allocation_callbacks; + deviceEnumLock: ma_mutex; /* Used to make ma_context_get_devices() thread safe. */ + deviceInfoLock: ma_mutex; /* Used to make ma_context_get_device_info() thread safe. */ + deviceInfoCapacity: ma_uint32; /* Total capacity of pDeviceInfos. */ + playbackDeviceInfoCount: ma_uint32; + captureDeviceInfoCount: ma_uint32; + pDeviceInfos: *ma_device_info; /* Playback devices first, then capture. */ + + union { + wasapi: struct { + commandThread: ma_thread; + commandLock: ma_mutex; + commandSem: ma_semaphore; + commandIndex: ma_uint32; + commandCount: ma_uint32; + commands: [4] ma_context_command__wasapi; + hAvrt: ma_handle; + AvSetMmThreadCharacteristicsA: ma_proc; + AvRevertMmThreadcharacteristics: ma_proc; + hMMDevapi: ma_handle; + ActivateAudioInterfaceAsync: ma_proc; + }; + + dsound: struct { + hDSoundDLL: ma_handle; + DirectSoundCreate: ma_proc; + DirectSoundEnumerateA: ma_proc; + DirectSoundCaptureCreate: ma_proc; + DirectSoundCaptureEnumerateA: ma_proc; + }; + + winmm: struct { + hWinMM: ma_handle; + waveOutGetNumDevs: ma_proc; + waveOutGetDevCapsA: ma_proc; + waveOutOpen: ma_proc; + waveOutClose: ma_proc; + waveOutPrepareHeader: ma_proc; + waveOutUnprepareHeader: ma_proc; + waveOutWrite: ma_proc; + waveOutReset: ma_proc; + waveInGetNumDevs: ma_proc; + waveInGetDevCapsA: ma_proc; + waveInOpen: ma_proc; + waveInClose: ma_proc; + waveInPrepareHeader: ma_proc; + waveInUnprepareHeader: ma_proc; + waveInAddBuffer: ma_proc; + waveInStart: ma_proc; + waveInReset: ma_proc; + }; + + jack: struct { + jackSO: ma_handle; + jack_client_open: ma_proc; + jack_client_close: ma_proc; + jack_client_name_size: ma_proc; + jack_set_process_callback: ma_proc; + jack_set_buffer_size_callback: ma_proc; + jack_on_shutdown: ma_proc; + jack_get_sample_rate: ma_proc; + jack_get_buffer_size: ma_proc; + jack_get_ports: ma_proc; + jack_activate: ma_proc; + jack_deactivate: ma_proc; + jack_connect: ma_proc; + jack_port_register: ma_proc; + jack_port_name: ma_proc; + jack_port_get_buffer: ma_proc; + jack_free: ma_proc; + + pClientName: *u8; + tryStartServer: ma_bool32; + }; + + null_backend: struct { + _unused: s32; + }; + } + + union { + win32: struct { + hOle32DLL: ma_handle; /*HMODULE*/ + CoInitialize: ma_proc; + CoInitializeEx: ma_proc; + CoUninitialize: ma_proc; + CoCreateInstance: ma_proc; + CoTaskMemFree: ma_proc; + PropVariantClear: ma_proc; + StringFromGUID2: ma_proc; + + hUser32DLL: ma_handle; /*HMODULE*/ + GetForegroundWindow: ma_proc; + GetDesktopWindow: ma_proc; + + hAdvapi32DLL: ma_handle; /*HMODULE*/ + RegOpenKeyExA: ma_proc; + RegCloseKey: ma_proc; + RegQueryValueExA: ma_proc; + + CoInitializeResult: s32; /*HRESULT*/ + }; + + _unused: s32; + } +} + +ma_device :: struct { + pContext: *ma_context; + type: ma_device_type; + sampleRate: ma_uint32; + state: ma_atomic_device_state; /* The state of the device is variable and can change at any time on any thread. Must be used atomically. */ + onData: ma_device_data_proc; /* Set once at initialization time and should not be changed after. */ + onNotification: ma_device_notification_proc; /* Set once at initialization time and should not be changed after. */ + onStop: ma_stop_proc; /* DEPRECATED. Use the notification callback instead. Set once at initialization time and should not be changed after. */ + pUserData: *void; /* Application defined data. */ + startStopLock: ma_mutex; + wakeupEvent: ma_event; + startEvent: ma_event; + stopEvent: ma_event; + thread: ma_thread; + workResult: ma_result; /* This is set by the worker thread after it's finished doing a job. */ + isOwnerOfContext: ma_bool8; /* When set to true, uninitializing the device will also uninitialize the context. Set to true when NULL is passed into ma_device_init(). */ + noPreSilencedOutputBuffer: ma_bool8; + noClip: ma_bool8; + noDisableDenormals: ma_bool8; + noFixedSizedCallback: ma_bool8; + masterVolumeFactor: ma_atomic_float; /* Linear 0..1. Can be read and written simultaneously by different threads. Must be used atomically. */ + duplexRB: ma_duplex_rb; /* Intermediary buffer for duplex device on asynchronous backends. */ + resampling: struct { + algorithm: ma_resample_algorithm; + pBackendVTable: *ma_resampling_backend_vtable; + pBackendUserData: *void; + linear: struct { + lpfOrder: ma_uint32; + }; + }; + + playback: struct { + pID: *ma_device_id; /* Set to NULL if using default ID, otherwise set to the address of "id". */ + id: ma_device_id; /* If using an explicit device, will be set to a copy of the ID used for initialization. Otherwise cleared to 0. */ + name: [256] u8; /* Maybe temporary. Likely to be replaced with a query API. */ + shareMode: ma_share_mode; /* Set to whatever was passed in when the device was initialized. */ + format: ma_format; + channels: ma_uint32; + channelMap: [254] ma_channel; + internalFormat: ma_format; + internalChannels: ma_uint32; + internalSampleRate: ma_uint32; + internalChannelMap: [254] ma_channel; + internalPeriodSizeInFrames: ma_uint32; + internalPeriods: ma_uint32; + channelMixMode: ma_channel_mix_mode; + calculateLFEFromSpatialChannels: ma_bool32; + converter: ma_data_converter; + pIntermediaryBuffer: *void; /* For implementing fixed sized buffer callbacks. Will be null if using variable sized callbacks. */ + intermediaryBufferCap: ma_uint32; + intermediaryBufferLen: ma_uint32; /* How many valid frames are sitting in the intermediary buffer. */ + pInputCache: *void; /* In external format. Can be null. */ + inputCacheCap: ma_uint64; + inputCacheConsumed: ma_uint64; + inputCacheRemaining: ma_uint64; + }; + + capture: struct { + pID: *ma_device_id; /* Set to NULL if using default ID, otherwise set to the address of "id". */ + id: ma_device_id; /* If using an explicit device, will be set to a copy of the ID used for initialization. Otherwise cleared to 0. */ + name: [256] u8; /* Maybe temporary. Likely to be replaced with a query API. */ + shareMode: ma_share_mode; /* Set to whatever was passed in when the device was initialized. */ + format: ma_format; + channels: ma_uint32; + channelMap: [254] ma_channel; + internalFormat: ma_format; + internalChannels: ma_uint32; + internalSampleRate: ma_uint32; + internalChannelMap: [254] ma_channel; + internalPeriodSizeInFrames: ma_uint32; + internalPeriods: ma_uint32; + channelMixMode: ma_channel_mix_mode; + calculateLFEFromSpatialChannels: ma_bool32; + converter: ma_data_converter; + pIntermediaryBuffer: *void; /* For implementing fixed sized buffer callbacks. Will be null if using variable sized callbacks. */ + intermediaryBufferCap: ma_uint32; + intermediaryBufferLen: ma_uint32; /* How many valid frames are sitting in the intermediary buffer. */ + }; + + union { + wasapi: struct { + pAudioClientPlayback: ma_ptr; /*IAudioClient**/ + pAudioClientCapture: ma_ptr; /*IAudioClient**/ + pRenderClient: ma_ptr; /*IAudioRenderClient**/ + pCaptureClient: ma_ptr; /*IAudioCaptureClient**/ + pDeviceEnumerator: ma_ptr; /* Used for IMMNotificationClient notifications. Required for detecting default device changes. */ + notificationClient: ma_IMMNotificationClient; + hEventPlayback: ma_handle; /* Auto reset. Initialized to signaled. */ + hEventCapture: ma_handle; /* Auto reset. Initialized to unsignaled. */ + actualBufferSizeInFramesPlayback: ma_uint32; /* Value from GetBufferSize(). internalPeriodSizeInFrames is not set to the _actual_ buffer size when low-latency shared mode is being used due to the way the IAudioClient3 API works. */ + actualBufferSizeInFramesCapture: ma_uint32; + originalPeriodSizeInFrames: ma_uint32; + originalPeriodSizeInMilliseconds: ma_uint32; + originalPeriods: ma_uint32; + originalPerformanceProfile: ma_performance_profile; + periodSizeInFramesPlayback: ma_uint32; + periodSizeInFramesCapture: ma_uint32; + pMappedBufferCapture: *void; + mappedBufferCaptureCap: ma_uint32; + mappedBufferCaptureLen: ma_uint32; + pMappedBufferPlayback: *void; + mappedBufferPlaybackCap: ma_uint32; + mappedBufferPlaybackLen: ma_uint32; + isStartedCapture: ma_atomic_bool32; /* Can be read and written simultaneously across different threads. Must be used atomically, and must be 32-bit. */ + isStartedPlayback: ma_atomic_bool32; /* Can be read and written simultaneously across different threads. Must be used atomically, and must be 32-bit. */ + loopbackProcessID: ma_uint32; + loopbackProcessExclude: ma_bool8; + noAutoConvertSRC: ma_bool8; /* When set to true, disables the use of AUDCLNT_STREAMFLAGS_AUTOCONVERTPCM. */ + noDefaultQualitySRC: ma_bool8; /* When set to true, disables the use of AUDCLNT_STREAMFLAGS_SRC_DEFAULT_QUALITY. */ + noHardwareOffloading: ma_bool8; + allowCaptureAutoStreamRouting: ma_bool8; + allowPlaybackAutoStreamRouting: ma_bool8; + isDetachedPlayback: ma_bool8; + isDetachedCapture: ma_bool8; + usage: ma_wasapi_usage; + hAvrtHandle: *void; + rerouteLock: ma_mutex; + }; + + dsound: struct { + pPlayback: ma_ptr; /*LPDIRECTSOUND*/ + pPlaybackPrimaryBuffer: ma_ptr; /*LPDIRECTSOUNDBUFFER*/ + pPlaybackBuffer: ma_ptr; /*LPDIRECTSOUNDBUFFER*/ + pCapture: ma_ptr; /*LPDIRECTSOUNDCAPTURE*/ + pCaptureBuffer: ma_ptr; /*LPDIRECTSOUNDCAPTUREBUFFER*/ + }; + + winmm: struct { + hDevicePlayback: ma_handle; /*HWAVEOUT*/ + hDeviceCapture: ma_handle; /*HWAVEIN*/ + hEventPlayback: ma_handle; /*HANDLE*/ + hEventCapture: ma_handle; /*HANDLE*/ + fragmentSizeInFrames: ma_uint32; + iNextHeaderPlayback: ma_uint32; /* [0,periods). Used as an index into pWAVEHDRPlayback. */ + iNextHeaderCapture: ma_uint32; /* [0,periods). Used as an index into pWAVEHDRCapture. */ + headerFramesConsumedPlayback: ma_uint32; /* The number of PCM frames consumed in the buffer in pWAVEHEADER[iNextHeader]. */ + headerFramesConsumedCapture: ma_uint32; /* ^^^ */ + pWAVEHDRPlayback: *ma_uint8; /* One instantiation for each period. */ + pWAVEHDRCapture: *ma_uint8; /* One instantiation for each period. */ + pIntermediaryBufferPlayback: *ma_uint8; + pIntermediaryBufferCapture: *ma_uint8; + _pHeapData: *ma_uint8; /* Used internally and is used for the heap allocated data for the intermediary buffer and the WAVEHDR structures. */ + }; + + jack: struct { + pClient: ma_ptr; /*jack_client_t**/ + ppPortsPlayback: *ma_ptr; /*jack_port_t**/ + ppPortsCapture: *ma_ptr; /*jack_port_t**/ + pIntermediaryBufferPlayback: *float; /* Typed as a float because JACK is always floating point. */ + pIntermediaryBufferCapture: *float; + }; + + null_device: struct { + deviceThread: ma_thread; + operationEvent: ma_event; + operationCompletionEvent: ma_event; + operationSemaphore: ma_semaphore; + operation: ma_uint32; + operationResult: ma_result; + timer: ma_timer; + priorRunTime: float64; + currentPeriodFramesRemainingPlayback: ma_uint32; + currentPeriodFramesRemainingCapture: ma_uint32; + lastProcessedFramePlayback: ma_uint64; + lastProcessedFrameCapture: ma_uint64; + isStarted: ma_atomic_bool32; /* Read and written by multiple threads. Must be used atomically, and must be 32-bit for compiler compatibility. */ + }; + } +} + +/* +Initializes a `ma_context_config` object. + + +Return Value +------------ +A `ma_context_config` initialized to defaults. + + +Remarks +------- +You must always use this to initialize the default state of the `ma_context_config` object. Not using this will result in your program breaking when miniaudio +is updated and new members are added to `ma_context_config`. It also sets logical defaults. + +You can override members of the returned object by changing it's members directly. + + +See Also +-------- +ma_context_init() +*/ +ma_context_config_init :: () -> ma_context_config #foreign miniaudio; + +/* +Initializes a context. + +The context is used for selecting and initializing an appropriate backend and to represent the backend at a more global level than that of an individual +device. There is one context to many devices, and a device is created from a context. A context is required to enumerate devices. + + +Parameters +---------- +backends (in, optional) +A list of backends to try initializing, in priority order. Can be NULL, in which case it uses default priority order. + +backendCount (in, optional) +The number of items in `backend`. Ignored if `backend` is NULL. + +pConfig (in, optional) +The context configuration. + +pContext (in) +A pointer to the context object being initialized. + + +Return Value +------------ +MA_SUCCESS if successful; any other error code otherwise. + + +Thread Safety +------------- +Unsafe. Do not call this function across multiple threads as some backends read and write to global state. + + +Remarks +------- +When `backends` is NULL, the default priority order will be used. Below is a list of backends in priority order: + +|-------------|-----------------------|--------------------------------------------------------| +| Name | Enum Name | Supported Operating Systems | +|-------------|-----------------------|--------------------------------------------------------| +| WASAPI | ma_backend_wasapi | Windows Vista+ | +| DirectSound | ma_backend_dsound | Windows XP+ | +| WinMM | ma_backend_winmm | Windows XP+ (may work on older versions, but untested) | +| Core Audio | ma_backend_coreaudio | macOS, iOS | +| ALSA | ma_backend_alsa | Linux | +| PulseAudio | ma_backend_pulseaudio | Cross Platform (disabled on Windows, BSD and Android) | +| JACK | ma_backend_jack | Cross Platform (disabled on BSD and Android) | +| sndio | ma_backend_sndio | OpenBSD | +| audio(4) | ma_backend_audio4 | NetBSD, OpenBSD | +| OSS | ma_backend_oss | FreeBSD | +| AAudio | ma_backend_aaudio | Android 8+ | +| OpenSL|ES | ma_backend_opensl | Android (API level 16+) | +| Web Audio | ma_backend_webaudio | Web (via Emscripten) | +| Null | ma_backend_null | Cross Platform (not used on Web) | +|-------------|-----------------------|--------------------------------------------------------| + +The context can be configured via the `pConfig` argument. The config object is initialized with `ma_context_config_init()`. Individual configuration settings +can then be set directly on the structure. Below are the members of the `ma_context_config` object. + +pLog +A pointer to the `ma_log` to post log messages to. Can be NULL if the application does not +require logging. See the `ma_log` API for details on how to use the logging system. + +threadPriority +The desired priority to use for the audio thread. Allowable values include the following: + +|--------------------------------------| +| Thread Priority | +|--------------------------------------| +| ma_thread_priority_idle | +| ma_thread_priority_lowest | +| ma_thread_priority_low | +| ma_thread_priority_normal | +| ma_thread_priority_high | +| ma_thread_priority_highest (default) | +| ma_thread_priority_realtime | +| ma_thread_priority_default | +|--------------------------------------| + +threadStackSize +The desired size of the stack for the audio thread. Defaults to the operating system's default. + +pUserData +A pointer to application-defined data. This can be accessed from the context object directly such as `context.pUserData`. + +allocationCallbacks +Structure containing custom allocation callbacks. Leaving this at defaults will cause it to use MA_MALLOC, MA_REALLOC and MA_FREE. These allocation +callbacks will be used for anything tied to the context, including devices. + +alsa.useVerboseDeviceEnumeration +ALSA will typically enumerate many different devices which can be intrusive and not user-friendly. To combat this, miniaudio will enumerate only unique +card/device pairs by default. The problem with this is that you lose a bit of flexibility and control. Setting alsa.useVerboseDeviceEnumeration makes +it so the ALSA backend includes all devices. Defaults to false. + +pulse.pApplicationName +PulseAudio only. The application name to use when initializing the PulseAudio context with `pa_context_new()`. + +pulse.pServerName +PulseAudio only. The name of the server to connect to with `pa_context_connect()`. + +pulse.tryAutoSpawn +PulseAudio only. Whether or not to try automatically starting the PulseAudio daemon. Defaults to false. If you set this to true, keep in mind that +miniaudio uses a trial and error method to find the most appropriate backend, and this will result in the PulseAudio daemon starting which may be +intrusive for the end user. + +coreaudio.sessionCategory +iOS only. The session category to use for the shared AudioSession instance. Below is a list of allowable values and their Core Audio equivalents. + +|-----------------------------------------|-------------------------------------| +| miniaudio Token | Core Audio Token | +|-----------------------------------------|-------------------------------------| +| ma_ios_session_category_ambient | AVAudioSessionCategoryAmbient | +| ma_ios_session_category_solo_ambient | AVAudioSessionCategorySoloAmbient | +| ma_ios_session_category_playback | AVAudioSessionCategoryPlayback | +| ma_ios_session_category_record | AVAudioSessionCategoryRecord | +| ma_ios_session_category_play_and_record | AVAudioSessionCategoryPlayAndRecord | +| ma_ios_session_category_multi_route | AVAudioSessionCategoryMultiRoute | +| ma_ios_session_category_none | AVAudioSessionCategoryAmbient | +| ma_ios_session_category_default | AVAudioSessionCategoryAmbient | +|-----------------------------------------|-------------------------------------| + +coreaudio.sessionCategoryOptions +iOS only. Session category options to use with the shared AudioSession instance. Below is a list of allowable values and their Core Audio equivalents. + +|---------------------------------------------------------------------------|------------------------------------------------------------------| +| miniaudio Token | Core Audio Token | +|---------------------------------------------------------------------------|------------------------------------------------------------------| +| ma_ios_session_category_option_mix_with_others | AVAudioSessionCategoryOptionMixWithOthers | +| ma_ios_session_category_option_duck_others | AVAudioSessionCategoryOptionDuckOthers | +| ma_ios_session_category_option_allow_bluetooth | AVAudioSessionCategoryOptionAllowBluetooth | +| ma_ios_session_category_option_default_to_speaker | AVAudioSessionCategoryOptionDefaultToSpeaker | +| ma_ios_session_category_option_interrupt_spoken_audio_and_mix_with_others | AVAudioSessionCategoryOptionInterruptSpokenAudioAndMixWithOthers | +| ma_ios_session_category_option_allow_bluetooth_a2dp | AVAudioSessionCategoryOptionAllowBluetoothA2DP | +| ma_ios_session_category_option_allow_air_play | AVAudioSessionCategoryOptionAllowAirPlay | +|---------------------------------------------------------------------------|------------------------------------------------------------------| + +coreaudio.noAudioSessionActivate +iOS only. When set to true, does not perform an explicit [[AVAudioSession sharedInstace] setActive:true] on initialization. + +coreaudio.noAudioSessionDeactivate +iOS only. When set to true, does not perform an explicit [[AVAudioSession sharedInstace] setActive:false] on uninitialization. + +jack.pClientName +The name of the client to pass to `jack_client_open()`. + +jack.tryStartServer +Whether or not to try auto-starting the JACK server. Defaults to false. + + +It is recommended that only a single context is active at any given time because it's a bulky data structure which performs run-time linking for the +relevant backends every time it's initialized. + +The location of the context cannot change throughout it's lifetime. Consider allocating the `ma_context` object with `malloc()` if this is an issue. The +reason for this is that a pointer to the context is stored in the `ma_device` structure. + + +Example 1 - Default Initialization +---------------------------------- +The example below shows how to initialize the context using the default configuration. + +```c +ma_context context; +ma_result result = ma_context_init(NULL, 0, NULL, &context); +if (result != MA_SUCCESS) { +// Error. +} +``` + + +Example 2 - Custom Configuration +-------------------------------- +The example below shows how to initialize the context using custom backend priorities and a custom configuration. In this hypothetical example, the program +wants to prioritize ALSA over PulseAudio on Linux. They also want to avoid using the WinMM backend on Windows because it's latency is too high. They also +want an error to be returned if no valid backend is available which they achieve by excluding the Null backend. + +For the configuration, the program wants to capture any log messages so they can, for example, route it to a log file and user interface. + +```c +ma_backend backends[] = { +ma_backend_alsa, +ma_backend_pulseaudio, +ma_backend_wasapi, +ma_backend_dsound +}; + +ma_log log; +ma_log_init(&log); +ma_log_register_callback(&log, ma_log_callback_init(my_log_callbac, pMyLogUserData)); + +ma_context_config config = ma_context_config_init(); +config.pLog = &log; // Specify a custom log object in the config so any logs that are posted from ma_context_init() are captured. + +ma_context context; +ma_result result = ma_context_init(backends, sizeof(backends)/sizeof(backends[0]), &config, &context); +if (result != MA_SUCCESS) { +// Error. +if (result == MA_NO_BACKEND) { +// Couldn't find an appropriate backend. +} +} + +// You could also attach a log callback post-initialization: +ma_log_register_callback(ma_context_get_log(&context), ma_log_callback_init(my_log_callback, pMyLogUserData)); +``` + + +See Also +-------- +ma_context_config_init() +ma_context_uninit() +*/ +ma_context_init :: (backends: *ma_backend, backendCount: ma_uint32, pConfig: *ma_context_config, pContext: *ma_context) -> ma_result #foreign miniaudio; + +/* +Uninitializes a context. + + +Return Value +------------ +MA_SUCCESS if successful; any other error code otherwise. + + +Thread Safety +------------- +Unsafe. Do not call this function across multiple threads as some backends read and write to global state. + + +Remarks +------- +Results are undefined if you call this while any device created by this context is still active. + + +See Also +-------- +ma_context_init() +*/ +ma_context_uninit :: (pContext: *ma_context) -> ma_result #foreign miniaudio; + +/* +Retrieves the size of the ma_context object. + +This is mainly for the purpose of bindings to know how much memory to allocate. +*/ +ma_context_sizeof :: () -> size_t #foreign miniaudio; + +/* +Retrieves a pointer to the log object associated with this context. + + +Remarks +------- +Pass the returned pointer to `ma_log_post()`, `ma_log_postv()` or `ma_log_postf()` to post a log +message. + +You can attach your own logging callback to the log with `ma_log_register_callback()` + + +Return Value +------------ +A pointer to the `ma_log` object that the context uses to post log messages. If some error occurs, +NULL will be returned. +*/ +ma_context_get_log :: (pContext: *ma_context) -> *ma_log #foreign miniaudio; + +/* +Enumerates over every device (both playback and capture). + +This is a lower-level enumeration function to the easier to use `ma_context_get_devices()`. Use `ma_context_enumerate_devices()` if you would rather not incur +an internal heap allocation, or it simply suits your code better. + +Note that this only retrieves the ID and name/description of the device. The reason for only retrieving basic information is that it would otherwise require +opening the backend device in order to probe it for more detailed information which can be inefficient. Consider using `ma_context_get_device_info()` for this, +but don't call it from within the enumeration callback. + +Returning false from the callback will stop enumeration. Returning true will continue enumeration. + + +Parameters +---------- +pContext (in) +A pointer to the context performing the enumeration. + +callback (in) +The callback to fire for each enumerated device. + +pUserData (in) +A pointer to application-defined data passed to the callback. + + +Return Value +------------ +MA_SUCCESS if successful; any other error code otherwise. + + +Thread Safety +------------- +Safe. This is guarded using a simple mutex lock. + + +Remarks +------- +Do _not_ assume the first enumerated device of a given type is the default device. + +Some backends and platforms may only support default playback and capture devices. + +In general, you should not do anything complicated from within the callback. In particular, do not try initializing a device from within the callback. Also, +do not try to call `ma_context_get_device_info()` from within the callback. + +Consider using `ma_context_get_devices()` for a simpler and safer API, albeit at the expense of an internal heap allocation. + + +Example 1 - Simple Enumeration +------------------------------ +ma_bool32 ma_device_enum_callback(ma_context* pContext, ma_device_type deviceType, const ma_device_info* pInfo, void* pUserData) +{ +printf("Device Name: %s\n", pInfo->name); +return MA_TRUE; +} + +ma_result result = ma_context_enumerate_devices(&context, my_device_enum_callback, pMyUserData); +if (result != MA_SUCCESS) { +// Error. +} + + +See Also +-------- +ma_context_get_devices() +*/ +ma_context_enumerate_devices :: (pContext: *ma_context, callback: ma_enum_devices_callback_proc, pUserData: *void) -> ma_result #foreign miniaudio; + +/* +Retrieves basic information about every active playback and/or capture device. + +This function will allocate memory internally for the device lists and return a pointer to them through the `ppPlaybackDeviceInfos` and `ppCaptureDeviceInfos` +parameters. If you do not want to incur the overhead of these allocations consider using `ma_context_enumerate_devices()` which will instead use a callback. + + +Parameters +---------- +pContext (in) +A pointer to the context performing the enumeration. + +ppPlaybackDeviceInfos (out) +A pointer to a pointer that will receive the address of a buffer containing the list of `ma_device_info` structures for playback devices. + +pPlaybackDeviceCount (out) +A pointer to an unsigned integer that will receive the number of playback devices. + +ppCaptureDeviceInfos (out) +A pointer to a pointer that will receive the address of a buffer containing the list of `ma_device_info` structures for capture devices. + +pCaptureDeviceCount (out) +A pointer to an unsigned integer that will receive the number of capture devices. + + +Return Value +------------ +MA_SUCCESS if successful; any other error code otherwise. + + +Thread Safety +------------- +Unsafe. Since each call to this function invalidates the pointers from the previous call, you should not be calling this simultaneously across multiple +threads. Instead, you need to make a copy of the returned data with your own higher level synchronization. + + +Remarks +------- +It is _not_ safe to assume the first device in the list is the default device. + +You can pass in NULL for the playback or capture lists in which case they'll be ignored. + +The returned pointers will become invalid upon the next call this this function, or when the context is uninitialized. Do not free the returned pointers. + + +See Also +-------- +ma_context_get_devices() +*/ +ma_context_get_devices :: (pContext: *ma_context, ppPlaybackDeviceInfos: **ma_device_info, pPlaybackDeviceCount: *ma_uint32, ppCaptureDeviceInfos: **ma_device_info, pCaptureDeviceCount: *ma_uint32) -> ma_result #foreign miniaudio; + +/* +Retrieves information about a device of the given type, with the specified ID and share mode. + + +Parameters +---------- +pContext (in) +A pointer to the context performing the query. + +deviceType (in) +The type of the device being queried. Must be either `ma_device_type_playback` or `ma_device_type_capture`. + +pDeviceID (in) +The ID of the device being queried. + +pDeviceInfo (out) +A pointer to the `ma_device_info` structure that will receive the device information. + + +Return Value +------------ +MA_SUCCESS if successful; any other error code otherwise. + + +Thread Safety +------------- +Safe. This is guarded using a simple mutex lock. + + +Remarks +------- +Do _not_ call this from within the `ma_context_enumerate_devices()` callback. + +It's possible for a device to have different information and capabilities depending on whether or not it's opened in shared or exclusive mode. For example, in +shared mode, WASAPI always uses floating point samples for mixing, but in exclusive mode it can be anything. Therefore, this function allows you to specify +which share mode you want information for. Note that not all backends and devices support shared or exclusive mode, in which case this function will fail if +the requested share mode is unsupported. + +This leaves pDeviceInfo unmodified in the result of an error. +*/ +ma_context_get_device_info :: (pContext: *ma_context, deviceType: ma_device_type, pDeviceID: *ma_device_id, pDeviceInfo: *ma_device_info) -> ma_result #foreign miniaudio; + +/* +Determines if the given context supports loopback mode. + + +Parameters +---------- +pContext (in) +A pointer to the context getting queried. + + +Return Value +------------ +MA_TRUE if the context supports loopback mode; MA_FALSE otherwise. +*/ +ma_context_is_loopback_supported :: (pContext: *ma_context) -> ma_bool32 #foreign miniaudio; + +/* +Initializes a device config with default settings. + + +Parameters +---------- +deviceType (in) +The type of the device this config is being initialized for. This must set to one of the following: + +|-------------------------| +| Device Type | +|-------------------------| +| ma_device_type_playback | +| ma_device_type_capture | +| ma_device_type_duplex | +| ma_device_type_loopback | +|-------------------------| + + +Return Value +------------ +A new device config object with default settings. You will typically want to adjust the config after this function returns. See remarks. + + +Thread Safety +------------- +Safe. + + +Callback Safety +--------------- +Safe, but don't try initializing a device in a callback. + + +Remarks +------- +The returned config will be initialized to defaults. You will normally want to customize a few variables before initializing the device. See Example 1 for a +typical configuration which sets the sample format, channel count, sample rate, data callback and user data. These are usually things you will want to change +before initializing the device. + +See `ma_device_init()` for details on specific configuration options. + + +Example 1 - Simple Configuration +-------------------------------- +The example below is what a program will typically want to configure for each device at a minimum. Notice how `ma_device_config_init()` is called first, and +then the returned object is modified directly. This is important because it ensures that your program continues to work as new configuration options are added +to the `ma_device_config` structure. + +```c +ma_device_config config = ma_device_config_init(ma_device_type_playback); +config.playback.format = ma_format_f32; +config.playback.channels = 2; +config.sampleRate = 48000; +config.dataCallback = ma_data_callback; +config.pUserData = pMyUserData; +``` + + +See Also +-------- +ma_device_init() +ma_device_init_ex() +*/ +ma_device_config_init :: (deviceType: ma_device_type) -> ma_device_config #foreign miniaudio; + +/* +Initializes a device. + +A device represents a physical audio device. The idea is you send or receive audio data from the device to either play it back through a speaker, or capture it +from a microphone. Whether or not you should send or receive data from the device (or both) depends on the type of device you are initializing which can be +playback, capture, full-duplex or loopback. (Note that loopback mode is only supported on select backends.) Sending and receiving audio data to and from the +device is done via a callback which is fired by miniaudio at periodic time intervals. + +The frequency at which data is delivered to and from a device depends on the size of it's period. The size of the period can be defined in terms of PCM frames +or milliseconds, whichever is more convenient. Generally speaking, the smaller the period, the lower the latency at the expense of higher CPU usage and +increased risk of glitching due to the more frequent and granular data deliver intervals. The size of a period will depend on your requirements, but +miniaudio's defaults should work fine for most scenarios. If you're building a game you should leave this fairly small, whereas if you're building a simple +media player you can make it larger. Note that the period size you request is actually just a hint - miniaudio will tell the backend what you want, but the +backend is ultimately responsible for what it gives you. You cannot assume you will get exactly what you ask for. + +When delivering data to and from a device you need to make sure it's in the correct format which you can set through the device configuration. You just set the +format that you want to use and miniaudio will perform all of the necessary conversion for you internally. When delivering data to and from the callback you +can assume the format is the same as what you requested when you initialized the device. See Remarks for more details on miniaudio's data conversion pipeline. + + +Parameters +---------- +pContext (in, optional) +A pointer to the context that owns the device. This can be null, in which case it creates a default context internally. + +pConfig (in) +A pointer to the device configuration. Cannot be null. See remarks for details. + +pDevice (out) +A pointer to the device object being initialized. + + +Return Value +------------ +MA_SUCCESS if successful; any other error code otherwise. + + +Thread Safety +------------- +Unsafe. It is not safe to call this function simultaneously for different devices because some backends depend on and mutate global state. The same applies to +calling this at the same time as `ma_device_uninit()`. + + +Callback Safety +--------------- +Unsafe. It is not safe to call this inside any callback. + + +Remarks +------- +Setting `pContext` to NULL will result in miniaudio creating a default context internally and is equivalent to passing in a context initialized like so: + +```c +ma_context_init(NULL, 0, NULL, &context); +``` + +Do not set `pContext` to NULL if you are needing to open multiple devices. You can, however, use NULL when initializing the first device, and then use +device.pContext for the initialization of other devices. + +The device can be configured via the `pConfig` argument. The config object is initialized with `ma_device_config_init()`. Individual configuration settings can +then be set directly on the structure. Below are the members of the `ma_device_config` object. + +deviceType +Must be `ma_device_type_playback`, `ma_device_type_capture`, `ma_device_type_duplex` of `ma_device_type_loopback`. + +sampleRate +The sample rate, in hertz. The most common sample rates are 48000 and 44100. Setting this to 0 will use the device's native sample rate. + +periodSizeInFrames +The desired size of a period in PCM frames. If this is 0, `periodSizeInMilliseconds` will be used instead. If both are 0 the default buffer size will +be used depending on the selected performance profile. This value affects latency. See below for details. + +periodSizeInMilliseconds +The desired size of a period in milliseconds. If this is 0, `periodSizeInFrames` will be used instead. If both are 0 the default buffer size will be +used depending on the selected performance profile. The value affects latency. See below for details. + +periods +The number of periods making up the device's entire buffer. The total buffer size is `periodSizeInFrames` or `periodSizeInMilliseconds` multiplied by +this value. This is just a hint as backends will be the ones who ultimately decide how your periods will be configured. + +performanceProfile +A hint to miniaudio as to the performance requirements of your program. Can be either `ma_performance_profile_low_latency` (default) or +`ma_performance_profile_conservative`. This mainly affects the size of default buffers and can usually be left at it's default value. + +noPreSilencedOutputBuffer +When set to true, the contents of the output buffer passed into the data callback will be left undefined. When set to false (default), the contents of +the output buffer will be cleared the zero. You can use this to avoid the overhead of zeroing out the buffer if you can guarantee that your data +callback will write to every sample in the output buffer, or if you are doing your own clearing. + +noClip +When set to true, the contents of the output buffer passed into the data callback will be clipped after returning. When set to false (default), the +contents of the output buffer are left alone after returning and it will be left up to the backend itself to decide whether or not the clip. This only +applies when the playback sample format is f32. + +noDisableDenormals +By default, miniaudio will disable denormals when the data callback is called. Setting this to true will prevent the disabling of denormals. + +noFixedSizedCallback +Allows miniaudio to fire the data callback with any frame count. When this is set to false (the default), the data callback will be fired with a +consistent frame count as specified by `periodSizeInFrames` or `periodSizeInMilliseconds`. When set to true, miniaudio will fire the callback with +whatever the backend requests, which could be anything. + +dataCallback +The callback to fire whenever data is ready to be delivered to or from the device. + +notificationCallback +The callback to fire when something has changed with the device, such as whether or not it has been started or stopped. + +pUserData +The user data pointer to use with the device. You can access this directly from the device object like `device.pUserData`. + +resampling.algorithm +The resampling algorithm to use when miniaudio needs to perform resampling between the rate specified by `sampleRate` and the device's native rate. The +default value is `ma_resample_algorithm_linear`, and the quality can be configured with `resampling.linear.lpfOrder`. + +resampling.pBackendVTable +A pointer to an optional vtable that can be used for plugging in a custom resampler. + +resampling.pBackendUserData +A pointer that will passed to callbacks in pBackendVTable. + +resampling.linear.lpfOrder +The linear resampler applies a low-pass filter as part of it's processing for anti-aliasing. This setting controls the order of the filter. The higher +the value, the better the quality, in general. Setting this to 0 will disable low-pass filtering altogether. The maximum value is +`MA_MAX_FILTER_ORDER`. The default value is `min(4, MA_MAX_FILTER_ORDER)`. + +playback.pDeviceID +A pointer to a `ma_device_id` structure containing the ID of the playback device to initialize. Setting this NULL (default) will use the system's +default playback device. Retrieve the device ID from the `ma_device_info` structure, which can be retrieved using device enumeration. + +playback.format +The sample format to use for playback. When set to `ma_format_unknown` the device's native format will be used. This can be retrieved after +initialization from the device object directly with `device.playback.format`. + +playback.channels +The number of channels to use for playback. When set to 0 the device's native channel count will be used. This can be retrieved after initialization +from the device object directly with `device.playback.channels`. + +playback.pChannelMap +The channel map to use for playback. When left empty, the device's native channel map will be used. This can be retrieved after initialization from the +device object direct with `device.playback.pChannelMap`. When set, the buffer should contain `channels` items. + +playback.shareMode +The preferred share mode to use for playback. Can be either `ma_share_mode_shared` (default) or `ma_share_mode_exclusive`. Note that if you specify +exclusive mode, but it's not supported by the backend, initialization will fail. You can then fall back to shared mode if desired by changing this to +ma_share_mode_shared and reinitializing. + +capture.pDeviceID +A pointer to a `ma_device_id` structure containing the ID of the capture device to initialize. Setting this NULL (default) will use the system's +default capture device. Retrieve the device ID from the `ma_device_info` structure, which can be retrieved using device enumeration. + +capture.format +The sample format to use for capture. When set to `ma_format_unknown` the device's native format will be used. This can be retrieved after +initialization from the device object directly with `device.capture.format`. + +capture.channels +The number of channels to use for capture. When set to 0 the device's native channel count will be used. This can be retrieved after initialization +from the device object directly with `device.capture.channels`. + +capture.pChannelMap +The channel map to use for capture. When left empty, the device's native channel map will be used. This can be retrieved after initialization from the +device object direct with `device.capture.pChannelMap`. When set, the buffer should contain `channels` items. + +capture.shareMode +The preferred share mode to use for capture. Can be either `ma_share_mode_shared` (default) or `ma_share_mode_exclusive`. Note that if you specify +exclusive mode, but it's not supported by the backend, initialization will fail. You can then fall back to shared mode if desired by changing this to +ma_share_mode_shared and reinitializing. + +wasapi.noAutoConvertSRC +WASAPI only. When set to true, disables WASAPI's automatic resampling and forces the use of miniaudio's resampler. Defaults to false. + +wasapi.noDefaultQualitySRC +WASAPI only. Only used when `wasapi.noAutoConvertSRC` is set to false. When set to true, disables the use of `AUDCLNT_STREAMFLAGS_SRC_DEFAULT_QUALITY`. +You should usually leave this set to false, which is the default. + +wasapi.noAutoStreamRouting +WASAPI only. When set to true, disables automatic stream routing on the WASAPI backend. Defaults to false. + +wasapi.noHardwareOffloading +WASAPI only. When set to true, disables the use of WASAPI's hardware offloading feature. Defaults to false. + +alsa.noMMap +ALSA only. When set to true, disables MMap mode. Defaults to false. + +alsa.noAutoFormat +ALSA only. When set to true, disables ALSA's automatic format conversion by including the SND_PCM_NO_AUTO_FORMAT flag. Defaults to false. + +alsa.noAutoChannels +ALSA only. When set to true, disables ALSA's automatic channel conversion by including the SND_PCM_NO_AUTO_CHANNELS flag. Defaults to false. + +alsa.noAutoResample +ALSA only. When set to true, disables ALSA's automatic resampling by including the SND_PCM_NO_AUTO_RESAMPLE flag. Defaults to false. + +pulse.pStreamNamePlayback +PulseAudio only. Sets the stream name for playback. + +pulse.pStreamNameCapture +PulseAudio only. Sets the stream name for capture. + +coreaudio.allowNominalSampleRateChange +Core Audio only. Desktop only. When enabled, allows the sample rate of the device to be changed at the operating system level. This +is disabled by default in order to prevent intrusive changes to the user's system. This is useful if you want to use a sample rate +that is known to be natively supported by the hardware thereby avoiding the cost of resampling. When set to true, miniaudio will +find the closest match between the sample rate requested in the device config and the sample rates natively supported by the +hardware. When set to false, the sample rate currently set by the operating system will always be used. + +opensl.streamType +OpenSL only. Explicitly sets the stream type. If left unset (`ma_opensl_stream_type_default`), the +stream type will be left unset. Think of this as the type of audio you're playing. + +opensl.recordingPreset +OpenSL only. Explicitly sets the type of recording your program will be doing. When left +unset, the recording preset will be left unchanged. + +aaudio.usage +AAudio only. Explicitly sets the nature of the audio the program will be consuming. When +left unset, the usage will be left unchanged. + +aaudio.contentType +AAudio only. Sets the content type. When left unset, the content type will be left unchanged. + +aaudio.inputPreset +AAudio only. Explicitly sets the type of recording your program will be doing. When left +unset, the input preset will be left unchanged. + +aaudio.noAutoStartAfterReroute +AAudio only. Controls whether or not the device should be automatically restarted after a +stream reroute. When set to false (default) the device will be restarted automatically; +otherwise the device will be stopped. + + +Once initialized, the device's config is immutable. If you need to change the config you will need to initialize a new device. + +After initializing the device it will be in a stopped state. To start it, use `ma_device_start()`. + +If both `periodSizeInFrames` and `periodSizeInMilliseconds` are set to zero, it will default to `MA_DEFAULT_PERIOD_SIZE_IN_MILLISECONDS_LOW_LATENCY` or +`MA_DEFAULT_PERIOD_SIZE_IN_MILLISECONDS_CONSERVATIVE`, depending on whether or not `performanceProfile` is set to `ma_performance_profile_low_latency` or +`ma_performance_profile_conservative`. + +If you request exclusive mode and the backend does not support it an error will be returned. For robustness, you may want to first try initializing the device +in exclusive mode, and then fall back to shared mode if required. Alternatively you can just request shared mode (the default if you leave it unset in the +config) which is the most reliable option. Some backends do not have a practical way of choosing whether or not the device should be exclusive or not (ALSA, +for example) in which case it just acts as a hint. Unless you have special requirements you should try avoiding exclusive mode as it's intrusive to the user. +Starting with Windows 10, miniaudio will use low-latency shared mode where possible which may make exclusive mode unnecessary. + +When sending or receiving data to/from a device, miniaudio will internally perform a format conversion to convert between the format specified by the config +and the format used internally by the backend. If you pass in 0 for the sample format, channel count, sample rate _and_ channel map, data transmission will run +on an optimized pass-through fast path. You can retrieve the format, channel count and sample rate by inspecting the `playback/capture.format`, +`playback/capture.channels` and `sampleRate` members of the device object. + +When compiling for UWP you must ensure you call this function on the main UI thread because the operating system may need to present the user with a message +asking for permissions. Please refer to the official documentation for ActivateAudioInterfaceAsync() for more information. + +ALSA Specific: When initializing the default device, requesting shared mode will try using the "dmix" device for playback and the "dsnoop" device for capture. +If these fail it will try falling back to the "hw" device. + + +Example 1 - Simple Initialization +--------------------------------- +This example shows how to initialize a simple playback device using a standard configuration. If you are just needing to do simple playback from the default +playback device this is usually all you need. + +```c +ma_device_config config = ma_device_config_init(ma_device_type_playback); +config.playback.format = ma_format_f32; +config.playback.channels = 2; +config.sampleRate = 48000; +config.dataCallback = ma_data_callback; +config.pMyUserData = pMyUserData; + +ma_device device; +ma_result result = ma_device_init(NULL, &config, &device); +if (result != MA_SUCCESS) { +// Error +} +``` + + +Example 2 - Advanced Initialization +----------------------------------- +This example shows how you might do some more advanced initialization. In this hypothetical example we want to control the latency by setting the buffer size +and period count. We also want to allow the user to be able to choose which device to output from which means we need a context so we can perform device +enumeration. + +```c +ma_context context; +ma_result result = ma_context_init(NULL, 0, NULL, &context); +if (result != MA_SUCCESS) { +// Error +} + +ma_device_info* pPlaybackDeviceInfos; +ma_uint32 playbackDeviceCount; +result = ma_context_get_devices(&context, &pPlaybackDeviceInfos, &playbackDeviceCount, NULL, NULL); +if (result != MA_SUCCESS) { +// Error +} + +// ... choose a device from pPlaybackDeviceInfos ... + +ma_device_config config = ma_device_config_init(ma_device_type_playback); +config.playback.pDeviceID = pMyChosenDeviceID; // <-- Get this from the `id` member of one of the `ma_device_info` objects returned by ma_context_get_devices(). +config.playback.format = ma_format_f32; +config.playback.channels = 2; +config.sampleRate = 48000; +config.dataCallback = ma_data_callback; +config.pUserData = pMyUserData; +config.periodSizeInMilliseconds = 10; +config.periods = 3; + +ma_device device; +result = ma_device_init(&context, &config, &device); +if (result != MA_SUCCESS) { +// Error +} +``` + + +See Also +-------- +ma_device_config_init() +ma_device_uninit() +ma_device_start() +ma_context_init() +ma_context_get_devices() +ma_context_enumerate_devices() +*/ +ma_device_init :: (pContext: *ma_context, pConfig: *ma_device_config, pDevice: *ma_device) -> ma_result #foreign miniaudio; + +/* +Initializes a device without a context, with extra parameters for controlling the configuration of the internal self-managed context. + +This is the same as `ma_device_init()`, only instead of a context being passed in, the parameters from `ma_context_init()` are passed in instead. This function +allows you to configure the internally created context. + + +Parameters +---------- +backends (in, optional) +A list of backends to try initializing, in priority order. Can be NULL, in which case it uses default priority order. + +backendCount (in, optional) +The number of items in `backend`. Ignored if `backend` is NULL. + +pContextConfig (in, optional) +The context configuration. + +pConfig (in) +A pointer to the device configuration. Cannot be null. See remarks for details. + +pDevice (out) +A pointer to the device object being initialized. + + +Return Value +------------ +MA_SUCCESS if successful; any other error code otherwise. + + +Thread Safety +------------- +Unsafe. It is not safe to call this function simultaneously for different devices because some backends depend on and mutate global state. The same applies to +calling this at the same time as `ma_device_uninit()`. + + +Callback Safety +--------------- +Unsafe. It is not safe to call this inside any callback. + + +Remarks +------- +You only need to use this function if you want to configure the context differently to it's defaults. You should never use this function if you want to manage +your own context. + +See the documentation for `ma_context_init()` for information on the different context configuration options. + + +See Also +-------- +ma_device_init() +ma_device_uninit() +ma_device_config_init() +ma_context_init() +*/ +ma_device_init_ex :: (backends: *ma_backend, backendCount: ma_uint32, pContextConfig: *ma_context_config, pConfig: *ma_device_config, pDevice: *ma_device) -> ma_result #foreign miniaudio; + +/* +Uninitializes a device. + +This will explicitly stop the device. You do not need to call `ma_device_stop()` beforehand, but it's harmless if you do. + + +Parameters +---------- +pDevice (in) +A pointer to the device to stop. + + +Return Value +------------ +Nothing + + +Thread Safety +------------- +Unsafe. As soon as this API is called the device should be considered undefined. + + +Callback Safety +--------------- +Unsafe. It is not safe to call this inside any callback. Doing this will result in a deadlock. + + +See Also +-------- +ma_device_init() +ma_device_stop() +*/ +ma_device_uninit :: (pDevice: *ma_device) -> void #foreign miniaudio; + +/* +Retrieves a pointer to the context that owns the given device. +*/ +ma_device_get_context :: (pDevice: *ma_device) -> *ma_context #foreign miniaudio; + +/* +Helper function for retrieving the log object associated with the context that owns this device. +*/ +ma_device_get_log :: (pDevice: *ma_device) -> *ma_log #foreign miniaudio; + +/* +Retrieves information about the device. + + +Parameters +---------- +pDevice (in) +A pointer to the device whose information is being retrieved. + +type (in) +The device type. This parameter is required for duplex devices. When retrieving device +information, you are doing so for an individual playback or capture device. + +pDeviceInfo (out) +A pointer to the `ma_device_info` that will receive the device information. + + +Return Value +------------ +MA_SUCCESS if successful; any other error code otherwise. + + +Thread Safety +------------- +Unsafe. This should be considered unsafe because it may be calling into the backend which may or +may not be safe. + + +Callback Safety +--------------- +Unsafe. You should avoid calling this in the data callback because it may call into the backend +which may or may not be safe. +*/ +ma_device_get_info :: (pDevice: *ma_device, type: ma_device_type, pDeviceInfo: *ma_device_info) -> ma_result #foreign miniaudio; + +/* +Retrieves the name of the device. + + +Parameters +---------- +pDevice (in) +A pointer to the device whose information is being retrieved. + +type (in) +The device type. This parameter is required for duplex devices. When retrieving device +information, you are doing so for an individual playback or capture device. + +pName (out) +A pointer to the buffer that will receive the name. + +nameCap (in) +The capacity of the output buffer, including space for the null terminator. + +pLengthNotIncludingNullTerminator (out, optional) +A pointer to the variable that will receive the length of the name, not including the null +terminator. + + +Return Value +------------ +MA_SUCCESS if successful; any other error code otherwise. + + +Thread Safety +------------- +Unsafe. This should be considered unsafe because it may be calling into the backend which may or +may not be safe. + + +Callback Safety +--------------- +Unsafe. You should avoid calling this in the data callback because it may call into the backend +which may or may not be safe. + + +Remarks +------- +If the name does not fully fit into the output buffer, it'll be truncated. You can pass in NULL to +`pName` if you want to first get the length of the name for the purpose of memory allocation of the +output buffer. Allocating a buffer of size `MA_MAX_DEVICE_NAME_LENGTH + 1` should be enough for +most cases and will avoid the need for the inefficiency of calling this function twice. + +This is implemented in terms of `ma_device_get_info()`. +*/ +ma_device_get_name :: (pDevice: *ma_device, type: ma_device_type, pName: *u8, nameCap: size_t, pLengthNotIncludingNullTerminator: *size_t) -> ma_result #foreign miniaudio; + +/* +Starts the device. For playback devices this begins playback. For capture devices it begins recording. + +Use `ma_device_stop()` to stop the device. + + +Parameters +---------- +pDevice (in) +A pointer to the device to start. + + +Return Value +------------ +MA_SUCCESS if successful; any other error code otherwise. + + +Thread Safety +------------- +Safe. It's safe to call this from any thread with the exception of the callback thread. + + +Callback Safety +--------------- +Unsafe. It is not safe to call this inside any callback. + + +Remarks +------- +For a playback device, this will retrieve an initial chunk of audio data from the client before returning. The reason for this is to ensure there is valid +audio data in the buffer, which needs to be done before the device begins playback. + +This API waits until the backend device has been started for real by the worker thread. It also waits on a mutex for thread-safety. + +Do not call this in any callback. + + +See Also +-------- +ma_device_stop() +*/ +ma_device_start :: (pDevice: *ma_device) -> ma_result #foreign miniaudio; + +/* +Stops the device. For playback devices this stops playback. For capture devices it stops recording. + +Use `ma_device_start()` to start the device again. + + +Parameters +---------- +pDevice (in) +A pointer to the device to stop. + + +Return Value +------------ +MA_SUCCESS if successful; any other error code otherwise. + + +Thread Safety +------------- +Safe. It's safe to call this from any thread with the exception of the callback thread. + + +Callback Safety +--------------- +Unsafe. It is not safe to call this inside any callback. Doing this will result in a deadlock. + + +Remarks +------- +This API needs to wait on the worker thread to stop the backend device properly before returning. It also waits on a mutex for thread-safety. In addition, some +backends need to wait for the device to finish playback/recording of the current fragment which can take some time (usually proportionate to the buffer size +that was specified at initialization time). + +Backends are required to either pause the stream in-place or drain the buffer if pausing is not possible. The reason for this is that stopping the device and +the resuming it with ma_device_start() (which you might do when your program loses focus) may result in a situation where those samples are never output to the +speakers or received from the microphone which can in turn result in de-syncs. + +Do not call this in any callback. + +This will be called implicitly by `ma_device_uninit()`. + + +See Also +-------- +ma_device_start() +*/ +ma_device_stop :: (pDevice: *ma_device) -> ma_result #foreign miniaudio; + +/* +Determines whether or not the device is started. + + +Parameters +---------- +pDevice (in) +A pointer to the device whose start state is being retrieved. + + +Return Value +------------ +True if the device is started, false otherwise. + + +Thread Safety +------------- +Safe. If another thread calls `ma_device_start()` or `ma_device_stop()` at this same time as this function is called, there's a very small chance the return +value will be out of sync. + + +Callback Safety +--------------- +Safe. This is implemented as a simple accessor. + + +See Also +-------- +ma_device_start() +ma_device_stop() +*/ +ma_device_is_started :: (pDevice: *ma_device) -> ma_bool32 #foreign miniaudio; + +/* +Retrieves the state of the device. + + +Parameters +---------- +pDevice (in) +A pointer to the device whose state is being retrieved. + + +Return Value +------------ +The current state of the device. The return value will be one of the following: + ++-------------------------------+------------------------------------------------------------------------------+ +| ma_device_state_uninitialized | Will only be returned if the device is in the middle of initialization. | ++-------------------------------+------------------------------------------------------------------------------+ +| ma_device_state_stopped | The device is stopped. The initial state of the device after initialization. | ++-------------------------------+------------------------------------------------------------------------------+ +| ma_device_state_started | The device started and requesting and/or delivering audio data. | ++-------------------------------+------------------------------------------------------------------------------+ +| ma_device_state_starting | The device is in the process of starting. | ++-------------------------------+------------------------------------------------------------------------------+ +| ma_device_state_stopping | The device is in the process of stopping. | ++-------------------------------+------------------------------------------------------------------------------+ + + +Thread Safety +------------- +Safe. This is implemented as a simple accessor. Note that if the device is started or stopped at the same time as this function is called, +there's a possibility the return value could be out of sync. See remarks. + + +Callback Safety +--------------- +Safe. This is implemented as a simple accessor. + + +Remarks +------- +The general flow of a devices state goes like this: + +``` +ma_device_init() -> ma_device_state_uninitialized -> ma_device_state_stopped +ma_device_start() -> ma_device_state_starting -> ma_device_state_started +ma_device_stop() -> ma_device_state_stopping -> ma_device_state_stopped +``` + +When the state of the device is changed with `ma_device_start()` or `ma_device_stop()` at this same time as this function is called, the +value returned by this function could potentially be out of sync. If this is significant to your program you need to implement your own +synchronization. +*/ +ma_device_get_state :: (pDevice: *ma_device) -> ma_device_state #foreign miniaudio; + +/* +Performs post backend initialization routines for setting up internal data conversion. + +This should be called whenever the backend is initialized. The only time this should be called from +outside of miniaudio is if you're implementing a custom backend, and you would only do it if you +are reinitializing the backend due to rerouting or reinitializing for some reason. + + +Parameters +---------- +pDevice [in] +A pointer to the device. + +deviceType [in] +The type of the device that was just reinitialized. + +pPlaybackDescriptor [in] +The descriptor of the playback device containing the internal data format and buffer sizes. + +pPlaybackDescriptor [in] +The descriptor of the capture device containing the internal data format and buffer sizes. + + +Return Value +------------ +MA_SUCCESS if successful; any other error otherwise. + + +Thread Safety +------------- +Unsafe. This will be reinitializing internal data converters which may be in use by another thread. + + +Callback Safety +--------------- +Unsafe. This will be reinitializing internal data converters which may be in use by the callback. + + +Remarks +------- +For a duplex device, you can call this for only one side of the system. This is why the deviceType +is specified as a parameter rather than deriving it from the device. + +You do not need to call this manually unless you are doing a custom backend, in which case you need +only do it if you're manually performing rerouting or reinitialization. +*/ +ma_device_post_init :: (pDevice: *ma_device, deviceType: ma_device_type, pPlaybackDescriptor: *ma_device_descriptor, pCaptureDescriptor: *ma_device_descriptor) -> ma_result #foreign miniaudio; + +/* +Sets the master volume factor for the device. + +The volume factor must be between 0 (silence) and 1 (full volume). Use `ma_device_set_master_volume_db()` to use decibel notation, where 0 is full volume and +values less than 0 decreases the volume. + + +Parameters +---------- +pDevice (in) +A pointer to the device whose volume is being set. + +volume (in) +The new volume factor. Must be >= 0. + + +Return Value +------------ +MA_SUCCESS if the volume was set successfully. +MA_INVALID_ARGS if pDevice is NULL. +MA_INVALID_ARGS if volume is negative. + + +Thread Safety +------------- +Safe. This just sets a local member of the device object. + + +Callback Safety +--------------- +Safe. If you set the volume in the data callback, that data written to the output buffer will have the new volume applied. + + +Remarks +------- +This applies the volume factor across all channels. + +This does not change the operating system's volume. It only affects the volume for the given `ma_device` object's audio stream. + + +See Also +-------- +ma_device_get_master_volume() +ma_device_set_master_volume_db() +ma_device_get_master_volume_db() +*/ +ma_device_set_master_volume :: (pDevice: *ma_device, volume: float) -> ma_result #foreign miniaudio; + +/* +Retrieves the master volume factor for the device. + + +Parameters +---------- +pDevice (in) +A pointer to the device whose volume factor is being retrieved. + +pVolume (in) +A pointer to the variable that will receive the volume factor. The returned value will be in the range of [0, 1]. + + +Return Value +------------ +MA_SUCCESS if successful. +MA_INVALID_ARGS if pDevice is NULL. +MA_INVALID_ARGS if pVolume is NULL. + + +Thread Safety +------------- +Safe. This just a simple member retrieval. + + +Callback Safety +--------------- +Safe. + + +Remarks +------- +If an error occurs, `*pVolume` will be set to 0. + + +See Also +-------- +ma_device_set_master_volume() +ma_device_set_master_volume_gain_db() +ma_device_get_master_volume_gain_db() +*/ +ma_device_get_master_volume :: (pDevice: *ma_device, pVolume: *float) -> ma_result #foreign miniaudio; + +/* +Sets the master volume for the device as gain in decibels. + +A gain of 0 is full volume, whereas a gain of < 0 will decrease the volume. + + +Parameters +---------- +pDevice (in) +A pointer to the device whose gain is being set. + +gainDB (in) +The new volume as gain in decibels. Must be less than or equal to 0, where 0 is full volume and anything less than 0 decreases the volume. + + +Return Value +------------ +MA_SUCCESS if the volume was set successfully. +MA_INVALID_ARGS if pDevice is NULL. +MA_INVALID_ARGS if the gain is > 0. + + +Thread Safety +------------- +Safe. This just sets a local member of the device object. + + +Callback Safety +--------------- +Safe. If you set the volume in the data callback, that data written to the output buffer will have the new volume applied. + + +Remarks +------- +This applies the gain across all channels. + +This does not change the operating system's volume. It only affects the volume for the given `ma_device` object's audio stream. + + +See Also +-------- +ma_device_get_master_volume_gain_db() +ma_device_set_master_volume() +ma_device_get_master_volume() +*/ +ma_device_set_master_volume_db :: (pDevice: *ma_device, gainDB: float) -> ma_result #foreign miniaudio; + +/* +Retrieves the master gain in decibels. + + +Parameters +---------- +pDevice (in) +A pointer to the device whose gain is being retrieved. + +pGainDB (in) +A pointer to the variable that will receive the gain in decibels. The returned value will be <= 0. + + +Return Value +------------ +MA_SUCCESS if successful. +MA_INVALID_ARGS if pDevice is NULL. +MA_INVALID_ARGS if pGainDB is NULL. + + +Thread Safety +------------- +Safe. This just a simple member retrieval. + + +Callback Safety +--------------- +Safe. + + +Remarks +------- +If an error occurs, `*pGainDB` will be set to 0. + + +See Also +-------- +ma_device_set_master_volume_db() +ma_device_set_master_volume() +ma_device_get_master_volume() +*/ +ma_device_get_master_volume_db :: (pDevice: *ma_device, pGainDB: *float) -> ma_result #foreign miniaudio; + +/* +Called from the data callback of asynchronous backends to allow miniaudio to process the data and fire the miniaudio data callback. + + +Parameters +---------- +pDevice (in) +A pointer to device whose processing the data callback. + +pOutput (out) +A pointer to the buffer that will receive the output PCM frame data. On a playback device this must not be NULL. On a duplex device +this can be NULL, in which case pInput must not be NULL. + +pInput (in) +A pointer to the buffer containing input PCM frame data. On a capture device this must not be NULL. On a duplex device this can be +NULL, in which case `pOutput` must not be NULL. + +frameCount (in) +The number of frames being processed. + + +Return Value +------------ +MA_SUCCESS if successful; any other result code otherwise. + + +Thread Safety +------------- +This function should only ever be called from the internal data callback of the backend. It is safe to call this simultaneously between a +playback and capture device in duplex setups. + + +Callback Safety +--------------- +Do not call this from the miniaudio data callback. It should only ever be called from the internal data callback of the backend. + + +Remarks +------- +If both `pOutput` and `pInput` are NULL, and error will be returned. In duplex scenarios, both `pOutput` and `pInput` can be non-NULL, in +which case `pInput` will be processed first, followed by `pOutput`. + +If you are implementing a custom backend, and that backend uses a callback for data delivery, you'll need to call this from inside that +callback. +*/ +ma_device_handle_backend_data_callback :: (pDevice: *ma_device, pOutput: *void, pInput: *void, frameCount: ma_uint32) -> ma_result #foreign miniaudio; + +/* +Calculates an appropriate buffer size from a descriptor, native sample rate and performance profile. + +This function is used by backends for helping determine an appropriately sized buffer to use with +the device depending on the values of `periodSizeInFrames` and `periodSizeInMilliseconds` in the +`pDescriptor` object. Since buffer size calculations based on time depends on the sample rate, a +best guess at the device's native sample rate is also required which is where `nativeSampleRate` +comes in. In addition, the performance profile is also needed for cases where both the period size +in frames and milliseconds are both zero. + + +Parameters +---------- +pDescriptor (in) +A pointer to device descriptor whose `periodSizeInFrames` and `periodSizeInMilliseconds` members +will be used for the calculation of the buffer size. + +nativeSampleRate (in) +The device's native sample rate. This is only ever used when the `periodSizeInFrames` member of +`pDescriptor` is zero. In this case, `periodSizeInMilliseconds` will be used instead, in which +case a sample rate is required to convert to a size in frames. + +performanceProfile (in) +When both the `periodSizeInFrames` and `periodSizeInMilliseconds` members of `pDescriptor` are +zero, miniaudio will fall back to a buffer size based on the performance profile. The profile +to use for this calculation is determine by this parameter. + + +Return Value +------------ +The calculated buffer size in frames. + + +Thread Safety +------------- +This is safe so long as nothing modifies `pDescriptor` at the same time. However, this function +should only ever be called from within the backend's device initialization routine and therefore +shouldn't have any multithreading concerns. + + +Callback Safety +--------------- +This is safe to call within the data callback, but there is no reason to ever do this. + + +Remarks +------- +If `nativeSampleRate` is zero, this function will fall back to `pDescriptor->sampleRate`. If that +is also zero, `MA_DEFAULT_SAMPLE_RATE` will be used instead. +*/ +ma_calculate_buffer_size_in_frames_from_descriptor :: (pDescriptor: *ma_device_descriptor, nativeSampleRate: ma_uint32, performanceProfile: ma_performance_profile) -> ma_uint32 #foreign miniaudio; + +/* +Retrieves a friendly name for a backend. +*/ +ma_get_backend_name :: (backend: ma_backend) -> *u8 #foreign miniaudio; + +/* +Retrieves the backend enum from the given name. +*/ +ma_get_backend_from_name :: (pBackendName: *u8, pBackend: *ma_backend) -> ma_result #foreign miniaudio; + +/* +Determines whether or not the given backend is available by the compilation environment. +*/ +ma_is_backend_enabled :: (backend: ma_backend) -> ma_bool32 #foreign miniaudio; + +/* +Retrieves compile-time enabled backends. + + +Parameters +---------- +pBackends (out, optional) +A pointer to the buffer that will receive the enabled backends. Set to NULL to retrieve the backend count. Setting +the capacity of the buffer to `MA_BUFFER_COUNT` will guarantee it's large enough for all backends. + +backendCap (in) +The capacity of the `pBackends` buffer. + +pBackendCount (out) +A pointer to the variable that will receive the enabled backend count. + + +Return Value +------------ +MA_SUCCESS if successful. +MA_INVALID_ARGS if `pBackendCount` is NULL. +MA_NO_SPACE if the capacity of `pBackends` is not large enough. + +If `MA_NO_SPACE` is returned, the `pBackends` buffer will be filled with `*pBackendCount` values. + + +Thread Safety +------------- +Safe. + + +Callback Safety +--------------- +Safe. + + +Remarks +------- +If you want to retrieve the number of backends so you can determine the capacity of `pBackends` buffer, you can call +this function with `pBackends` set to NULL. + +This will also enumerate the null backend. If you don't want to include this you need to check for `ma_backend_null` +when you enumerate over the returned backends and handle it appropriately. Alternatively, you can disable it at +compile time with `MA_NO_NULL`. + +The returned backends are determined based on compile time settings, not the platform it's currently running on. For +example, PulseAudio will be returned if it was enabled at compile time, even when the user doesn't actually have +PulseAudio installed. + + +Example 1 +--------- +The example below retrieves the enabled backend count using a fixed sized buffer allocated on the stack. The buffer is +given a capacity of `MA_BACKEND_COUNT` which will guarantee it'll be large enough to store all available backends. +Since `MA_BACKEND_COUNT` is always a relatively small value, this should be suitable for most scenarios. + +``` +ma_backend enabledBackends[MA_BACKEND_COUNT]; +size_t enabledBackendCount; + +result = ma_get_enabled_backends(enabledBackends, MA_BACKEND_COUNT, &enabledBackendCount); +if (result != MA_SUCCESS) { +// Failed to retrieve enabled backends. Should never happen in this example since all inputs are valid. +} +``` + + +See Also +-------- +ma_is_backend_enabled() +*/ +ma_get_enabled_backends :: (pBackends: *ma_backend, backendCap: size_t, pBackendCount: *size_t) -> ma_result #foreign miniaudio; + +/* +Determines whether or not loopback mode is support by a backend. +*/ +ma_is_loopback_supported :: (backend: ma_backend) -> ma_bool32 #foreign miniaudio; + +/* +Calculates a buffer size in milliseconds from the specified number of frames and sample rate. +*/ +ma_calculate_buffer_size_in_milliseconds_from_frames :: (bufferSizeInFrames: ma_uint32, sampleRate: ma_uint32) -> ma_uint32 #foreign miniaudio; + +/* +Calculates a buffer size in frames from the specified number of milliseconds and sample rate. +*/ +ma_calculate_buffer_size_in_frames_from_milliseconds :: (bufferSizeInMilliseconds: ma_uint32, sampleRate: ma_uint32) -> ma_uint32 #foreign miniaudio; + +/* +Copies PCM frames from one buffer to another. +*/ +ma_copy_pcm_frames :: (dst: *void, src: *void, frameCount: ma_uint64, format: ma_format, channels: ma_uint32) -> void #foreign miniaudio; + +/* +Copies silent frames into the given buffer. + +Remarks +------- +For all formats except `ma_format_u8`, the output buffer will be filled with 0. For `ma_format_u8` it will be filled with 128. The reason for this is that it +makes more sense for the purpose of mixing to initialize it to the center point. +*/ +ma_silence_pcm_frames :: (p: *void, frameCount: ma_uint64, format: ma_format, channels: ma_uint32) -> void #foreign miniaudio; + +/* +Offsets a pointer by the specified number of PCM frames. +*/ +ma_offset_pcm_frames_ptr :: (p: *void, offsetInFrames: ma_uint64, format: ma_format, channels: ma_uint32) -> *void #foreign miniaudio; +ma_offset_pcm_frames_const_ptr :: (p: *void, offsetInFrames: ma_uint64, format: ma_format, channels: ma_uint32) -> *void #foreign miniaudio; + +/* +Clips samples. +*/ +ma_clip_samples_u8 :: (pDst: *ma_uint8, pSrc: *ma_int16, count: ma_uint64) -> void #foreign miniaudio; +ma_clip_samples_s16 :: (pDst: *ma_int16, pSrc: *ma_int32, count: ma_uint64) -> void #foreign miniaudio; +ma_clip_samples_s24 :: (pDst: *ma_uint8, pSrc: *ma_int64, count: ma_uint64) -> void #foreign miniaudio; +ma_clip_samples_s32 :: (pDst: *ma_int32, pSrc: *ma_int64, count: ma_uint64) -> void #foreign miniaudio; +ma_clip_samples_f32 :: (pDst: *float, pSrc: *float, count: ma_uint64) -> void #foreign miniaudio; +ma_clip_pcm_frames :: (pDst: *void, pSrc: *void, frameCount: ma_uint64, format: ma_format, channels: ma_uint32) -> void #foreign miniaudio; + +/* +Helper for applying a volume factor to samples. + +Note that the source and destination buffers can be the same, in which case it'll perform the operation in-place. +*/ +ma_copy_and_apply_volume_factor_u8 :: (pSamplesOut: *ma_uint8, pSamplesIn: *ma_uint8, sampleCount: ma_uint64, factor: float) -> void #foreign miniaudio; +ma_copy_and_apply_volume_factor_s16 :: (pSamplesOut: *ma_int16, pSamplesIn: *ma_int16, sampleCount: ma_uint64, factor: float) -> void #foreign miniaudio; +ma_copy_and_apply_volume_factor_s24 :: (pSamplesOut: *void, pSamplesIn: *void, sampleCount: ma_uint64, factor: float) -> void #foreign miniaudio; +ma_copy_and_apply_volume_factor_s32 :: (pSamplesOut: *ma_int32, pSamplesIn: *ma_int32, sampleCount: ma_uint64, factor: float) -> void #foreign miniaudio; +ma_copy_and_apply_volume_factor_f32 :: (pSamplesOut: *float, pSamplesIn: *float, sampleCount: ma_uint64, factor: float) -> void #foreign miniaudio; + +ma_apply_volume_factor_u8 :: (pSamples: *ma_uint8, sampleCount: ma_uint64, factor: float) -> void #foreign miniaudio; +ma_apply_volume_factor_s16 :: (pSamples: *ma_int16, sampleCount: ma_uint64, factor: float) -> void #foreign miniaudio; +ma_apply_volume_factor_s24 :: (pSamples: *void, sampleCount: ma_uint64, factor: float) -> void #foreign miniaudio; +ma_apply_volume_factor_s32 :: (pSamples: *ma_int32, sampleCount: ma_uint64, factor: float) -> void #foreign miniaudio; +ma_apply_volume_factor_f32 :: (pSamples: *float, sampleCount: ma_uint64, factor: float) -> void #foreign miniaudio; + +ma_copy_and_apply_volume_factor_pcm_frames_u8 :: (pFramesOut: *ma_uint8, pFramesIn: *ma_uint8, frameCount: ma_uint64, channels: ma_uint32, factor: float) -> void #foreign miniaudio; +ma_copy_and_apply_volume_factor_pcm_frames_s16 :: (pFramesOut: *ma_int16, pFramesIn: *ma_int16, frameCount: ma_uint64, channels: ma_uint32, factor: float) -> void #foreign miniaudio; +ma_copy_and_apply_volume_factor_pcm_frames_s24 :: (pFramesOut: *void, pFramesIn: *void, frameCount: ma_uint64, channels: ma_uint32, factor: float) -> void #foreign miniaudio; +ma_copy_and_apply_volume_factor_pcm_frames_s32 :: (pFramesOut: *ma_int32, pFramesIn: *ma_int32, frameCount: ma_uint64, channels: ma_uint32, factor: float) -> void #foreign miniaudio; +ma_copy_and_apply_volume_factor_pcm_frames_f32 :: (pFramesOut: *float, pFramesIn: *float, frameCount: ma_uint64, channels: ma_uint32, factor: float) -> void #foreign miniaudio; +ma_copy_and_apply_volume_factor_pcm_frames :: (pFramesOut: *void, pFramesIn: *void, frameCount: ma_uint64, format: ma_format, channels: ma_uint32, factor: float) -> void #foreign miniaudio; + +ma_apply_volume_factor_pcm_frames_u8 :: (pFrames: *ma_uint8, frameCount: ma_uint64, channels: ma_uint32, factor: float) -> void #foreign miniaudio; +ma_apply_volume_factor_pcm_frames_s16 :: (pFrames: *ma_int16, frameCount: ma_uint64, channels: ma_uint32, factor: float) -> void #foreign miniaudio; +ma_apply_volume_factor_pcm_frames_s24 :: (pFrames: *void, frameCount: ma_uint64, channels: ma_uint32, factor: float) -> void #foreign miniaudio; +ma_apply_volume_factor_pcm_frames_s32 :: (pFrames: *ma_int32, frameCount: ma_uint64, channels: ma_uint32, factor: float) -> void #foreign miniaudio; +ma_apply_volume_factor_pcm_frames_f32 :: (pFrames: *float, frameCount: ma_uint64, channels: ma_uint32, factor: float) -> void #foreign miniaudio; +ma_apply_volume_factor_pcm_frames :: (pFrames: *void, frameCount: ma_uint64, format: ma_format, channels: ma_uint32, factor: float) -> void #foreign miniaudio; + +ma_copy_and_apply_volume_factor_per_channel_f32 :: (pFramesOut: *float, pFramesIn: *float, frameCount: ma_uint64, channels: ma_uint32, pChannelGains: *float) -> void #foreign miniaudio; + +ma_copy_and_apply_volume_and_clip_samples_u8 :: (pDst: *ma_uint8, pSrc: *ma_int16, count: ma_uint64, volume: float) -> void #foreign miniaudio; +ma_copy_and_apply_volume_and_clip_samples_s16 :: (pDst: *ma_int16, pSrc: *ma_int32, count: ma_uint64, volume: float) -> void #foreign miniaudio; +ma_copy_and_apply_volume_and_clip_samples_s24 :: (pDst: *ma_uint8, pSrc: *ma_int64, count: ma_uint64, volume: float) -> void #foreign miniaudio; +ma_copy_and_apply_volume_and_clip_samples_s32 :: (pDst: *ma_int32, pSrc: *ma_int64, count: ma_uint64, volume: float) -> void #foreign miniaudio; +ma_copy_and_apply_volume_and_clip_samples_f32 :: (pDst: *float, pSrc: *float, count: ma_uint64, volume: float) -> void #foreign miniaudio; +ma_copy_and_apply_volume_and_clip_pcm_frames :: (pDst: *void, pSrc: *void, frameCount: ma_uint64, format: ma_format, channels: ma_uint32, volume: float) -> void #foreign miniaudio; + +/* +Helper for converting a linear factor to gain in decibels. +*/ +ma_volume_linear_to_db :: (factor: float) -> float #foreign miniaudio; + +/* +Helper for converting gain in decibels to a linear factor. +*/ +ma_volume_db_to_linear :: (gain: float) -> float #foreign miniaudio; + +/* +Mixes the specified number of frames in floating point format with a volume factor. + +This will run on an optimized path when the volume is equal to 1. +*/ +ma_mix_pcm_frames_f32 :: (pDst: *float, pSrc: *float, frameCount: ma_uint64, channels: ma_uint32, volume: float) -> ma_result #foreign miniaudio; + +/************************************************************************************************************************************************************ + +VFS +=== + +The VFS object (virtual file system) is what's used to customize file access. This is useful in cases where stdio FILE* based APIs may not be entirely +appropriate for a given situation. + +************************************************************************************************************************************************************/ +ma_vfs :: void; +ma_vfs_file :: ma_handle; + +ma_open_mode_flags :: enum s32 { + MA_OPEN_MODE_READ :: 1; + MA_OPEN_MODE_WRITE :: 2; +} + +ma_seek_origin :: enum s32 { + ma_seek_origin_start :: 0; + ma_seek_origin_current :: 1; + ma_seek_origin_end :: 2; +} + +ma_file_info :: struct { + sizeInBytes: ma_uint64; +} + +ma_vfs_callbacks :: struct { + onOpen: #type (pVFS: *ma_vfs, pFilePath: *u8, openMode: ma_uint32, pFile: *ma_vfs_file) -> ma_result #c_call; + onOpenW: #type (pVFS: *ma_vfs, pFilePath: *s16, openMode: ma_uint32, pFile: *ma_vfs_file) -> ma_result #c_call; + onClose: #type (pVFS: *ma_vfs, file: ma_vfs_file) -> ma_result #c_call; + onRead: #type (pVFS: *ma_vfs, file: ma_vfs_file, pDst: *void, sizeInBytes: size_t, pBytesRead: *size_t) -> ma_result #c_call; + onWrite: #type (pVFS: *ma_vfs, file: ma_vfs_file, pSrc: *void, sizeInBytes: size_t, pBytesWritten: *size_t) -> ma_result #c_call; + onSeek: #type (pVFS: *ma_vfs, file: ma_vfs_file, offset: ma_int64, origin: ma_seek_origin) -> ma_result #c_call; + onTell: #type (pVFS: *ma_vfs, file: ma_vfs_file, pCursor: *ma_int64) -> ma_result #c_call; + onInfo: #type (pVFS: *ma_vfs, file: ma_vfs_file, pInfo: *ma_file_info) -> ma_result #c_call; +} + +ma_vfs_open :: (pVFS: *ma_vfs, pFilePath: *u8, openMode: ma_uint32, pFile: *ma_vfs_file) -> ma_result #foreign miniaudio; +ma_vfs_open_w :: (pVFS: *ma_vfs, pFilePath: *s16, openMode: ma_uint32, pFile: *ma_vfs_file) -> ma_result #foreign miniaudio; +ma_vfs_close :: (pVFS: *ma_vfs, file: ma_vfs_file) -> ma_result #foreign miniaudio; +ma_vfs_read :: (pVFS: *ma_vfs, file: ma_vfs_file, pDst: *void, sizeInBytes: size_t, pBytesRead: *size_t) -> ma_result #foreign miniaudio; +ma_vfs_write :: (pVFS: *ma_vfs, file: ma_vfs_file, pSrc: *void, sizeInBytes: size_t, pBytesWritten: *size_t) -> ma_result #foreign miniaudio; +ma_vfs_seek :: (pVFS: *ma_vfs, file: ma_vfs_file, offset: ma_int64, origin: ma_seek_origin) -> ma_result #foreign miniaudio; +ma_vfs_tell :: (pVFS: *ma_vfs, file: ma_vfs_file, pCursor: *ma_int64) -> ma_result #foreign miniaudio; +ma_vfs_info :: (pVFS: *ma_vfs, file: ma_vfs_file, pInfo: *ma_file_info) -> ma_result #foreign miniaudio; +ma_vfs_open_and_read_file :: (pVFS: *ma_vfs, pFilePath: *u8, ppData: **void, pSize: *size_t, pAllocationCallbacks: *ma_allocation_callbacks) -> ma_result #foreign miniaudio; + +ma_default_vfs :: struct { + cb: ma_vfs_callbacks; + allocationCallbacks: ma_allocation_callbacks; /* Only used for the wchar_t version of open() on non-Windows platforms. */ +} + +ma_default_vfs_init :: (pVFS: *ma_default_vfs, pAllocationCallbacks: *ma_allocation_callbacks) -> ma_result #foreign miniaudio; + +ma_read_proc :: #type (pUserData: *void, pBufferOut: *void, bytesToRead: size_t, pBytesRead: *size_t) -> ma_result #c_call; +ma_seek_proc :: #type (pUserData: *void, offset: ma_int64, origin: ma_seek_origin) -> ma_result #c_call; +ma_tell_proc :: #type (pUserData: *void, pCursor: *ma_int64) -> ma_result #c_call; + +ma_encoding_format :: enum s32 { + ma_encoding_format_unknown :: 0; + ma_encoding_format_wav :: 1; + ma_encoding_format_flac :: 2; + ma_encoding_format_mp3 :: 3; + ma_encoding_format_vorbis :: 4; +} + +ma_decoding_backend_config :: struct { + preferredFormat: ma_format; + seekPointCount: ma_uint32; /* Set to > 0 to generate a seektable if the decoding backend supports it. */ +} + +ma_decoding_backend_config_init :: (preferredFormat: ma_format, seekPointCount: ma_uint32) -> ma_decoding_backend_config #foreign miniaudio; + +ma_decoding_backend_vtable :: struct { + onInit: #type (pUserData: *void, onRead: ma_read_proc, onSeek: ma_seek_proc, onTell: ma_tell_proc, pReadSeekTellUserData: *void, pConfig: *ma_decoding_backend_config, pAllocationCallbacks: *ma_allocation_callbacks, ppBackend: **ma_data_source) -> ma_result #c_call; + onInitFile: #type (pUserData: *void, pFilePath: *u8, pConfig: *ma_decoding_backend_config, pAllocationCallbacks: *ma_allocation_callbacks, ppBackend: **ma_data_source) -> ma_result #c_call; /* Optional. */ + onInitFileW: #type (pUserData: *void, pFilePath: *s16, pConfig: *ma_decoding_backend_config, pAllocationCallbacks: *ma_allocation_callbacks, ppBackend: **ma_data_source) -> ma_result #c_call; /* Optional. */ + onInitMemory: #type (pUserData: *void, pData: *void, dataSize: size_t, pConfig: *ma_decoding_backend_config, pAllocationCallbacks: *ma_allocation_callbacks, ppBackend: **ma_data_source) -> ma_result #c_call; /* Optional. */ + onUninit: #type (pUserData: *void, pBackend: *ma_data_source, pAllocationCallbacks: *ma_allocation_callbacks) -> void #c_call; +} + +ma_decoder_read_proc :: #type (pDecoder: *ma_decoder, pBufferOut: *void, bytesToRead: size_t, pBytesRead: *size_t) -> ma_result #c_call; +ma_decoder_seek_proc :: #type (pDecoder: *ma_decoder, byteOffset: ma_int64, origin: ma_seek_origin) -> ma_result #c_call; +ma_decoder_tell_proc :: #type (pDecoder: *ma_decoder, pCursor: *ma_int64) -> ma_result #c_call; + +ma_decoder_config :: struct { + format: ma_format; /* Set to 0 or ma_format_unknown to use the stream's internal format. */ + channels: ma_uint32; /* Set to 0 to use the stream's internal channels. */ + sampleRate: ma_uint32; /* Set to 0 to use the stream's internal sample rate. */ + pChannelMap: *ma_channel; + channelMixMode: ma_channel_mix_mode; + ditherMode: ma_dither_mode; + resampling: ma_resampler_config; + allocationCallbacks: ma_allocation_callbacks; + encodingFormat: ma_encoding_format; + seekPointCount: ma_uint32; /* When set to > 0, specifies the number of seek points to use for the generation of a seek table. Not all decoding backends support this. */ + ppCustomBackendVTables: **ma_decoding_backend_vtable; + customBackendCount: ma_uint32; + pCustomBackendUserData: *void; +} + +ma_decoder :: struct { + ds: ma_data_source_base; + pBackend: *ma_data_source; /* The decoding backend we'll be pulling data from. */ + pBackendVTable: *ma_decoding_backend_vtable; /* The vtable for the decoding backend. This needs to be stored so we can access the onUninit() callback. */ + pBackendUserData: *void; + onRead: ma_decoder_read_proc; + onSeek: ma_decoder_seek_proc; + onTell: ma_decoder_tell_proc; + pUserData: *void; + readPointerInPCMFrames: ma_uint64; /* In output sample rate. Used for keeping track of how many frames are available for decoding. */ + outputFormat: ma_format; + outputChannels: ma_uint32; + outputSampleRate: ma_uint32; + converter: ma_data_converter; /* Data conversion is achieved by running frames through this. */ + pInputCache: *void; /* In input format. Can be null if it's not needed. */ + inputCacheCap: ma_uint64; /* The capacity of the input cache. */ + inputCacheConsumed: ma_uint64; /* The number of frames that have been consumed in the cache. Used for determining the next valid frame. */ + inputCacheRemaining: ma_uint64; /* The number of valid frames remaining in the cahce. */ + allocationCallbacks: ma_allocation_callbacks; + data: union { + vfs: struct { + pVFS: *ma_vfs; + file: ma_vfs_file; + }; + + memory: struct { + pData: *ma_uint8; + dataSize: size_t; + currentReadPos: size_t; + }; /* Only used for decoders that were opened against a block of memory. */ + }; +} + +ma_decoder_config_init :: (outputFormat: ma_format, outputChannels: ma_uint32, outputSampleRate: ma_uint32) -> ma_decoder_config #foreign miniaudio; +ma_decoder_config_init_default :: () -> ma_decoder_config #foreign miniaudio; + +ma_decoder_init :: (onRead: ma_decoder_read_proc, onSeek: ma_decoder_seek_proc, pUserData: *void, pConfig: *ma_decoder_config, pDecoder: *ma_decoder) -> ma_result #foreign miniaudio; +ma_decoder_init_memory :: (pData: *void, dataSize: size_t, pConfig: *ma_decoder_config, pDecoder: *ma_decoder) -> ma_result #foreign miniaudio; +ma_decoder_init_vfs :: (pVFS: *ma_vfs, pFilePath: *u8, pConfig: *ma_decoder_config, pDecoder: *ma_decoder) -> ma_result #foreign miniaudio; +ma_decoder_init_vfs_w :: (pVFS: *ma_vfs, pFilePath: *s16, pConfig: *ma_decoder_config, pDecoder: *ma_decoder) -> ma_result #foreign miniaudio; +ma_decoder_init_file :: (pFilePath: *u8, pConfig: *ma_decoder_config, pDecoder: *ma_decoder) -> ma_result #foreign miniaudio; +ma_decoder_init_file_w :: (pFilePath: *s16, pConfig: *ma_decoder_config, pDecoder: *ma_decoder) -> ma_result #foreign miniaudio; + +/* +Uninitializes a decoder. +*/ +ma_decoder_uninit :: (pDecoder: *ma_decoder) -> ma_result #foreign miniaudio; + +/* +Reads PCM frames from the given decoder. + +This is not thread safe without your own synchronization. +*/ +ma_decoder_read_pcm_frames :: (pDecoder: *ma_decoder, pFramesOut: *void, frameCount: ma_uint64, pFramesRead: *ma_uint64) -> ma_result #foreign miniaudio; + +/* +Seeks to a PCM frame based on it's absolute index. + +This is not thread safe without your own synchronization. +*/ +ma_decoder_seek_to_pcm_frame :: (pDecoder: *ma_decoder, frameIndex: ma_uint64) -> ma_result #foreign miniaudio; + +/* +Retrieves the decoder's output data format. +*/ +ma_decoder_get_data_format :: (pDecoder: *ma_decoder, pFormat: *ma_format, pChannels: *ma_uint32, pSampleRate: *ma_uint32, pChannelMap: *ma_channel, channelMapCap: size_t) -> ma_result #foreign miniaudio; + +/* +Retrieves the current position of the read cursor in PCM frames. +*/ +ma_decoder_get_cursor_in_pcm_frames :: (pDecoder: *ma_decoder, pCursor: *ma_uint64) -> ma_result #foreign miniaudio; + +/* +Retrieves the length of the decoder in PCM frames. + +Do not call this on streams of an undefined length, such as internet radio. + +If the length is unknown or an error occurs, 0 will be returned. + +This will always return 0 for Vorbis decoders. This is due to a limitation with stb_vorbis in push mode which is what miniaudio +uses internally. + +For MP3's, this will decode the entire file. Do not call this in time critical scenarios. + +This function is not thread safe without your own synchronization. +*/ +ma_decoder_get_length_in_pcm_frames :: (pDecoder: *ma_decoder, pLength: *ma_uint64) -> ma_result #foreign miniaudio; + +/* +Retrieves the number of frames that can be read before reaching the end. + +This calls `ma_decoder_get_length_in_pcm_frames()` so you need to be aware of the rules for that function, in +particular ensuring you do not call it on streams of an undefined length, such as internet radio. + +If the total length of the decoder cannot be retrieved, such as with Vorbis decoders, `MA_NOT_IMPLEMENTED` will be +returned. +*/ +ma_decoder_get_available_frames :: (pDecoder: *ma_decoder, pAvailableFrames: *ma_uint64) -> ma_result #foreign miniaudio; + +/* +Helper for opening and decoding a file into a heap allocated block of memory. Free the returned pointer with ma_free(). On input, +pConfig should be set to what you want. On output it will be set to what you got. +*/ +ma_decode_from_vfs :: (pVFS: *ma_vfs, pFilePath: *u8, pConfig: *ma_decoder_config, pFrameCountOut: *ma_uint64, ppPCMFramesOut: **void) -> ma_result #foreign miniaudio; +ma_decode_file :: (pFilePath: *u8, pConfig: *ma_decoder_config, pFrameCountOut: *ma_uint64, ppPCMFramesOut: **void) -> ma_result #foreign miniaudio; +ma_decode_memory :: (pData: *void, dataSize: size_t, pConfig: *ma_decoder_config, pFrameCountOut: *ma_uint64, ppPCMFramesOut: **void) -> ma_result #foreign miniaudio; + +ma_encoder_write_proc :: #type (pEncoder: *ma_encoder, pBufferIn: *void, bytesToWrite: size_t, pBytesWritten: *size_t) -> ma_result #c_call; +ma_encoder_seek_proc :: #type (pEncoder: *ma_encoder, offset: ma_int64, origin: ma_seek_origin) -> ma_result #c_call; +ma_encoder_init_proc :: #type (pEncoder: *ma_encoder) -> ma_result #c_call; +ma_encoder_uninit_proc :: #type (pEncoder: *ma_encoder) -> void #c_call; +ma_encoder_write_pcm_frames_proc :: #type (pEncoder: *ma_encoder, pFramesIn: *void, frameCount: ma_uint64, pFramesWritten: *ma_uint64) -> ma_result #c_call; + +ma_encoder_config :: struct { + encodingFormat: ma_encoding_format; + format: ma_format; + channels: ma_uint32; + sampleRate: ma_uint32; + allocationCallbacks: ma_allocation_callbacks; +} + +ma_encoder_config_init :: (encodingFormat: ma_encoding_format, format: ma_format, channels: ma_uint32, sampleRate: ma_uint32) -> ma_encoder_config #foreign miniaudio; + +ma_encoder :: struct { + config: ma_encoder_config; + onWrite: ma_encoder_write_proc; + onSeek: ma_encoder_seek_proc; + onInit: ma_encoder_init_proc; + onUninit: ma_encoder_uninit_proc; + onWritePCMFrames: ma_encoder_write_pcm_frames_proc; + pUserData: *void; + pInternalEncoder: *void; + data: union { + vfs: struct { + pVFS: *ma_vfs; + file: ma_vfs_file; + }; + }; +} + +ma_encoder_init :: (onWrite: ma_encoder_write_proc, onSeek: ma_encoder_seek_proc, pUserData: *void, pConfig: *ma_encoder_config, pEncoder: *ma_encoder) -> ma_result #foreign miniaudio; +ma_encoder_init_vfs :: (pVFS: *ma_vfs, pFilePath: *u8, pConfig: *ma_encoder_config, pEncoder: *ma_encoder) -> ma_result #foreign miniaudio; +ma_encoder_init_vfs_w :: (pVFS: *ma_vfs, pFilePath: *s16, pConfig: *ma_encoder_config, pEncoder: *ma_encoder) -> ma_result #foreign miniaudio; +ma_encoder_init_file :: (pFilePath: *u8, pConfig: *ma_encoder_config, pEncoder: *ma_encoder) -> ma_result #foreign miniaudio; +ma_encoder_init_file_w :: (pFilePath: *s16, pConfig: *ma_encoder_config, pEncoder: *ma_encoder) -> ma_result #foreign miniaudio; +ma_encoder_uninit :: (pEncoder: *ma_encoder) -> void #foreign miniaudio; +ma_encoder_write_pcm_frames :: (pEncoder: *ma_encoder, pFramesIn: *void, frameCount: ma_uint64, pFramesWritten: *ma_uint64) -> ma_result #foreign miniaudio; + +ma_waveform_type :: enum s32 { + ma_waveform_type_sine :: 0; + ma_waveform_type_square :: 1; + ma_waveform_type_triangle :: 2; + ma_waveform_type_sawtooth :: 3; +} + +ma_waveform_config :: struct { + format: ma_format; + channels: ma_uint32; + sampleRate: ma_uint32; + type: ma_waveform_type; + amplitude: float64; + frequency: float64; +} + +ma_waveform_config_init :: (format: ma_format, channels: ma_uint32, sampleRate: ma_uint32, type: ma_waveform_type, amplitude: float64, frequency: float64) -> ma_waveform_config #foreign miniaudio; + +ma_waveform :: struct { + ds: ma_data_source_base; + config: ma_waveform_config; + advance: float64; + time: float64; +} + +ma_waveform_init :: (pConfig: *ma_waveform_config, pWaveform: *ma_waveform) -> ma_result #foreign miniaudio; +ma_waveform_uninit :: (pWaveform: *ma_waveform) -> void #foreign miniaudio; +ma_waveform_read_pcm_frames :: (pWaveform: *ma_waveform, pFramesOut: *void, frameCount: ma_uint64, pFramesRead: *ma_uint64) -> ma_result #foreign miniaudio; +ma_waveform_seek_to_pcm_frame :: (pWaveform: *ma_waveform, frameIndex: ma_uint64) -> ma_result #foreign miniaudio; +ma_waveform_set_amplitude :: (pWaveform: *ma_waveform, amplitude: float64) -> ma_result #foreign miniaudio; +ma_waveform_set_frequency :: (pWaveform: *ma_waveform, frequency: float64) -> ma_result #foreign miniaudio; +ma_waveform_set_type :: (pWaveform: *ma_waveform, type: ma_waveform_type) -> ma_result #foreign miniaudio; +ma_waveform_set_sample_rate :: (pWaveform: *ma_waveform, sampleRate: ma_uint32) -> ma_result #foreign miniaudio; + +ma_pulsewave_config :: struct { + format: ma_format; + channels: ma_uint32; + sampleRate: ma_uint32; + dutyCycle: float64; + amplitude: float64; + frequency: float64; +} + +ma_pulsewave_config_init :: (format: ma_format, channels: ma_uint32, sampleRate: ma_uint32, dutyCycle: float64, amplitude: float64, frequency: float64) -> ma_pulsewave_config #foreign miniaudio; + +ma_pulsewave :: struct { + waveform: ma_waveform; + config: ma_pulsewave_config; +} + +ma_pulsewave_init :: (pConfig: *ma_pulsewave_config, pWaveform: *ma_pulsewave) -> ma_result #foreign miniaudio; +ma_pulsewave_uninit :: (pWaveform: *ma_pulsewave) -> void #foreign miniaudio; +ma_pulsewave_read_pcm_frames :: (pWaveform: *ma_pulsewave, pFramesOut: *void, frameCount: ma_uint64, pFramesRead: *ma_uint64) -> ma_result #foreign miniaudio; +ma_pulsewave_seek_to_pcm_frame :: (pWaveform: *ma_pulsewave, frameIndex: ma_uint64) -> ma_result #foreign miniaudio; +ma_pulsewave_set_amplitude :: (pWaveform: *ma_pulsewave, amplitude: float64) -> ma_result #foreign miniaudio; +ma_pulsewave_set_frequency :: (pWaveform: *ma_pulsewave, frequency: float64) -> ma_result #foreign miniaudio; +ma_pulsewave_set_sample_rate :: (pWaveform: *ma_pulsewave, sampleRate: ma_uint32) -> ma_result #foreign miniaudio; +ma_pulsewave_set_duty_cycle :: (pWaveform: *ma_pulsewave, dutyCycle: float64) -> ma_result #foreign miniaudio; + +ma_noise_type :: enum s32 { + ma_noise_type_white :: 0; + ma_noise_type_pink :: 1; + ma_noise_type_brownian :: 2; +} + +ma_noise_config :: struct { + format: ma_format; + channels: ma_uint32; + type: ma_noise_type; + seed: ma_int32; + amplitude: float64; + duplicateChannels: ma_bool32; +} + +ma_noise_config_init :: (format: ma_format, channels: ma_uint32, type: ma_noise_type, seed: ma_int32, amplitude: float64) -> ma_noise_config #foreign miniaudio; + +ma_noise :: struct { + ds: ma_data_source_vtable; + config: ma_noise_config; + lcg: ma_lcg; + state: union { + pink: struct { + bin: **float64; + accumulation: *float64; + counter: *ma_uint32; + }; + + brownian: struct { + accumulation: *float64; + }; + }; + + /* Memory management. */ + _pHeap: *void; + _ownsHeap: ma_bool32; +} + +ma_noise_get_heap_size :: (pConfig: *ma_noise_config, pHeapSizeInBytes: *size_t) -> ma_result #foreign miniaudio; +ma_noise_init_preallocated :: (pConfig: *ma_noise_config, pHeap: *void, pNoise: *ma_noise) -> ma_result #foreign miniaudio; +ma_noise_init :: (pConfig: *ma_noise_config, pAllocationCallbacks: *ma_allocation_callbacks, pNoise: *ma_noise) -> ma_result #foreign miniaudio; +ma_noise_uninit :: (pNoise: *ma_noise, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_noise_read_pcm_frames :: (pNoise: *ma_noise, pFramesOut: *void, frameCount: ma_uint64, pFramesRead: *ma_uint64) -> ma_result #foreign miniaudio; +ma_noise_set_amplitude :: (pNoise: *ma_noise, amplitude: float64) -> ma_result #foreign miniaudio; +ma_noise_set_seed :: (pNoise: *ma_noise, seed: ma_int32) -> ma_result #foreign miniaudio; +ma_noise_set_type :: (pNoise: *ma_noise, type: ma_noise_type) -> ma_result #foreign miniaudio; + +ma_resource_manager_data_source_flags :: enum s32 { + MA_RESOURCE_MANAGER_DATA_SOURCE_FLAG_STREAM :: 1; + MA_RESOURCE_MANAGER_DATA_SOURCE_FLAG_DECODE :: 2; + MA_RESOURCE_MANAGER_DATA_SOURCE_FLAG_ASYNC :: 4; + MA_RESOURCE_MANAGER_DATA_SOURCE_FLAG_WAIT_INIT :: 8; + MA_RESOURCE_MANAGER_DATA_SOURCE_FLAG_UNKNOWN_LENGTH :: 16; +} + +/* +Pipeline notifications used by the resource manager. Made up of both an async notification and a fence, both of which are optional. +*/ +ma_resource_manager_pipeline_stage_notification :: struct { + pNotification: *ma_async_notification; + pFence: *ma_fence; +} + +ma_resource_manager_pipeline_notifications :: struct { + init: ma_resource_manager_pipeline_stage_notification; /* Initialization of the decoder. */ + done: ma_resource_manager_pipeline_stage_notification; /* Decoding fully completed. */ +} + +ma_resource_manager_pipeline_notifications_init :: () -> ma_resource_manager_pipeline_notifications #foreign miniaudio; + +ma_resource_manager_flags :: enum s32 { + MA_RESOURCE_MANAGER_FLAG_NON_BLOCKING :: 1; + + MA_RESOURCE_MANAGER_FLAG_NO_THREADING :: 2; +} + +ma_resource_manager_data_source_config :: struct { + pFilePath: *u8; + pFilePathW: *s16; + pNotifications: *ma_resource_manager_pipeline_notifications; + initialSeekPointInPCMFrames: ma_uint64; + rangeBegInPCMFrames: ma_uint64; + rangeEndInPCMFrames: ma_uint64; + loopPointBegInPCMFrames: ma_uint64; + loopPointEndInPCMFrames: ma_uint64; + isLooping: ma_bool32; + flags: ma_uint32; +} + +ma_resource_manager_data_source_config_init :: () -> ma_resource_manager_data_source_config #foreign miniaudio; + +ma_resource_manager_data_supply_type :: enum s32 { + ma_resource_manager_data_supply_type_unknown :: 0; + ma_resource_manager_data_supply_type_encoded :: 1; + ma_resource_manager_data_supply_type_decoded :: 2; + ma_resource_manager_data_supply_type_decoded_paged :: 3; +} + +ma_resource_manager_data_supply :: struct { + type: ma_resource_manager_data_supply_type; /* Read and written from different threads so needs to be accessed atomically. */ + backend: union { + encoded: struct { + pData: *void; + sizeInBytes: size_t; + }; + + decoded: struct { + pData: *void; + totalFrameCount: ma_uint64; + decodedFrameCount: ma_uint64; + format: ma_format; + channels: ma_uint32; + sampleRate: ma_uint32; + }; + + decodedPaged: struct { + data: ma_paged_audio_buffer_data; + decodedFrameCount: ma_uint64; + sampleRate: ma_uint32; + }; + }; +} + +ma_resource_manager_data_buffer_node :: struct { + hashedName32: ma_uint32; /* The hashed name. This is the key. */ + refCount: ma_uint32; + result: ma_result; /* Result from asynchronous loading. When loading set to MA_BUSY. When fully loaded set to MA_SUCCESS. When deleting set to MA_UNAVAILABLE. */ + executionCounter: ma_uint32; /* For allocating execution orders for jobs. */ + executionPointer: ma_uint32; /* For managing the order of execution for asynchronous jobs relating to this object. Incremented as jobs complete processing. */ + isDataOwnedByResourceManager: ma_bool32; /* Set to true when the underlying data buffer was allocated the resource manager. Set to false if it is owned by the application (via ma_resource_manager_register_*()). */ + data: ma_resource_manager_data_supply; + pParent: *ma_resource_manager_data_buffer_node; + pChildLo: *ma_resource_manager_data_buffer_node; + pChildHi: *ma_resource_manager_data_buffer_node; +} + +ma_resource_manager_data_buffer :: struct { + ds: ma_data_source_base; /* Base data source. A data buffer is a data source. */ + pResourceManager: *ma_resource_manager; /* A pointer to the resource manager that owns this buffer. */ + pNode: *ma_resource_manager_data_buffer_node; /* The data node. This is reference counted and is what supplies the data. */ + flags: ma_uint32; /* The flags that were passed used to initialize the buffer. */ + executionCounter: ma_uint32; /* For allocating execution orders for jobs. */ + executionPointer: ma_uint32; /* For managing the order of execution for asynchronous jobs relating to this object. Incremented as jobs complete processing. */ + seekTargetInPCMFrames: ma_uint64; /* Only updated by the public API. Never written nor read from the job thread. */ + seekToCursorOnNextRead: ma_bool32; /* On the next read we need to seek to the frame cursor. */ + result: ma_result; /* Keeps track of a result of decoding. Set to MA_BUSY while the buffer is still loading. Set to MA_SUCCESS when loading is finished successfully. Otherwise set to some other code. */ + isLooping: ma_bool32; /* Can be read and written by different threads at the same time. Must be used atomically. */ + isConnectorInitialized: ma_atomic_bool32; /* Used for asynchronous loading to ensure we don't try to initialize the connector multiple times while waiting for the node to fully load. */ + connector: union { + decoder: ma_decoder; /* Supply type is ma_resource_manager_data_supply_type_encoded */ + buffer: ma_audio_buffer; /* Supply type is ma_resource_manager_data_supply_type_decoded */ + pagedBuffer: ma_paged_audio_buffer; /* Supply type is ma_resource_manager_data_supply_type_decoded_paged */ + }; /* Connects this object to the node's data supply. */ +} + +ma_resource_manager_data_stream :: struct { + ds: ma_data_source_base; /* Base data source. A data stream is a data source. */ + pResourceManager: *ma_resource_manager; /* A pointer to the resource manager that owns this data stream. */ + flags: ma_uint32; /* The flags that were passed used to initialize the stream. */ + decoder: ma_decoder; /* Used for filling pages with data. This is only ever accessed by the job thread. The public API should never touch this. */ + isDecoderInitialized: ma_bool32; /* Required for determining whether or not the decoder should be uninitialized in MA_JOB_TYPE_RESOURCE_MANAGER_FREE_DATA_STREAM. */ + totalLengthInPCMFrames: ma_uint64; /* This is calculated when first loaded by the MA_JOB_TYPE_RESOURCE_MANAGER_LOAD_DATA_STREAM. */ + relativeCursor: ma_uint32; /* The playback cursor, relative to the current page. Only ever accessed by the public API. Never accessed by the job thread. */ + absoluteCursor: ma_uint64; /* The playback cursor, in absolute position starting from the start of the file. */ + currentPageIndex: ma_uint32; /* Toggles between 0 and 1. Index 0 is the first half of pPageData. Index 1 is the second half. Only ever accessed by the public API. Never accessed by the job thread. */ + executionCounter: ma_uint32; /* For allocating execution orders for jobs. */ + executionPointer: ma_uint32; /* For managing the order of execution for asynchronous jobs relating to this object. Incremented as jobs complete processing. */ + + isLooping: ma_bool32; /* Whether or not the stream is looping. It's important to set the looping flag at the data stream level for smooth loop transitions. */ + + pPageData: *void; /* Buffer containing the decoded data of each page. Allocated once at initialization time. */ + pageFrameCount: [2] ma_uint32; /* The number of valid PCM frames in each page. Used to determine the last valid frame. */ + + result: ma_result; /* Result from asynchronous loading. When loading set to MA_BUSY. When initialized set to MA_SUCCESS. When deleting set to MA_UNAVAILABLE. If an error occurs when loading, set to an error code. */ + isDecoderAtEnd: ma_bool32; /* Whether or not the decoder has reached the end. */ + isPageValid: [2] ma_bool32; /* Booleans to indicate whether or not a page is valid. Set to false by the public API, set to true by the job thread. Set to false as the pages are consumed, true when they are filled. */ + seekCounter: ma_bool32; /* When 0, no seeking is being performed. When > 0, a seek is being performed and reading should be delayed with MA_BUSY. */ +} + +ma_resource_manager_data_source :: struct { + backend: union { + buffer: ma_resource_manager_data_buffer; + stream: ma_resource_manager_data_stream; + }; /* Must be the first item because we need the first item to be the data source callbacks for the buffer or stream. */ + + flags: ma_uint32; /* The flags that were passed in to ma_resource_manager_data_source_init(). */ + executionCounter: ma_uint32; /* For allocating execution orders for jobs. */ + executionPointer: ma_uint32; /* For managing the order of execution for asynchronous jobs relating to this object. Incremented as jobs complete processing. */ +} + +ma_resource_manager_config :: struct { + allocationCallbacks: ma_allocation_callbacks; + pLog: *ma_log; + decodedFormat: ma_format; /* The decoded format to use. Set to ma_format_unknown (default) to use the file's native format. */ + decodedChannels: ma_uint32; /* The decoded channel count to use. Set to 0 (default) to use the file's native channel count. */ + decodedSampleRate: ma_uint32; /* the decoded sample rate to use. Set to 0 (default) to use the file's native sample rate. */ + jobThreadCount: ma_uint32; /* Set to 0 if you want to self-manage your job threads. Defaults to 1. */ + jobThreadStackSize: size_t; + jobQueueCapacity: ma_uint32; /* The maximum number of jobs that can fit in the queue at a time. Defaults to MA_JOB_TYPE_RESOURCE_MANAGER_QUEUE_CAPACITY. Cannot be zero. */ + flags: ma_uint32; + pVFS: *ma_vfs; /* Can be NULL in which case defaults will be used. */ + ppCustomDecodingBackendVTables: **ma_decoding_backend_vtable; + customDecodingBackendCount: ma_uint32; + pCustomDecodingBackendUserData: *void; +} + +ma_resource_manager_config_init :: () -> ma_resource_manager_config #foreign miniaudio; + +ma_resource_manager :: struct { + config: ma_resource_manager_config; + pRootDataBufferNode: *ma_resource_manager_data_buffer_node; /* The root buffer in the binary tree. */ + + dataBufferBSTLock: ma_mutex; /* For synchronizing access to the data buffer binary tree. */ + jobThreads: [64] ma_thread; /* The threads for executing jobs. */ + + jobQueue: ma_job_queue; /* Multi-consumer, multi-producer job queue for managing jobs for asynchronous decoding and streaming. */ + defaultVFS: ma_default_vfs; /* Only used if a custom VFS is not specified. */ + log: ma_log; /* Only used if no log was specified in the config. */ +} + +/* Init. */ +ma_resource_manager_init :: (pConfig: *ma_resource_manager_config, pResourceManager: *ma_resource_manager) -> ma_result #foreign miniaudio; +ma_resource_manager_uninit :: (pResourceManager: *ma_resource_manager) -> void #foreign miniaudio; +ma_resource_manager_get_log :: (pResourceManager: *ma_resource_manager) -> *ma_log #foreign miniaudio; + +/* Registration. */ +ma_resource_manager_register_file :: (pResourceManager: *ma_resource_manager, pFilePath: *u8, flags: ma_uint32) -> ma_result #foreign miniaudio; +ma_resource_manager_register_file_w :: (pResourceManager: *ma_resource_manager, pFilePath: *s16, flags: ma_uint32) -> ma_result #foreign miniaudio; +ma_resource_manager_register_decoded_data :: (pResourceManager: *ma_resource_manager, pName: *u8, pData: *void, frameCount: ma_uint64, format: ma_format, channels: ma_uint32, sampleRate: ma_uint32) -> ma_result #foreign miniaudio; +ma_resource_manager_register_decoded_data_w :: (pResourceManager: *ma_resource_manager, pName: *s16, pData: *void, frameCount: ma_uint64, format: ma_format, channels: ma_uint32, sampleRate: ma_uint32) -> ma_result #foreign miniaudio; +ma_resource_manager_register_encoded_data :: (pResourceManager: *ma_resource_manager, pName: *u8, pData: *void, sizeInBytes: size_t) -> ma_result #foreign miniaudio; +ma_resource_manager_register_encoded_data_w :: (pResourceManager: *ma_resource_manager, pName: *s16, pData: *void, sizeInBytes: size_t) -> ma_result #foreign miniaudio; +ma_resource_manager_unregister_file :: (pResourceManager: *ma_resource_manager, pFilePath: *u8) -> ma_result #foreign miniaudio; +ma_resource_manager_unregister_file_w :: (pResourceManager: *ma_resource_manager, pFilePath: *s16) -> ma_result #foreign miniaudio; +ma_resource_manager_unregister_data :: (pResourceManager: *ma_resource_manager, pName: *u8) -> ma_result #foreign miniaudio; +ma_resource_manager_unregister_data_w :: (pResourceManager: *ma_resource_manager, pName: *s16) -> ma_result #foreign miniaudio; + +/* Data Buffers. */ +ma_resource_manager_data_buffer_init_ex :: (pResourceManager: *ma_resource_manager, pConfig: *ma_resource_manager_data_source_config, pDataBuffer: *ma_resource_manager_data_buffer) -> ma_result #foreign miniaudio; +ma_resource_manager_data_buffer_init :: (pResourceManager: *ma_resource_manager, pFilePath: *u8, flags: ma_uint32, pNotifications: *ma_resource_manager_pipeline_notifications, pDataBuffer: *ma_resource_manager_data_buffer) -> ma_result #foreign miniaudio; +ma_resource_manager_data_buffer_init_w :: (pResourceManager: *ma_resource_manager, pFilePath: *s16, flags: ma_uint32, pNotifications: *ma_resource_manager_pipeline_notifications, pDataBuffer: *ma_resource_manager_data_buffer) -> ma_result #foreign miniaudio; +ma_resource_manager_data_buffer_init_copy :: (pResourceManager: *ma_resource_manager, pExistingDataBuffer: *ma_resource_manager_data_buffer, pDataBuffer: *ma_resource_manager_data_buffer) -> ma_result #foreign miniaudio; +ma_resource_manager_data_buffer_uninit :: (pDataBuffer: *ma_resource_manager_data_buffer) -> ma_result #foreign miniaudio; +ma_resource_manager_data_buffer_read_pcm_frames :: (pDataBuffer: *ma_resource_manager_data_buffer, pFramesOut: *void, frameCount: ma_uint64, pFramesRead: *ma_uint64) -> ma_result #foreign miniaudio; +ma_resource_manager_data_buffer_seek_to_pcm_frame :: (pDataBuffer: *ma_resource_manager_data_buffer, frameIndex: ma_uint64) -> ma_result #foreign miniaudio; +ma_resource_manager_data_buffer_get_data_format :: (pDataBuffer: *ma_resource_manager_data_buffer, pFormat: *ma_format, pChannels: *ma_uint32, pSampleRate: *ma_uint32, pChannelMap: *ma_channel, channelMapCap: size_t) -> ma_result #foreign miniaudio; +ma_resource_manager_data_buffer_get_cursor_in_pcm_frames :: (pDataBuffer: *ma_resource_manager_data_buffer, pCursor: *ma_uint64) -> ma_result #foreign miniaudio; +ma_resource_manager_data_buffer_get_length_in_pcm_frames :: (pDataBuffer: *ma_resource_manager_data_buffer, pLength: *ma_uint64) -> ma_result #foreign miniaudio; +ma_resource_manager_data_buffer_result :: (pDataBuffer: *ma_resource_manager_data_buffer) -> ma_result #foreign miniaudio; +ma_resource_manager_data_buffer_set_looping :: (pDataBuffer: *ma_resource_manager_data_buffer, isLooping: ma_bool32) -> ma_result #foreign miniaudio; +ma_resource_manager_data_buffer_is_looping :: (pDataBuffer: *ma_resource_manager_data_buffer) -> ma_bool32 #foreign miniaudio; +ma_resource_manager_data_buffer_get_available_frames :: (pDataBuffer: *ma_resource_manager_data_buffer, pAvailableFrames: *ma_uint64) -> ma_result #foreign miniaudio; + +/* Data Streams. */ +ma_resource_manager_data_stream_init_ex :: (pResourceManager: *ma_resource_manager, pConfig: *ma_resource_manager_data_source_config, pDataStream: *ma_resource_manager_data_stream) -> ma_result #foreign miniaudio; +ma_resource_manager_data_stream_init :: (pResourceManager: *ma_resource_manager, pFilePath: *u8, flags: ma_uint32, pNotifications: *ma_resource_manager_pipeline_notifications, pDataStream: *ma_resource_manager_data_stream) -> ma_result #foreign miniaudio; +ma_resource_manager_data_stream_init_w :: (pResourceManager: *ma_resource_manager, pFilePath: *s16, flags: ma_uint32, pNotifications: *ma_resource_manager_pipeline_notifications, pDataStream: *ma_resource_manager_data_stream) -> ma_result #foreign miniaudio; +ma_resource_manager_data_stream_uninit :: (pDataStream: *ma_resource_manager_data_stream) -> ma_result #foreign miniaudio; +ma_resource_manager_data_stream_read_pcm_frames :: (pDataStream: *ma_resource_manager_data_stream, pFramesOut: *void, frameCount: ma_uint64, pFramesRead: *ma_uint64) -> ma_result #foreign miniaudio; +ma_resource_manager_data_stream_seek_to_pcm_frame :: (pDataStream: *ma_resource_manager_data_stream, frameIndex: ma_uint64) -> ma_result #foreign miniaudio; +ma_resource_manager_data_stream_get_data_format :: (pDataStream: *ma_resource_manager_data_stream, pFormat: *ma_format, pChannels: *ma_uint32, pSampleRate: *ma_uint32, pChannelMap: *ma_channel, channelMapCap: size_t) -> ma_result #foreign miniaudio; +ma_resource_manager_data_stream_get_cursor_in_pcm_frames :: (pDataStream: *ma_resource_manager_data_stream, pCursor: *ma_uint64) -> ma_result #foreign miniaudio; +ma_resource_manager_data_stream_get_length_in_pcm_frames :: (pDataStream: *ma_resource_manager_data_stream, pLength: *ma_uint64) -> ma_result #foreign miniaudio; +ma_resource_manager_data_stream_result :: (pDataStream: *ma_resource_manager_data_stream) -> ma_result #foreign miniaudio; +ma_resource_manager_data_stream_set_looping :: (pDataStream: *ma_resource_manager_data_stream, isLooping: ma_bool32) -> ma_result #foreign miniaudio; +ma_resource_manager_data_stream_is_looping :: (pDataStream: *ma_resource_manager_data_stream) -> ma_bool32 #foreign miniaudio; +ma_resource_manager_data_stream_get_available_frames :: (pDataStream: *ma_resource_manager_data_stream, pAvailableFrames: *ma_uint64) -> ma_result #foreign miniaudio; + +/* Data Sources. */ +ma_resource_manager_data_source_init_ex :: (pResourceManager: *ma_resource_manager, pConfig: *ma_resource_manager_data_source_config, pDataSource: *ma_resource_manager_data_source) -> ma_result #foreign miniaudio; +ma_resource_manager_data_source_init :: (pResourceManager: *ma_resource_manager, pName: *u8, flags: ma_uint32, pNotifications: *ma_resource_manager_pipeline_notifications, pDataSource: *ma_resource_manager_data_source) -> ma_result #foreign miniaudio; +ma_resource_manager_data_source_init_w :: (pResourceManager: *ma_resource_manager, pName: *s16, flags: ma_uint32, pNotifications: *ma_resource_manager_pipeline_notifications, pDataSource: *ma_resource_manager_data_source) -> ma_result #foreign miniaudio; +ma_resource_manager_data_source_init_copy :: (pResourceManager: *ma_resource_manager, pExistingDataSource: *ma_resource_manager_data_source, pDataSource: *ma_resource_manager_data_source) -> ma_result #foreign miniaudio; +ma_resource_manager_data_source_uninit :: (pDataSource: *ma_resource_manager_data_source) -> ma_result #foreign miniaudio; +ma_resource_manager_data_source_read_pcm_frames :: (pDataSource: *ma_resource_manager_data_source, pFramesOut: *void, frameCount: ma_uint64, pFramesRead: *ma_uint64) -> ma_result #foreign miniaudio; +ma_resource_manager_data_source_seek_to_pcm_frame :: (pDataSource: *ma_resource_manager_data_source, frameIndex: ma_uint64) -> ma_result #foreign miniaudio; +ma_resource_manager_data_source_get_data_format :: (pDataSource: *ma_resource_manager_data_source, pFormat: *ma_format, pChannels: *ma_uint32, pSampleRate: *ma_uint32, pChannelMap: *ma_channel, channelMapCap: size_t) -> ma_result #foreign miniaudio; +ma_resource_manager_data_source_get_cursor_in_pcm_frames :: (pDataSource: *ma_resource_manager_data_source, pCursor: *ma_uint64) -> ma_result #foreign miniaudio; +ma_resource_manager_data_source_get_length_in_pcm_frames :: (pDataSource: *ma_resource_manager_data_source, pLength: *ma_uint64) -> ma_result #foreign miniaudio; +ma_resource_manager_data_source_result :: (pDataSource: *ma_resource_manager_data_source) -> ma_result #foreign miniaudio; +ma_resource_manager_data_source_set_looping :: (pDataSource: *ma_resource_manager_data_source, isLooping: ma_bool32) -> ma_result #foreign miniaudio; +ma_resource_manager_data_source_is_looping :: (pDataSource: *ma_resource_manager_data_source) -> ma_bool32 #foreign miniaudio; +ma_resource_manager_data_source_get_available_frames :: (pDataSource: *ma_resource_manager_data_source, pAvailableFrames: *ma_uint64) -> ma_result #foreign miniaudio; + +/* Job management. */ +ma_resource_manager_post_job :: (pResourceManager: *ma_resource_manager, pJob: *ma_job) -> ma_result #foreign miniaudio; +ma_resource_manager_post_job_quit :: (pResourceManager: *ma_resource_manager) -> ma_result #foreign miniaudio; +ma_resource_manager_next_job :: (pResourceManager: *ma_resource_manager, pJob: *ma_job) -> ma_result #foreign miniaudio; +ma_resource_manager_process_job :: (pResourceManager: *ma_resource_manager, pJob: *ma_job) -> ma_result #foreign miniaudio; +ma_resource_manager_process_next_job :: (pResourceManager: *ma_resource_manager) -> ma_result #foreign miniaudio; + +ma_node :: void; + +/* Node flags. */ +ma_node_flags :: enum s32 { + MA_NODE_FLAG_PASSTHROUGH :: 1; + MA_NODE_FLAG_CONTINUOUS_PROCESSING :: 2; + MA_NODE_FLAG_ALLOW_NULL_INPUT :: 4; + MA_NODE_FLAG_DIFFERENT_PROCESSING_RATES :: 8; + MA_NODE_FLAG_SILENT_OUTPUT :: 16; +} + +/* The playback state of a node. Either started or stopped. */ +ma_node_state :: enum s32 { + ma_node_state_started :: 0; + ma_node_state_stopped :: 1; +} + +ma_node_vtable :: struct { + /* + Extended processing callback. This callback is used for effects that process input and output + at different rates (i.e. they perform resampling). This is similar to the simple version, only + they take two seperate frame counts: one for input, and one for output. + + On input, `pFrameCountOut` is equal to the capacity of the output buffer for each bus, whereas + `pFrameCountIn` will be equal to the number of PCM frames in each of the buffers in `ppFramesIn`. + + On output, set `pFrameCountOut` to the number of PCM frames that were actually output and set + `pFrameCountIn` to the number of input frames that were consumed. + */ + onProcess: #type (pNode: *ma_node, ppFramesIn: **float, pFrameCountIn: *ma_uint32, ppFramesOut: **float, pFrameCountOut: *ma_uint32) -> void #c_call; + + /* + A callback for retrieving the number of a input frames that are required to output the + specified number of output frames. You would only want to implement this when the node performs + resampling. This is optional, even for nodes that perform resampling, but it does offer a + small reduction in latency as it allows miniaudio to calculate the exact number of input frames + to read at a time instead of having to estimate. + */ + onGetRequiredInputFrameCount: #type (pNode: *ma_node, outputFrameCount: ma_uint32, pInputFrameCount: *ma_uint32) -> ma_result #c_call; + + /* + The number of input buses. This is how many sub-buffers will be contained in the `ppFramesIn` + parameters of the callbacks above. + */ + inputBusCount: ma_uint8; + + /* + The number of output buses. This is how many sub-buffers will be contained in the `ppFramesOut` + parameters of the callbacks above. + */ + outputBusCount: ma_uint8; + + /* + Flags describing characteristics of the node. This is currently just a placeholder for some + ideas for later on. + */ + flags: ma_uint32; +} + +ma_node_config :: struct { + vtable: *ma_node_vtable; /* Should never be null. Initialization of the node will fail if so. */ + initialState: ma_node_state; /* Defaults to ma_node_state_started. */ + inputBusCount: ma_uint32; /* Only used if the vtable specifies an input bus count of `MA_NODE_BUS_COUNT_UNKNOWN`, otherwise must be set to `MA_NODE_BUS_COUNT_UNKNOWN` (default). */ + outputBusCount: ma_uint32; /* Only used if the vtable specifies an output bus count of `MA_NODE_BUS_COUNT_UNKNOWN`, otherwise be set to `MA_NODE_BUS_COUNT_UNKNOWN` (default). */ + pInputChannels: *ma_uint32; /* The number of elements are determined by the input bus count as determined by the vtable, or `inputBusCount` if the vtable specifies `MA_NODE_BUS_COUNT_UNKNOWN`. */ + pOutputChannels: *ma_uint32; /* The number of elements are determined by the output bus count as determined by the vtable, or `outputBusCount` if the vtable specifies `MA_NODE_BUS_COUNT_UNKNOWN`. */ +} + +ma_node_config_init :: () -> ma_node_config #foreign miniaudio; + +ma_node_output_bus :: struct { + pNode: *ma_node; /* The node that owns this output bus. The input node. Will be null for dummy head and tail nodes. */ + outputBusIndex: ma_uint8; /* The index of the output bus on pNode that this output bus represents. */ + channels: ma_uint8; /* The number of channels in the audio stream for this bus. */ + + inputNodeInputBusIndex: ma_uint8; /* The index of the input bus on the input. Required for detaching. Will only be used within the spinlock so does not need to be atomic. */ + flags: ma_uint32; /* Some state flags for tracking the read state of the output buffer. A combination of MA_NODE_OUTPUT_BUS_FLAG_*. */ + refCount: ma_uint32; /* Reference count for some thread-safety when detaching. */ + isAttached: ma_bool32; /* This is used to prevent iteration of nodes that are in the middle of being detached. Used for thread safety. */ + lock: ma_spinlock; /* Unfortunate lock, but significantly simplifies the implementation. Required for thread-safe attaching and detaching. */ + volume: float; /* Linear. */ + pNext: *ma_node_output_bus; /* If null, it's the tail node or detached. */ + pPrev: *ma_node_output_bus; /* If null, it's the head node or detached. */ + pInputNode: *ma_node; /* The node that this output bus is attached to. Required for detaching. */ +} + +ma_node_input_bus :: struct { + head: ma_node_output_bus; /* Dummy head node for simplifying some lock-free thread-safety stuff. */ + nextCounter: ma_uint32; /* This is used to determine whether or not the input bus is finding the next node in the list. Used for thread safety when detaching output buses. */ + lock: ma_spinlock; /* Unfortunate lock, but significantly simplifies the implementation. Required for thread-safe attaching and detaching. */ + + channels: ma_uint8; /* The number of channels in the audio stream for this bus. */ +} + +ma_node_base :: struct { + pNodeGraph: *ma_node_graph; /* The graph this node belongs to. */ + vtable: *ma_node_vtable; + pCachedData: *float; /* Allocated on the heap. Fixed size. Needs to be stored on the heap because reading from output buses is done in separate function calls. */ + cachedDataCapInFramesPerBus: ma_uint16; /* The capacity of the input data cache in frames, per bus. */ + + /* These variables are read and written only from the audio thread. */ + cachedFrameCountOut: ma_uint16; + cachedFrameCountIn: ma_uint16; + consumedFrameCountIn: ma_uint16; + + state: ma_node_state; /* When set to stopped, nothing will be read, regardless of the times in stateTimes. */ + stateTimes: [2] ma_uint64; /* Indexed by ma_node_state. Specifies the time based on the global clock that a node should be considered to be in the relevant state. */ + localTime: ma_uint64; /* The node's local clock. This is just a running sum of the number of output frames that have been processed. Can be modified by any thread with `ma_node_set_time()`. */ + inputBusCount: ma_uint32; + outputBusCount: ma_uint32; + pInputBuses: *ma_node_input_bus; + pOutputBuses: *ma_node_output_bus; + + /* Memory management. */ + _inputBuses: [2] ma_node_input_bus; + _outputBuses: [2] ma_node_output_bus; + _pHeap: *void; /* A heap allocation for internal use only. pInputBuses and/or pOutputBuses will point to this if the bus count exceeds MA_MAX_NODE_LOCAL_BUS_COUNT. */ + _ownsHeap: ma_bool32; /* If set to true, the node owns the heap allocation and _pHeap will be freed in ma_node_uninit(). */ +} + +ma_node_get_heap_size :: (pNodeGraph: *ma_node_graph, pConfig: *ma_node_config, pHeapSizeInBytes: *size_t) -> ma_result #foreign miniaudio; +ma_node_init_preallocated :: (pNodeGraph: *ma_node_graph, pConfig: *ma_node_config, pHeap: *void, pNode: *ma_node) -> ma_result #foreign miniaudio; +ma_node_init :: (pNodeGraph: *ma_node_graph, pConfig: *ma_node_config, pAllocationCallbacks: *ma_allocation_callbacks, pNode: *ma_node) -> ma_result #foreign miniaudio; +ma_node_uninit :: (pNode: *ma_node, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_node_get_node_graph :: (pNode: *ma_node) -> *ma_node_graph #foreign miniaudio; +ma_node_get_input_bus_count :: (pNode: *ma_node) -> ma_uint32 #foreign miniaudio; +ma_node_get_output_bus_count :: (pNode: *ma_node) -> ma_uint32 #foreign miniaudio; +ma_node_get_input_channels :: (pNode: *ma_node, inputBusIndex: ma_uint32) -> ma_uint32 #foreign miniaudio; +ma_node_get_output_channels :: (pNode: *ma_node, outputBusIndex: ma_uint32) -> ma_uint32 #foreign miniaudio; +ma_node_attach_output_bus :: (pNode: *ma_node, outputBusIndex: ma_uint32, pOtherNode: *ma_node, otherNodeInputBusIndex: ma_uint32) -> ma_result #foreign miniaudio; +ma_node_detach_output_bus :: (pNode: *ma_node, outputBusIndex: ma_uint32) -> ma_result #foreign miniaudio; +ma_node_detach_all_output_buses :: (pNode: *ma_node) -> ma_result #foreign miniaudio; +ma_node_set_output_bus_volume :: (pNode: *ma_node, outputBusIndex: ma_uint32, volume: float) -> ma_result #foreign miniaudio; +ma_node_get_output_bus_volume :: (pNode: *ma_node, outputBusIndex: ma_uint32) -> float #foreign miniaudio; +ma_node_set_state :: (pNode: *ma_node, state: ma_node_state) -> ma_result #foreign miniaudio; +ma_node_get_state :: (pNode: *ma_node) -> ma_node_state #foreign miniaudio; +ma_node_set_state_time :: (pNode: *ma_node, state: ma_node_state, globalTime: ma_uint64) -> ma_result #foreign miniaudio; +ma_node_get_state_time :: (pNode: *ma_node, state: ma_node_state) -> ma_uint64 #foreign miniaudio; +ma_node_get_state_by_time :: (pNode: *ma_node, globalTime: ma_uint64) -> ma_node_state #foreign miniaudio; +ma_node_get_state_by_time_range :: (pNode: *ma_node, globalTimeBeg: ma_uint64, globalTimeEnd: ma_uint64) -> ma_node_state #foreign miniaudio; +ma_node_get_time :: (pNode: *ma_node) -> ma_uint64 #foreign miniaudio; +ma_node_set_time :: (pNode: *ma_node, localTime: ma_uint64) -> ma_result #foreign miniaudio; + +ma_node_graph_config :: struct { + channels: ma_uint32; + nodeCacheCapInFrames: ma_uint16; +} + +ma_node_graph_config_init :: (channels: ma_uint32) -> ma_node_graph_config #foreign miniaudio; + +ma_node_graph :: struct { + base: ma_node_base; /* The node graph itself is a node so it can be connected as an input to different node graph. This has zero inputs and calls ma_node_graph_read_pcm_frames() to generate it's output. */ + endpoint: ma_node_base; /* Special node that all nodes eventually connect to. Data is read from this node in ma_node_graph_read_pcm_frames(). */ + nodeCacheCapInFrames: ma_uint16; + + /* Read and written by multiple threads. */ + isReading: ma_bool32; +} + +ma_node_graph_init :: (pConfig: *ma_node_graph_config, pAllocationCallbacks: *ma_allocation_callbacks, pNodeGraph: *ma_node_graph) -> ma_result #foreign miniaudio; +ma_node_graph_uninit :: (pNodeGraph: *ma_node_graph, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_node_graph_get_endpoint :: (pNodeGraph: *ma_node_graph) -> *ma_node #foreign miniaudio; +ma_node_graph_read_pcm_frames :: (pNodeGraph: *ma_node_graph, pFramesOut: *void, frameCount: ma_uint64, pFramesRead: *ma_uint64) -> ma_result #foreign miniaudio; +ma_node_graph_get_channels :: (pNodeGraph: *ma_node_graph) -> ma_uint32 #foreign miniaudio; +ma_node_graph_get_time :: (pNodeGraph: *ma_node_graph) -> ma_uint64 #foreign miniaudio; +ma_node_graph_set_time :: (pNodeGraph: *ma_node_graph, globalTime: ma_uint64) -> ma_result #foreign miniaudio; + +/* Data source node. 0 input buses, 1 output bus. Used for reading from a data source. */ +ma_data_source_node_config :: struct { + nodeConfig: ma_node_config; + pDataSource: *ma_data_source; +} + +ma_data_source_node_config_init :: (pDataSource: *ma_data_source) -> ma_data_source_node_config #foreign miniaudio; + +ma_data_source_node :: struct { + base: ma_node_base; + pDataSource: *ma_data_source; +} + +ma_data_source_node_init :: (pNodeGraph: *ma_node_graph, pConfig: *ma_data_source_node_config, pAllocationCallbacks: *ma_allocation_callbacks, pDataSourceNode: *ma_data_source_node) -> ma_result #foreign miniaudio; +ma_data_source_node_uninit :: (pDataSourceNode: *ma_data_source_node, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_data_source_node_set_looping :: (pDataSourceNode: *ma_data_source_node, isLooping: ma_bool32) -> ma_result #foreign miniaudio; +ma_data_source_node_is_looping :: (pDataSourceNode: *ma_data_source_node) -> ma_bool32 #foreign miniaudio; + +/* Splitter Node. 1 input, many outputs. Used for splitting/copying a stream so it can be as input into two separate output nodes. */ +ma_splitter_node_config :: struct { + nodeConfig: ma_node_config; + channels: ma_uint32; + outputBusCount: ma_uint32; +} + +ma_splitter_node_config_init :: (channels: ma_uint32) -> ma_splitter_node_config #foreign miniaudio; + +ma_splitter_node :: struct { + base: ma_node_base; +} + +ma_splitter_node_init :: (pNodeGraph: *ma_node_graph, pConfig: *ma_splitter_node_config, pAllocationCallbacks: *ma_allocation_callbacks, pSplitterNode: *ma_splitter_node) -> ma_result #foreign miniaudio; +ma_splitter_node_uninit :: (pSplitterNode: *ma_splitter_node, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; + +/* +Biquad Node +*/ +ma_biquad_node_config :: struct { + nodeConfig: ma_node_config; + biquad: ma_biquad_config; +} + +ma_biquad_node_config_init :: (channels: ma_uint32, b0: float, b1: float, b2: float, a0: float, a1: float, a2: float) -> ma_biquad_node_config #foreign miniaudio; + +ma_biquad_node :: struct { + baseNode: ma_node_base; + biquad: ma_biquad; +} + +ma_biquad_node_init :: (pNodeGraph: *ma_node_graph, pConfig: *ma_biquad_node_config, pAllocationCallbacks: *ma_allocation_callbacks, pNode: *ma_biquad_node) -> ma_result #foreign miniaudio; +ma_biquad_node_reinit :: (pConfig: *ma_biquad_config, pNode: *ma_biquad_node) -> ma_result #foreign miniaudio; +ma_biquad_node_uninit :: (pNode: *ma_biquad_node, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; + +/* +Low Pass Filter Node +*/ +ma_lpf_node_config :: struct { + nodeConfig: ma_node_config; + lpf: ma_lpf_config; +} + +ma_lpf_node_config_init :: (channels: ma_uint32, sampleRate: ma_uint32, cutoffFrequency: float64, order: ma_uint32) -> ma_lpf_node_config #foreign miniaudio; + +ma_lpf_node :: struct { + baseNode: ma_node_base; + lpf: ma_lpf; +} + +ma_lpf_node_init :: (pNodeGraph: *ma_node_graph, pConfig: *ma_lpf_node_config, pAllocationCallbacks: *ma_allocation_callbacks, pNode: *ma_lpf_node) -> ma_result #foreign miniaudio; +ma_lpf_node_reinit :: (pConfig: *ma_lpf_config, pNode: *ma_lpf_node) -> ma_result #foreign miniaudio; +ma_lpf_node_uninit :: (pNode: *ma_lpf_node, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; + +/* +High Pass Filter Node +*/ +ma_hpf_node_config :: struct { + nodeConfig: ma_node_config; + hpf: ma_hpf_config; +} + +ma_hpf_node_config_init :: (channels: ma_uint32, sampleRate: ma_uint32, cutoffFrequency: float64, order: ma_uint32) -> ma_hpf_node_config #foreign miniaudio; + +ma_hpf_node :: struct { + baseNode: ma_node_base; + hpf: ma_hpf; +} + +ma_hpf_node_init :: (pNodeGraph: *ma_node_graph, pConfig: *ma_hpf_node_config, pAllocationCallbacks: *ma_allocation_callbacks, pNode: *ma_hpf_node) -> ma_result #foreign miniaudio; +ma_hpf_node_reinit :: (pConfig: *ma_hpf_config, pNode: *ma_hpf_node) -> ma_result #foreign miniaudio; +ma_hpf_node_uninit :: (pNode: *ma_hpf_node, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; + +/* +Band Pass Filter Node +*/ +ma_bpf_node_config :: struct { + nodeConfig: ma_node_config; + bpf: ma_bpf_config; +} + +ma_bpf_node_config_init :: (channels: ma_uint32, sampleRate: ma_uint32, cutoffFrequency: float64, order: ma_uint32) -> ma_bpf_node_config #foreign miniaudio; + +ma_bpf_node :: struct { + baseNode: ma_node_base; + bpf: ma_bpf; +} + +ma_bpf_node_init :: (pNodeGraph: *ma_node_graph, pConfig: *ma_bpf_node_config, pAllocationCallbacks: *ma_allocation_callbacks, pNode: *ma_bpf_node) -> ma_result #foreign miniaudio; +ma_bpf_node_reinit :: (pConfig: *ma_bpf_config, pNode: *ma_bpf_node) -> ma_result #foreign miniaudio; +ma_bpf_node_uninit :: (pNode: *ma_bpf_node, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; + +/* +Notching Filter Node +*/ +ma_notch_node_config :: struct { + nodeConfig: ma_node_config; + notch: ma_notch_config; +} + +ma_notch_node_config_init :: (channels: ma_uint32, sampleRate: ma_uint32, q: float64, frequency: float64) -> ma_notch_node_config #foreign miniaudio; + +ma_notch_node :: struct { + baseNode: ma_node_base; + notch: ma_notch2; +} + +ma_notch_node_init :: (pNodeGraph: *ma_node_graph, pConfig: *ma_notch_node_config, pAllocationCallbacks: *ma_allocation_callbacks, pNode: *ma_notch_node) -> ma_result #foreign miniaudio; +ma_notch_node_reinit :: (pConfig: *ma_notch_config, pNode: *ma_notch_node) -> ma_result #foreign miniaudio; +ma_notch_node_uninit :: (pNode: *ma_notch_node, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; + +/* +Peaking Filter Node +*/ +ma_peak_node_config :: struct { + nodeConfig: ma_node_config; + peak: ma_peak_config; +} + +ma_peak_node_config_init :: (channels: ma_uint32, sampleRate: ma_uint32, gainDB: float64, q: float64, frequency: float64) -> ma_peak_node_config #foreign miniaudio; + +ma_peak_node :: struct { + baseNode: ma_node_base; + peak: ma_peak2; +} + +ma_peak_node_init :: (pNodeGraph: *ma_node_graph, pConfig: *ma_peak_node_config, pAllocationCallbacks: *ma_allocation_callbacks, pNode: *ma_peak_node) -> ma_result #foreign miniaudio; +ma_peak_node_reinit :: (pConfig: *ma_peak_config, pNode: *ma_peak_node) -> ma_result #foreign miniaudio; +ma_peak_node_uninit :: (pNode: *ma_peak_node, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; + +/* +Low Shelf Filter Node +*/ +ma_loshelf_node_config :: struct { + nodeConfig: ma_node_config; + loshelf: ma_loshelf_config; +} + +ma_loshelf_node_config_init :: (channels: ma_uint32, sampleRate: ma_uint32, gainDB: float64, q: float64, frequency: float64) -> ma_loshelf_node_config #foreign miniaudio; + +ma_loshelf_node :: struct { + baseNode: ma_node_base; + loshelf: ma_loshelf2; +} + +ma_loshelf_node_init :: (pNodeGraph: *ma_node_graph, pConfig: *ma_loshelf_node_config, pAllocationCallbacks: *ma_allocation_callbacks, pNode: *ma_loshelf_node) -> ma_result #foreign miniaudio; +ma_loshelf_node_reinit :: (pConfig: *ma_loshelf_config, pNode: *ma_loshelf_node) -> ma_result #foreign miniaudio; +ma_loshelf_node_uninit :: (pNode: *ma_loshelf_node, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; + +/* +High Shelf Filter Node +*/ +ma_hishelf_node_config :: struct { + nodeConfig: ma_node_config; + hishelf: ma_hishelf_config; +} + +ma_hishelf_node_config_init :: (channels: ma_uint32, sampleRate: ma_uint32, gainDB: float64, q: float64, frequency: float64) -> ma_hishelf_node_config #foreign miniaudio; + +ma_hishelf_node :: struct { + baseNode: ma_node_base; + hishelf: ma_hishelf2; +} + +ma_hishelf_node_init :: (pNodeGraph: *ma_node_graph, pConfig: *ma_hishelf_node_config, pAllocationCallbacks: *ma_allocation_callbacks, pNode: *ma_hishelf_node) -> ma_result #foreign miniaudio; +ma_hishelf_node_reinit :: (pConfig: *ma_hishelf_config, pNode: *ma_hishelf_node) -> ma_result #foreign miniaudio; +ma_hishelf_node_uninit :: (pNode: *ma_hishelf_node, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; + +ma_delay_node_config :: struct { + nodeConfig: ma_node_config; + delay: ma_delay_config; +} + +ma_delay_node_config_init :: (channels: ma_uint32, sampleRate: ma_uint32, delayInFrames: ma_uint32, decay: float) -> ma_delay_node_config #foreign miniaudio; + +ma_delay_node :: struct { + baseNode: ma_node_base; + delay: ma_delay; +} + +ma_delay_node_init :: (pNodeGraph: *ma_node_graph, pConfig: *ma_delay_node_config, pAllocationCallbacks: *ma_allocation_callbacks, pDelayNode: *ma_delay_node) -> ma_result #foreign miniaudio; +ma_delay_node_uninit :: (pDelayNode: *ma_delay_node, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; +ma_delay_node_set_wet :: (pDelayNode: *ma_delay_node, value: float) -> void #foreign miniaudio; +ma_delay_node_get_wet :: (pDelayNode: *ma_delay_node) -> float #foreign miniaudio; +ma_delay_node_set_dry :: (pDelayNode: *ma_delay_node, value: float) -> void #foreign miniaudio; +ma_delay_node_get_dry :: (pDelayNode: *ma_delay_node) -> float #foreign miniaudio; +ma_delay_node_set_decay :: (pDelayNode: *ma_delay_node, value: float) -> void #foreign miniaudio; +ma_delay_node_get_decay :: (pDelayNode: *ma_delay_node) -> float #foreign miniaudio; + +/* Sound flags. */ +ma_sound_flags :: enum s32 { + MA_SOUND_FLAG_STREAM :: 1; + MA_SOUND_FLAG_DECODE :: 2; + MA_SOUND_FLAG_ASYNC :: 4; + MA_SOUND_FLAG_WAIT_INIT :: 8; + MA_SOUND_FLAG_UNKNOWN_LENGTH :: 16; + + MA_SOUND_FLAG_NO_DEFAULT_ATTACHMENT :: 4096; + MA_SOUND_FLAG_NO_PITCH :: 8192; + MA_SOUND_FLAG_NO_SPATIALIZATION :: 16384; +} + +ma_engine_node_type :: enum s32 { + ma_engine_node_type_sound :: 0; + ma_engine_node_type_group :: 1; +} + +ma_engine_node_config :: struct { + pEngine: *ma_engine; + type: ma_engine_node_type; + channelsIn: ma_uint32; + channelsOut: ma_uint32; + sampleRate: ma_uint32; /* Only used when the type is set to ma_engine_node_type_sound. */ + volumeSmoothTimeInPCMFrames: ma_uint32; /* The number of frames to smooth over volume changes. Defaults to 0 in which case no smoothing is used. */ + monoExpansionMode: ma_mono_expansion_mode; + isPitchDisabled: ma_bool8; /* Pitching can be explicitly disabled with MA_SOUND_FLAG_NO_PITCH to optimize processing. */ + isSpatializationDisabled: ma_bool8; /* Spatialization can be explicitly disabled with MA_SOUND_FLAG_NO_SPATIALIZATION. */ + pinnedListenerIndex: ma_uint8; /* The index of the listener this node should always use for spatialization. If set to MA_LISTENER_INDEX_CLOSEST the engine will use the closest listener. */ +} + +ma_engine_node_config_init :: (pEngine: *ma_engine, type: ma_engine_node_type, flags: ma_uint32) -> ma_engine_node_config #foreign miniaudio; + +/* Base node object for both ma_sound and ma_sound_group. */ +ma_engine_node :: struct { + baseNode: ma_node_base; /* Must be the first member for compatiblity with the ma_node API. */ + pEngine: *ma_engine; /* A pointer to the engine. Set based on the value from the config. */ + sampleRate: ma_uint32; /* The sample rate of the input data. For sounds backed by a data source, this will be the data source's sample rate. Otherwise it'll be the engine's sample rate. */ + volumeSmoothTimeInPCMFrames: ma_uint32; + monoExpansionMode: ma_mono_expansion_mode; + fader: ma_fader; + resampler: ma_linear_resampler; /* For pitch shift. */ + spatializer: ma_spatializer; + panner: ma_panner; + volumeGainer: ma_gainer; /* This will only be used if volumeSmoothTimeInPCMFrames is > 0. */ + volume: ma_atomic_float; /* Defaults to 1. */ + pitch: float; + oldPitch: float; /* For determining whether or not the resampler needs to be updated to reflect the new pitch. The resampler will be updated on the mixing thread. */ + oldDopplerPitch: float; /* For determining whether or not the resampler needs to be updated to take a new doppler pitch into account. */ + isPitchDisabled: ma_bool32; /* When set to true, pitching will be disabled which will allow the resampler to be bypassed to save some computation. */ + isSpatializationDisabled: ma_bool32; /* Set to false by default. When set to false, will not have spatialisation applied. */ + pinnedListenerIndex: ma_uint32; /* The index of the listener this node should always use for spatialization. If set to MA_LISTENER_INDEX_CLOSEST the engine will use the closest listener. */ + + fadeSettings: struct { + volumeBeg: ma_atomic_float; + volumeEnd: ma_atomic_float; + fadeLengthInFrames: ma_atomic_uint64; /* <-- Defaults to (~(ma_uint64)0) which is used to indicate that no fade should be applied. */ + absoluteGlobalTimeInFrames: ma_atomic_uint64; /* <-- The time to start the fade. */ + }; + + /* Memory management. */ + _ownsHeap: ma_bool8; + _pHeap: *void; +} + +ma_engine_node_get_heap_size :: (pConfig: *ma_engine_node_config, pHeapSizeInBytes: *size_t) -> ma_result #foreign miniaudio; +ma_engine_node_init_preallocated :: (pConfig: *ma_engine_node_config, pHeap: *void, pEngineNode: *ma_engine_node) -> ma_result #foreign miniaudio; +ma_engine_node_init :: (pConfig: *ma_engine_node_config, pAllocationCallbacks: *ma_allocation_callbacks, pEngineNode: *ma_engine_node) -> ma_result #foreign miniaudio; +ma_engine_node_uninit :: (pEngineNode: *ma_engine_node, pAllocationCallbacks: *ma_allocation_callbacks) -> void #foreign miniaudio; + +/* Callback for when a sound reaches the end. */ +ma_sound_end_proc :: #type (pUserData: *void, pSound: *ma_sound) -> void #c_call; + +ma_sound_config :: struct { + pFilePath: *u8; /* Set this to load from the resource manager. */ + pFilePathW: *s16; /* Set this to load from the resource manager. */ + pDataSource: *ma_data_source; /* Set this to load from an existing data source. */ + pInitialAttachment: *ma_node; /* If set, the sound will be attached to an input of this node. This can be set to a ma_sound. If set to NULL, the sound will be attached directly to the endpoint unless MA_SOUND_FLAG_NO_DEFAULT_ATTACHMENT is set in `flags`. */ + initialAttachmentInputBusIndex: ma_uint32; /* The index of the input bus of pInitialAttachment to attach the sound to. */ + channelsIn: ma_uint32; /* Ignored if using a data source as input (the data source's channel count will be used always). Otherwise, setting to 0 will cause the engine's channel count to be used. */ + channelsOut: ma_uint32; /* Set this to 0 (default) to use the engine's channel count. Set to MA_SOUND_SOURCE_CHANNEL_COUNT to use the data source's channel count (only used if using a data source as input). */ + monoExpansionMode: ma_mono_expansion_mode; /* Controls how the mono channel should be expanded to other channels when spatialization is disabled on a sound. */ + flags: ma_uint32; /* A combination of MA_SOUND_FLAG_* flags. */ + volumeSmoothTimeInPCMFrames: ma_uint32; /* The number of frames to smooth over volume changes. Defaults to 0 in which case no smoothing is used. */ + initialSeekPointInPCMFrames: ma_uint64; /* Initializes the sound such that it's seeked to this location by default. */ + rangeBegInPCMFrames: ma_uint64; + rangeEndInPCMFrames: ma_uint64; + loopPointBegInPCMFrames: ma_uint64; + loopPointEndInPCMFrames: ma_uint64; + isLooping: ma_bool32; + endCallback: ma_sound_end_proc; /* Fired when the sound reaches the end. Will be fired from the audio thread. Do not restart, uninitialize or otherwise change the state of the sound from here. Instead fire an event or set a variable to indicate to a different thread to change the start of the sound. Will not be fired in response to a scheduled stop with ma_sound_set_stop_time_*(). */ + pEndCallbackUserData: *void; + + initNotifications: ma_resource_manager_pipeline_notifications; + + pDoneFence: *ma_fence; /* Deprecated. Use initNotifications instead. Released when the resource manager has finished decoding the entire sound. Not used with streams. */ +} + +ma_sound_config_init :: () -> ma_sound_config #foreign miniaudio; +ma_sound_config_init_2 :: (pEngine: *ma_engine) -> ma_sound_config #foreign miniaudio; + +ma_sound :: struct { + engineNode: ma_engine_node; /* Must be the first member for compatibility with the ma_node API. */ + pDataSource: *ma_data_source; + seekTarget: ma_uint64; /* The PCM frame index to seek to in the mixing thread. Set to (~(ma_uint64)0) to not perform any seeking. */ + atEnd: ma_bool32; + endCallback: ma_sound_end_proc; + pEndCallbackUserData: *void; + ownsDataSource: ma_bool8; + + pResourceManagerDataSource: *ma_resource_manager_data_source; +} + +ma_sound_inlined :: struct { + sound: ma_sound; + pNext: *ma_sound_inlined; + pPrev: *ma_sound_inlined; +} + +/* A sound group is just a sound. */ +ma_sound_group_config :: ma_sound_config; +ma_sound_group :: ma_sound; + +ma_sound_group_config_init :: () -> ma_sound_group_config #foreign miniaudio; +ma_sound_group_config_init_2 :: (pEngine: *ma_engine) -> ma_sound_group_config #foreign miniaudio; + +ma_engine_process_proc :: #type (pUserData: *void, pFramesOut: *float, frameCount: ma_uint64) -> void #c_call; + +ma_engine_config :: struct { + pResourceManager: *ma_resource_manager; /* Can be null in which case a resource manager will be created for you. */ + + pContext: *ma_context; + pDevice: *ma_device; /* If set, the caller is responsible for calling ma_engine_data_callback() in the device's data callback. */ + pPlaybackDeviceID: *ma_device_id; /* The ID of the playback device to use with the default listener. */ + dataCallback: ma_device_data_proc; /* Can be null. Can be used to provide a custom device data callback. */ + notificationCallback: ma_device_notification_proc; + + pLog: *ma_log; /* When set to NULL, will use the context's log. */ + listenerCount: ma_uint32; /* Must be between 1 and MA_ENGINE_MAX_LISTENERS. */ + channels: ma_uint32; /* The number of channels to use when mixing and spatializing. When set to 0, will use the native channel count of the device. */ + sampleRate: ma_uint32; /* The sample rate. When set to 0 will use the native channel count of the device. */ + periodSizeInFrames: ma_uint32; /* If set to something other than 0, updates will always be exactly this size. The underlying device may be a different size, but from the perspective of the mixer that won't matter.*/ + periodSizeInMilliseconds: ma_uint32; /* Used if periodSizeInFrames is unset. */ + gainSmoothTimeInFrames: ma_uint32; /* The number of frames to interpolate the gain of spatialized sounds across. If set to 0, will use gainSmoothTimeInMilliseconds. */ + gainSmoothTimeInMilliseconds: ma_uint32; /* When set to 0, gainSmoothTimeInFrames will be used. If both are set to 0, a default value will be used. */ + defaultVolumeSmoothTimeInPCMFrames: ma_uint32; /* Defaults to 0. Controls the default amount of smoothing to apply to volume changes to sounds. High values means more smoothing at the expense of high latency (will take longer to reach the new volume). */ + allocationCallbacks: ma_allocation_callbacks; + noAutoStart: ma_bool32; /* When set to true, requires an explicit call to ma_engine_start(). This is false by default, meaning the engine will be started automatically in ma_engine_init(). */ + noDevice: ma_bool32; /* When set to true, don't create a default device. ma_engine_read_pcm_frames() can be called manually to read data. */ + monoExpansionMode: ma_mono_expansion_mode; /* Controls how the mono channel should be expanded to other channels when spatialization is disabled on a sound. */ + pResourceManagerVFS: *ma_vfs; /* A pointer to a pre-allocated VFS object to use with the resource manager. This is ignored if pResourceManager is not NULL. */ + onProcess: ma_engine_process_proc; /* Fired at the end of each call to ma_engine_read_pcm_frames(). For engine's that manage their own internal device (the default configuration), this will be fired from the audio thread, and you do not need to call ma_engine_read_pcm_frames() manually in order to trigger this. */ + pProcessUserData: *void; /* User data that's passed into onProcess. */ +} + +ma_engine_config_init :: () -> ma_engine_config #foreign miniaudio; + +ma_engine :: struct { + nodeGraph: ma_node_graph; /* An engine is a node graph. It should be able to be plugged into any ma_node_graph API (with a cast) which means this must be the first member of this struct. */ + + pResourceManager: *ma_resource_manager; + + pDevice: *ma_device; /* Optionally set via the config, otherwise allocated by the engine in ma_engine_init(). */ + + pLog: *ma_log; + sampleRate: ma_uint32; + listenerCount: ma_uint32; + listeners: [4] ma_spatializer_listener; + allocationCallbacks: ma_allocation_callbacks; + ownsResourceManager: ma_bool8; + ownsDevice: ma_bool8; + inlinedSoundLock: ma_spinlock; /* For synchronizing access so the inlined sound list. */ + pInlinedSoundHead: *ma_sound_inlined; /* The first inlined sound. Inlined sounds are tracked in a linked list. */ + inlinedSoundCount: ma_uint32; /* The total number of allocated inlined sound objects. Used for debugging. */ + gainSmoothTimeInFrames: ma_uint32; /* The number of frames to interpolate the gain of spatialized sounds across. */ + defaultVolumeSmoothTimeInPCMFrames: ma_uint32; + monoExpansionMode: ma_mono_expansion_mode; + onProcess: ma_engine_process_proc; + pProcessUserData: *void; +} + +ma_engine_init :: (pConfig: *ma_engine_config, pEngine: *ma_engine) -> ma_result #foreign miniaudio; +ma_engine_uninit :: (pEngine: *ma_engine) -> void #foreign miniaudio; +ma_engine_read_pcm_frames :: (pEngine: *ma_engine, pFramesOut: *void, frameCount: ma_uint64, pFramesRead: *ma_uint64) -> ma_result #foreign miniaudio; +ma_engine_get_node_graph :: (pEngine: *ma_engine) -> *ma_node_graph #foreign miniaudio; + +ma_engine_get_resource_manager :: (pEngine: *ma_engine) -> *ma_resource_manager #foreign miniaudio; + +ma_engine_get_device :: (pEngine: *ma_engine) -> *ma_device #foreign miniaudio; +ma_engine_get_log :: (pEngine: *ma_engine) -> *ma_log #foreign miniaudio; +ma_engine_get_endpoint :: (pEngine: *ma_engine) -> *ma_node #foreign miniaudio; +ma_engine_get_time_in_pcm_frames :: (pEngine: *ma_engine) -> ma_uint64 #foreign miniaudio; +ma_engine_get_time_in_milliseconds :: (pEngine: *ma_engine) -> ma_uint64 #foreign miniaudio; +ma_engine_set_time_in_pcm_frames :: (pEngine: *ma_engine, globalTime: ma_uint64) -> ma_result #foreign miniaudio; +ma_engine_set_time_in_milliseconds :: (pEngine: *ma_engine, globalTime: ma_uint64) -> ma_result #foreign miniaudio; +ma_engine_get_time :: (pEngine: *ma_engine) -> ma_uint64 #foreign miniaudio; +ma_engine_set_time :: (pEngine: *ma_engine, globalTime: ma_uint64) -> ma_result #foreign miniaudio; +ma_engine_get_channels :: (pEngine: *ma_engine) -> ma_uint32 #foreign miniaudio; +ma_engine_get_sample_rate :: (pEngine: *ma_engine) -> ma_uint32 #foreign miniaudio; + +ma_engine_start :: (pEngine: *ma_engine) -> ma_result #foreign miniaudio; +ma_engine_stop :: (pEngine: *ma_engine) -> ma_result #foreign miniaudio; +ma_engine_set_volume :: (pEngine: *ma_engine, volume: float) -> ma_result #foreign miniaudio; +ma_engine_get_volume :: (pEngine: *ma_engine) -> float #foreign miniaudio; +ma_engine_set_gain_db :: (pEngine: *ma_engine, gainDB: float) -> ma_result #foreign miniaudio; +ma_engine_get_gain_db :: (pEngine: *ma_engine) -> float #foreign miniaudio; + +ma_engine_get_listener_count :: (pEngine: *ma_engine) -> ma_uint32 #foreign miniaudio; +ma_engine_find_closest_listener :: (pEngine: *ma_engine, absolutePosX: float, absolutePosY: float, absolutePosZ: float) -> ma_uint32 #foreign miniaudio; +ma_engine_listener_set_position :: (pEngine: *ma_engine, listenerIndex: ma_uint32, x: float, y: float, z: float) -> void #foreign miniaudio; +ma_engine_listener_get_position :: (pEngine: *ma_engine, listenerIndex: ma_uint32) -> ma_vec3f #foreign miniaudio; +ma_engine_listener_set_direction :: (pEngine: *ma_engine, listenerIndex: ma_uint32, x: float, y: float, z: float) -> void #foreign miniaudio; +ma_engine_listener_get_direction :: (pEngine: *ma_engine, listenerIndex: ma_uint32) -> ma_vec3f #foreign miniaudio; +ma_engine_listener_set_velocity :: (pEngine: *ma_engine, listenerIndex: ma_uint32, x: float, y: float, z: float) -> void #foreign miniaudio; +ma_engine_listener_get_velocity :: (pEngine: *ma_engine, listenerIndex: ma_uint32) -> ma_vec3f #foreign miniaudio; +ma_engine_listener_set_cone :: (pEngine: *ma_engine, listenerIndex: ma_uint32, innerAngleInRadians: float, outerAngleInRadians: float, outerGain: float) -> void #foreign miniaudio; +ma_engine_listener_get_cone :: (pEngine: *ma_engine, listenerIndex: ma_uint32, pInnerAngleInRadians: *float, pOuterAngleInRadians: *float, pOuterGain: *float) -> void #foreign miniaudio; +ma_engine_listener_set_world_up :: (pEngine: *ma_engine, listenerIndex: ma_uint32, x: float, y: float, z: float) -> void #foreign miniaudio; +ma_engine_listener_get_world_up :: (pEngine: *ma_engine, listenerIndex: ma_uint32) -> ma_vec3f #foreign miniaudio; +ma_engine_listener_set_enabled :: (pEngine: *ma_engine, listenerIndex: ma_uint32, isEnabled: ma_bool32) -> void #foreign miniaudio; +ma_engine_listener_is_enabled :: (pEngine: *ma_engine, listenerIndex: ma_uint32) -> ma_bool32 #foreign miniaudio; + +ma_engine_play_sound_ex :: (pEngine: *ma_engine, pFilePath: *u8, pNode: *ma_node, nodeInputBusIndex: ma_uint32) -> ma_result #foreign miniaudio; +ma_engine_play_sound :: (pEngine: *ma_engine, pFilePath: *u8, pGroup: *ma_sound_group) -> ma_result #foreign miniaudio; + +ma_sound_init_from_file :: (pEngine: *ma_engine, pFilePath: *u8, flags: ma_uint32, pGroup: *ma_sound_group, pDoneFence: *ma_fence, pSound: *ma_sound) -> ma_result #foreign miniaudio; +ma_sound_init_from_file_w :: (pEngine: *ma_engine, pFilePath: *s16, flags: ma_uint32, pGroup: *ma_sound_group, pDoneFence: *ma_fence, pSound: *ma_sound) -> ma_result #foreign miniaudio; +ma_sound_init_copy :: (pEngine: *ma_engine, pExistingSound: *ma_sound, flags: ma_uint32, pGroup: *ma_sound_group, pSound: *ma_sound) -> ma_result #foreign miniaudio; + +ma_sound_init_from_data_source :: (pEngine: *ma_engine, pDataSource: *ma_data_source, flags: ma_uint32, pGroup: *ma_sound_group, pSound: *ma_sound) -> ma_result #foreign miniaudio; +ma_sound_init_ex :: (pEngine: *ma_engine, pConfig: *ma_sound_config, pSound: *ma_sound) -> ma_result #foreign miniaudio; +ma_sound_uninit :: (pSound: *ma_sound) -> void #foreign miniaudio; +ma_sound_get_engine :: (pSound: *ma_sound) -> *ma_engine #foreign miniaudio; +ma_sound_get_data_source :: (pSound: *ma_sound) -> *ma_data_source #foreign miniaudio; +ma_sound_start :: (pSound: *ma_sound) -> ma_result #foreign miniaudio; +ma_sound_stop :: (pSound: *ma_sound) -> ma_result #foreign miniaudio; +ma_sound_stop_with_fade_in_pcm_frames :: (pSound: *ma_sound, fadeLengthInFrames: ma_uint64) -> ma_result #foreign miniaudio; +ma_sound_stop_with_fade_in_milliseconds :: (pSound: *ma_sound, fadeLengthInFrames: ma_uint64) -> ma_result #foreign miniaudio; +ma_sound_set_volume :: (pSound: *ma_sound, volume: float) -> void #foreign miniaudio; +ma_sound_get_volume :: (pSound: *ma_sound) -> float #foreign miniaudio; +ma_sound_set_pan :: (pSound: *ma_sound, pan: float) -> void #foreign miniaudio; +ma_sound_get_pan :: (pSound: *ma_sound) -> float #foreign miniaudio; +ma_sound_set_pan_mode :: (pSound: *ma_sound, panMode: ma_pan_mode) -> void #foreign miniaudio; +ma_sound_get_pan_mode :: (pSound: *ma_sound) -> ma_pan_mode #foreign miniaudio; +ma_sound_set_pitch :: (pSound: *ma_sound, pitch: float) -> void #foreign miniaudio; +ma_sound_get_pitch :: (pSound: *ma_sound) -> float #foreign miniaudio; +ma_sound_set_spatialization_enabled :: (pSound: *ma_sound, enabled: ma_bool32) -> void #foreign miniaudio; +ma_sound_is_spatialization_enabled :: (pSound: *ma_sound) -> ma_bool32 #foreign miniaudio; +ma_sound_set_pinned_listener_index :: (pSound: *ma_sound, listenerIndex: ma_uint32) -> void #foreign miniaudio; +ma_sound_get_pinned_listener_index :: (pSound: *ma_sound) -> ma_uint32 #foreign miniaudio; +ma_sound_get_listener_index :: (pSound: *ma_sound) -> ma_uint32 #foreign miniaudio; +ma_sound_get_direction_to_listener :: (pSound: *ma_sound) -> ma_vec3f #foreign miniaudio; +ma_sound_set_position :: (pSound: *ma_sound, x: float, y: float, z: float) -> void #foreign miniaudio; +ma_sound_get_position :: (pSound: *ma_sound) -> ma_vec3f #foreign miniaudio; +ma_sound_set_direction :: (pSound: *ma_sound, x: float, y: float, z: float) -> void #foreign miniaudio; +ma_sound_get_direction :: (pSound: *ma_sound) -> ma_vec3f #foreign miniaudio; +ma_sound_set_velocity :: (pSound: *ma_sound, x: float, y: float, z: float) -> void #foreign miniaudio; +ma_sound_get_velocity :: (pSound: *ma_sound) -> ma_vec3f #foreign miniaudio; +ma_sound_set_attenuation_model :: (pSound: *ma_sound, attenuationModel: ma_attenuation_model) -> void #foreign miniaudio; +ma_sound_get_attenuation_model :: (pSound: *ma_sound) -> ma_attenuation_model #foreign miniaudio; +ma_sound_set_positioning :: (pSound: *ma_sound, positioning: ma_positioning) -> void #foreign miniaudio; +ma_sound_get_positioning :: (pSound: *ma_sound) -> ma_positioning #foreign miniaudio; +ma_sound_set_rolloff :: (pSound: *ma_sound, rolloff: float) -> void #foreign miniaudio; +ma_sound_get_rolloff :: (pSound: *ma_sound) -> float #foreign miniaudio; +ma_sound_set_min_gain :: (pSound: *ma_sound, minGain: float) -> void #foreign miniaudio; +ma_sound_get_min_gain :: (pSound: *ma_sound) -> float #foreign miniaudio; +ma_sound_set_max_gain :: (pSound: *ma_sound, maxGain: float) -> void #foreign miniaudio; +ma_sound_get_max_gain :: (pSound: *ma_sound) -> float #foreign miniaudio; +ma_sound_set_min_distance :: (pSound: *ma_sound, minDistance: float) -> void #foreign miniaudio; +ma_sound_get_min_distance :: (pSound: *ma_sound) -> float #foreign miniaudio; +ma_sound_set_max_distance :: (pSound: *ma_sound, maxDistance: float) -> void #foreign miniaudio; +ma_sound_get_max_distance :: (pSound: *ma_sound) -> float #foreign miniaudio; +ma_sound_set_cone :: (pSound: *ma_sound, innerAngleInRadians: float, outerAngleInRadians: float, outerGain: float) -> void #foreign miniaudio; +ma_sound_get_cone :: (pSound: *ma_sound, pInnerAngleInRadians: *float, pOuterAngleInRadians: *float, pOuterGain: *float) -> void #foreign miniaudio; +ma_sound_set_doppler_factor :: (pSound: *ma_sound, dopplerFactor: float) -> void #foreign miniaudio; +ma_sound_get_doppler_factor :: (pSound: *ma_sound) -> float #foreign miniaudio; +ma_sound_set_directional_attenuation_factor :: (pSound: *ma_sound, directionalAttenuationFactor: float) -> void #foreign miniaudio; +ma_sound_get_directional_attenuation_factor :: (pSound: *ma_sound) -> float #foreign miniaudio; +ma_sound_set_fade_in_pcm_frames :: (pSound: *ma_sound, volumeBeg: float, volumeEnd: float, fadeLengthInFrames: ma_uint64) -> void #foreign miniaudio; +ma_sound_set_fade_in_milliseconds :: (pSound: *ma_sound, volumeBeg: float, volumeEnd: float, fadeLengthInMilliseconds: ma_uint64) -> void #foreign miniaudio; +ma_sound_set_fade_start_in_pcm_frames :: (pSound: *ma_sound, volumeBeg: float, volumeEnd: float, fadeLengthInFrames: ma_uint64, absoluteGlobalTimeInFrames: ma_uint64) -> void #foreign miniaudio; +ma_sound_set_fade_start_in_milliseconds :: (pSound: *ma_sound, volumeBeg: float, volumeEnd: float, fadeLengthInMilliseconds: ma_uint64, absoluteGlobalTimeInMilliseconds: ma_uint64) -> void #foreign miniaudio; +ma_sound_get_current_fade_volume :: (pSound: *ma_sound) -> float #foreign miniaudio; +ma_sound_set_start_time_in_pcm_frames :: (pSound: *ma_sound, absoluteGlobalTimeInFrames: ma_uint64) -> void #foreign miniaudio; +ma_sound_set_start_time_in_milliseconds :: (pSound: *ma_sound, absoluteGlobalTimeInMilliseconds: ma_uint64) -> void #foreign miniaudio; +ma_sound_set_stop_time_in_pcm_frames :: (pSound: *ma_sound, absoluteGlobalTimeInFrames: ma_uint64) -> void #foreign miniaudio; +ma_sound_set_stop_time_in_milliseconds :: (pSound: *ma_sound, absoluteGlobalTimeInMilliseconds: ma_uint64) -> void #foreign miniaudio; +ma_sound_set_stop_time_with_fade_in_pcm_frames :: (pSound: *ma_sound, stopAbsoluteGlobalTimeInFrames: ma_uint64, fadeLengthInFrames: ma_uint64) -> void #foreign miniaudio; +ma_sound_set_stop_time_with_fade_in_milliseconds :: (pSound: *ma_sound, stopAbsoluteGlobalTimeInMilliseconds: ma_uint64, fadeLengthInMilliseconds: ma_uint64) -> void #foreign miniaudio; +ma_sound_is_playing :: (pSound: *ma_sound) -> ma_bool32 #foreign miniaudio; +ma_sound_get_time_in_pcm_frames :: (pSound: *ma_sound) -> ma_uint64 #foreign miniaudio; +ma_sound_get_time_in_milliseconds :: (pSound: *ma_sound) -> ma_uint64 #foreign miniaudio; +ma_sound_set_looping :: (pSound: *ma_sound, isLooping: ma_bool32) -> void #foreign miniaudio; +ma_sound_is_looping :: (pSound: *ma_sound) -> ma_bool32 #foreign miniaudio; +ma_sound_at_end :: (pSound: *ma_sound) -> ma_bool32 #foreign miniaudio; +ma_sound_seek_to_pcm_frame :: (pSound: *ma_sound, frameIndex: ma_uint64) -> ma_result #foreign miniaudio; +ma_sound_get_data_format :: (pSound: *ma_sound, pFormat: *ma_format, pChannels: *ma_uint32, pSampleRate: *ma_uint32, pChannelMap: *ma_channel, channelMapCap: size_t) -> ma_result #foreign miniaudio; +ma_sound_get_cursor_in_pcm_frames :: (pSound: *ma_sound, pCursor: *ma_uint64) -> ma_result #foreign miniaudio; +ma_sound_get_length_in_pcm_frames :: (pSound: *ma_sound, pLength: *ma_uint64) -> ma_result #foreign miniaudio; +ma_sound_get_cursor_in_seconds :: (pSound: *ma_sound, pCursor: *float) -> ma_result #foreign miniaudio; +ma_sound_get_length_in_seconds :: (pSound: *ma_sound, pLength: *float) -> ma_result #foreign miniaudio; +ma_sound_set_end_callback :: (pSound: *ma_sound, callback: ma_sound_end_proc, pUserData: *void) -> ma_result #foreign miniaudio; + +ma_sound_group_init :: (pEngine: *ma_engine, flags: ma_uint32, pParentGroup: *ma_sound_group, pGroup: *ma_sound_group) -> ma_result #foreign miniaudio; +ma_sound_group_init_ex :: (pEngine: *ma_engine, pConfig: *ma_sound_group_config, pGroup: *ma_sound_group) -> ma_result #foreign miniaudio; +ma_sound_group_uninit :: (pGroup: *ma_sound_group) -> void #foreign miniaudio; +ma_sound_group_get_engine :: (pGroup: *ma_sound_group) -> *ma_engine #foreign miniaudio; +ma_sound_group_start :: (pGroup: *ma_sound_group) -> ma_result #foreign miniaudio; +ma_sound_group_stop :: (pGroup: *ma_sound_group) -> ma_result #foreign miniaudio; +ma_sound_group_set_volume :: (pGroup: *ma_sound_group, volume: float) -> void #foreign miniaudio; +ma_sound_group_get_volume :: (pGroup: *ma_sound_group) -> float #foreign miniaudio; +ma_sound_group_set_pan :: (pGroup: *ma_sound_group, pan: float) -> void #foreign miniaudio; +ma_sound_group_get_pan :: (pGroup: *ma_sound_group) -> float #foreign miniaudio; +ma_sound_group_set_pan_mode :: (pGroup: *ma_sound_group, panMode: ma_pan_mode) -> void #foreign miniaudio; +ma_sound_group_get_pan_mode :: (pGroup: *ma_sound_group) -> ma_pan_mode #foreign miniaudio; +ma_sound_group_set_pitch :: (pGroup: *ma_sound_group, pitch: float) -> void #foreign miniaudio; +ma_sound_group_get_pitch :: (pGroup: *ma_sound_group) -> float #foreign miniaudio; +ma_sound_group_set_spatialization_enabled :: (pGroup: *ma_sound_group, enabled: ma_bool32) -> void #foreign miniaudio; +ma_sound_group_is_spatialization_enabled :: (pGroup: *ma_sound_group) -> ma_bool32 #foreign miniaudio; +ma_sound_group_set_pinned_listener_index :: (pGroup: *ma_sound_group, listenerIndex: ma_uint32) -> void #foreign miniaudio; +ma_sound_group_get_pinned_listener_index :: (pGroup: *ma_sound_group) -> ma_uint32 #foreign miniaudio; +ma_sound_group_get_listener_index :: (pGroup: *ma_sound_group) -> ma_uint32 #foreign miniaudio; +ma_sound_group_get_direction_to_listener :: (pGroup: *ma_sound_group) -> ma_vec3f #foreign miniaudio; +ma_sound_group_set_position :: (pGroup: *ma_sound_group, x: float, y: float, z: float) -> void #foreign miniaudio; +ma_sound_group_get_position :: (pGroup: *ma_sound_group) -> ma_vec3f #foreign miniaudio; +ma_sound_group_set_direction :: (pGroup: *ma_sound_group, x: float, y: float, z: float) -> void #foreign miniaudio; +ma_sound_group_get_direction :: (pGroup: *ma_sound_group) -> ma_vec3f #foreign miniaudio; +ma_sound_group_set_velocity :: (pGroup: *ma_sound_group, x: float, y: float, z: float) -> void #foreign miniaudio; +ma_sound_group_get_velocity :: (pGroup: *ma_sound_group) -> ma_vec3f #foreign miniaudio; +ma_sound_group_set_attenuation_model :: (pGroup: *ma_sound_group, attenuationModel: ma_attenuation_model) -> void #foreign miniaudio; +ma_sound_group_get_attenuation_model :: (pGroup: *ma_sound_group) -> ma_attenuation_model #foreign miniaudio; +ma_sound_group_set_positioning :: (pGroup: *ma_sound_group, positioning: ma_positioning) -> void #foreign miniaudio; +ma_sound_group_get_positioning :: (pGroup: *ma_sound_group) -> ma_positioning #foreign miniaudio; +ma_sound_group_set_rolloff :: (pGroup: *ma_sound_group, rolloff: float) -> void #foreign miniaudio; +ma_sound_group_get_rolloff :: (pGroup: *ma_sound_group) -> float #foreign miniaudio; +ma_sound_group_set_min_gain :: (pGroup: *ma_sound_group, minGain: float) -> void #foreign miniaudio; +ma_sound_group_get_min_gain :: (pGroup: *ma_sound_group) -> float #foreign miniaudio; +ma_sound_group_set_max_gain :: (pGroup: *ma_sound_group, maxGain: float) -> void #foreign miniaudio; +ma_sound_group_get_max_gain :: (pGroup: *ma_sound_group) -> float #foreign miniaudio; +ma_sound_group_set_min_distance :: (pGroup: *ma_sound_group, minDistance: float) -> void #foreign miniaudio; +ma_sound_group_get_min_distance :: (pGroup: *ma_sound_group) -> float #foreign miniaudio; +ma_sound_group_set_max_distance :: (pGroup: *ma_sound_group, maxDistance: float) -> void #foreign miniaudio; +ma_sound_group_get_max_distance :: (pGroup: *ma_sound_group) -> float #foreign miniaudio; +ma_sound_group_set_cone :: (pGroup: *ma_sound_group, innerAngleInRadians: float, outerAngleInRadians: float, outerGain: float) -> void #foreign miniaudio; +ma_sound_group_get_cone :: (pGroup: *ma_sound_group, pInnerAngleInRadians: *float, pOuterAngleInRadians: *float, pOuterGain: *float) -> void #foreign miniaudio; +ma_sound_group_set_doppler_factor :: (pGroup: *ma_sound_group, dopplerFactor: float) -> void #foreign miniaudio; +ma_sound_group_get_doppler_factor :: (pGroup: *ma_sound_group) -> float #foreign miniaudio; +ma_sound_group_set_directional_attenuation_factor :: (pGroup: *ma_sound_group, directionalAttenuationFactor: float) -> void #foreign miniaudio; +ma_sound_group_get_directional_attenuation_factor :: (pGroup: *ma_sound_group) -> float #foreign miniaudio; +ma_sound_group_set_fade_in_pcm_frames :: (pGroup: *ma_sound_group, volumeBeg: float, volumeEnd: float, fadeLengthInFrames: ma_uint64) -> void #foreign miniaudio; +ma_sound_group_set_fade_in_milliseconds :: (pGroup: *ma_sound_group, volumeBeg: float, volumeEnd: float, fadeLengthInMilliseconds: ma_uint64) -> void #foreign miniaudio; +ma_sound_group_get_current_fade_volume :: (pGroup: *ma_sound_group) -> float #foreign miniaudio; +ma_sound_group_set_start_time_in_pcm_frames :: (pGroup: *ma_sound_group, absoluteGlobalTimeInFrames: ma_uint64) -> void #foreign miniaudio; +ma_sound_group_set_start_time_in_milliseconds :: (pGroup: *ma_sound_group, absoluteGlobalTimeInMilliseconds: ma_uint64) -> void #foreign miniaudio; +ma_sound_group_set_stop_time_in_pcm_frames :: (pGroup: *ma_sound_group, absoluteGlobalTimeInFrames: ma_uint64) -> void #foreign miniaudio; +ma_sound_group_set_stop_time_in_milliseconds :: (pGroup: *ma_sound_group, absoluteGlobalTimeInMilliseconds: ma_uint64) -> void #foreign miniaudio; +ma_sound_group_is_playing :: (pGroup: *ma_sound_group) -> ma_bool32 #foreign miniaudio; +ma_sound_group_get_time_in_pcm_frames :: (pGroup: *ma_sound_group) -> ma_uint64 #foreign miniaudio; + +#scope_file + +#import "Basic"; // For assert + +miniaudio :: #library,no_dll "windows/miniaudio"; + +#run { + { + instance: ma_allocation_callbacks; + assert(((cast(*void)(*instance.pUserData)) - cast(*void)(*instance)) == 0, "ma_allocation_callbacks.pUserData has unexpected offset % instead of 0", ((cast(*void)(*instance.pUserData)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_allocation_callbacks.pUserData)) == 8, "ma_allocation_callbacks.pUserData has unexpected size % instead of 8", size_of(type_of(ma_allocation_callbacks.pUserData))); + assert(((cast(*void)(*instance.onMalloc)) - cast(*void)(*instance)) == 8, "ma_allocation_callbacks.onMalloc has unexpected offset % instead of 8", ((cast(*void)(*instance.onMalloc)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_allocation_callbacks.onMalloc)) == 8, "ma_allocation_callbacks.onMalloc has unexpected size % instead of 8", size_of(type_of(ma_allocation_callbacks.onMalloc))); + assert(((cast(*void)(*instance.onRealloc)) - cast(*void)(*instance)) == 16, "ma_allocation_callbacks.onRealloc has unexpected offset % instead of 16", ((cast(*void)(*instance.onRealloc)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_allocation_callbacks.onRealloc)) == 8, "ma_allocation_callbacks.onRealloc has unexpected size % instead of 8", size_of(type_of(ma_allocation_callbacks.onRealloc))); + assert(((cast(*void)(*instance.onFree)) - cast(*void)(*instance)) == 24, "ma_allocation_callbacks.onFree has unexpected offset % instead of 24", ((cast(*void)(*instance.onFree)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_allocation_callbacks.onFree)) == 8, "ma_allocation_callbacks.onFree has unexpected size % instead of 8", size_of(type_of(ma_allocation_callbacks.onFree))); + assert(size_of(ma_allocation_callbacks) == 32, "ma_allocation_callbacks has size % instead of 32", size_of(ma_allocation_callbacks)); + } + + { + instance: ma_lcg; + assert(((cast(*void)(*instance.state)) - cast(*void)(*instance)) == 0, "ma_lcg.state has unexpected offset % instead of 0", ((cast(*void)(*instance.state)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lcg.state)) == 4, "ma_lcg.state has unexpected size % instead of 4", size_of(type_of(ma_lcg.state))); + assert(size_of(ma_lcg) == 4, "ma_lcg has size % instead of 4", size_of(ma_lcg)); + } + + { + instance: ma_atomic_uint32; + assert(((cast(*void)(*instance.value)) - cast(*void)(*instance)) == 0, "ma_atomic_uint32.value has unexpected offset % instead of 0", ((cast(*void)(*instance.value)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_atomic_uint32.value)) == 4, "ma_atomic_uint32.value has unexpected size % instead of 4", size_of(type_of(ma_atomic_uint32.value))); + assert(size_of(ma_atomic_uint32) == 4, "ma_atomic_uint32 has size % instead of 4", size_of(ma_atomic_uint32)); + } + + { + instance: ma_atomic_int32; + assert(((cast(*void)(*instance.value)) - cast(*void)(*instance)) == 0, "ma_atomic_int32.value has unexpected offset % instead of 0", ((cast(*void)(*instance.value)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_atomic_int32.value)) == 4, "ma_atomic_int32.value has unexpected size % instead of 4", size_of(type_of(ma_atomic_int32.value))); + assert(size_of(ma_atomic_int32) == 4, "ma_atomic_int32 has size % instead of 4", size_of(ma_atomic_int32)); + } + + { + instance: ma_atomic_uint64; + assert(((cast(*void)(*instance.value)) - cast(*void)(*instance)) == 0, "ma_atomic_uint64.value has unexpected offset % instead of 0", ((cast(*void)(*instance.value)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_atomic_uint64.value)) == 8, "ma_atomic_uint64.value has unexpected size % instead of 8", size_of(type_of(ma_atomic_uint64.value))); + assert(size_of(ma_atomic_uint64) == 8, "ma_atomic_uint64 has size % instead of 8", size_of(ma_atomic_uint64)); + } + + { + instance: ma_atomic_float; + assert(((cast(*void)(*instance.value)) - cast(*void)(*instance)) == 0, "ma_atomic_float.value has unexpected offset % instead of 0", ((cast(*void)(*instance.value)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_atomic_float.value)) == 4, "ma_atomic_float.value has unexpected size % instead of 4", size_of(type_of(ma_atomic_float.value))); + assert(size_of(ma_atomic_float) == 4, "ma_atomic_float has size % instead of 4", size_of(ma_atomic_float)); + } + + { + instance: ma_atomic_bool32; + assert(((cast(*void)(*instance.value)) - cast(*void)(*instance)) == 0, "ma_atomic_bool32.value has unexpected offset % instead of 0", ((cast(*void)(*instance.value)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_atomic_bool32.value)) == 4, "ma_atomic_bool32.value has unexpected size % instead of 4", size_of(type_of(ma_atomic_bool32.value))); + assert(size_of(ma_atomic_bool32) == 4, "ma_atomic_bool32 has size % instead of 4", size_of(ma_atomic_bool32)); + } + + { + instance: ma_log_callback; + assert(((cast(*void)(*instance.onLog)) - cast(*void)(*instance)) == 0, "ma_log_callback.onLog has unexpected offset % instead of 0", ((cast(*void)(*instance.onLog)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_log_callback.onLog)) == 8, "ma_log_callback.onLog has unexpected size % instead of 8", size_of(type_of(ma_log_callback.onLog))); + assert(((cast(*void)(*instance.pUserData)) - cast(*void)(*instance)) == 8, "ma_log_callback.pUserData has unexpected offset % instead of 8", ((cast(*void)(*instance.pUserData)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_log_callback.pUserData)) == 8, "ma_log_callback.pUserData has unexpected size % instead of 8", size_of(type_of(ma_log_callback.pUserData))); + assert(size_of(ma_log_callback) == 16, "ma_log_callback has size % instead of 16", size_of(ma_log_callback)); + } + + { + instance: ma_log; + assert(((cast(*void)(*instance.callbacks)) - cast(*void)(*instance)) == 0, "ma_log.callbacks has unexpected offset % instead of 0", ((cast(*void)(*instance.callbacks)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_log.callbacks)) == 64, "ma_log.callbacks has unexpected size % instead of 64", size_of(type_of(ma_log.callbacks))); + assert(((cast(*void)(*instance.callbackCount)) - cast(*void)(*instance)) == 64, "ma_log.callbackCount has unexpected offset % instead of 64", ((cast(*void)(*instance.callbackCount)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_log.callbackCount)) == 4, "ma_log.callbackCount has unexpected size % instead of 4", size_of(type_of(ma_log.callbackCount))); + assert(((cast(*void)(*instance.allocationCallbacks)) - cast(*void)(*instance)) == 72, "ma_log.allocationCallbacks has unexpected offset % instead of 72", ((cast(*void)(*instance.allocationCallbacks)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_log.allocationCallbacks)) == 32, "ma_log.allocationCallbacks has unexpected size % instead of 32", size_of(type_of(ma_log.allocationCallbacks))); + assert(((cast(*void)(*instance.lock)) - cast(*void)(*instance)) == 104, "ma_log.lock has unexpected offset % instead of 104", ((cast(*void)(*instance.lock)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_log.lock)) == 8, "ma_log.lock has unexpected size % instead of 8", size_of(type_of(ma_log.lock))); + assert(size_of(ma_log) == 112, "ma_log has size % instead of 112", size_of(ma_log)); + } + + { + instance: ma_biquad_coefficient; + assert(((cast(*void)(*instance.f32)) - cast(*void)(*instance)) == 0, "ma_biquad_coefficient.f32 has unexpected offset % instead of 0", ((cast(*void)(*instance.f32)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_biquad_coefficient.f32)) == 4, "ma_biquad_coefficient.f32 has unexpected size % instead of 4", size_of(type_of(ma_biquad_coefficient.f32))); + assert(((cast(*void)(*instance._s32)) - cast(*void)(*instance)) == 0, "ma_biquad_coefficient._s32 has unexpected offset % instead of 0", ((cast(*void)(*instance._s32)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_biquad_coefficient._s32)) == 4, "ma_biquad_coefficient._s32 has unexpected size % instead of 4", size_of(type_of(ma_biquad_coefficient._s32))); + assert(size_of(ma_biquad_coefficient) == 4, "ma_biquad_coefficient has size % instead of 4", size_of(ma_biquad_coefficient)); + } + + { + instance: ma_biquad_config; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_biquad_config.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_biquad_config.format)) == 4, "ma_biquad_config.format has unexpected size % instead of 4", size_of(type_of(ma_biquad_config.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_biquad_config.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_biquad_config.channels)) == 4, "ma_biquad_config.channels has unexpected size % instead of 4", size_of(type_of(ma_biquad_config.channels))); + assert(((cast(*void)(*instance.b0)) - cast(*void)(*instance)) == 8, "ma_biquad_config.b0 has unexpected offset % instead of 8", ((cast(*void)(*instance.b0)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_biquad_config.b0)) == 8, "ma_biquad_config.b0 has unexpected size % instead of 8", size_of(type_of(ma_biquad_config.b0))); + assert(((cast(*void)(*instance.b1)) - cast(*void)(*instance)) == 16, "ma_biquad_config.b1 has unexpected offset % instead of 16", ((cast(*void)(*instance.b1)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_biquad_config.b1)) == 8, "ma_biquad_config.b1 has unexpected size % instead of 8", size_of(type_of(ma_biquad_config.b1))); + assert(((cast(*void)(*instance.b2)) - cast(*void)(*instance)) == 24, "ma_biquad_config.b2 has unexpected offset % instead of 24", ((cast(*void)(*instance.b2)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_biquad_config.b2)) == 8, "ma_biquad_config.b2 has unexpected size % instead of 8", size_of(type_of(ma_biquad_config.b2))); + assert(((cast(*void)(*instance.a0)) - cast(*void)(*instance)) == 32, "ma_biquad_config.a0 has unexpected offset % instead of 32", ((cast(*void)(*instance.a0)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_biquad_config.a0)) == 8, "ma_biquad_config.a0 has unexpected size % instead of 8", size_of(type_of(ma_biquad_config.a0))); + assert(((cast(*void)(*instance.a1)) - cast(*void)(*instance)) == 40, "ma_biquad_config.a1 has unexpected offset % instead of 40", ((cast(*void)(*instance.a1)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_biquad_config.a1)) == 8, "ma_biquad_config.a1 has unexpected size % instead of 8", size_of(type_of(ma_biquad_config.a1))); + assert(((cast(*void)(*instance.a2)) - cast(*void)(*instance)) == 48, "ma_biquad_config.a2 has unexpected offset % instead of 48", ((cast(*void)(*instance.a2)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_biquad_config.a2)) == 8, "ma_biquad_config.a2 has unexpected size % instead of 8", size_of(type_of(ma_biquad_config.a2))); + assert(size_of(ma_biquad_config) == 56, "ma_biquad_config has size % instead of 56", size_of(ma_biquad_config)); + } + + { + instance: ma_biquad; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_biquad.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_biquad.format)) == 4, "ma_biquad.format has unexpected size % instead of 4", size_of(type_of(ma_biquad.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_biquad.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_biquad.channels)) == 4, "ma_biquad.channels has unexpected size % instead of 4", size_of(type_of(ma_biquad.channels))); + assert(((cast(*void)(*instance.b0)) - cast(*void)(*instance)) == 8, "ma_biquad.b0 has unexpected offset % instead of 8", ((cast(*void)(*instance.b0)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_biquad.b0)) == 4, "ma_biquad.b0 has unexpected size % instead of 4", size_of(type_of(ma_biquad.b0))); + assert(((cast(*void)(*instance.b1)) - cast(*void)(*instance)) == 12, "ma_biquad.b1 has unexpected offset % instead of 12", ((cast(*void)(*instance.b1)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_biquad.b1)) == 4, "ma_biquad.b1 has unexpected size % instead of 4", size_of(type_of(ma_biquad.b1))); + assert(((cast(*void)(*instance.b2)) - cast(*void)(*instance)) == 16, "ma_biquad.b2 has unexpected offset % instead of 16", ((cast(*void)(*instance.b2)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_biquad.b2)) == 4, "ma_biquad.b2 has unexpected size % instead of 4", size_of(type_of(ma_biquad.b2))); + assert(((cast(*void)(*instance.a1)) - cast(*void)(*instance)) == 20, "ma_biquad.a1 has unexpected offset % instead of 20", ((cast(*void)(*instance.a1)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_biquad.a1)) == 4, "ma_biquad.a1 has unexpected size % instead of 4", size_of(type_of(ma_biquad.a1))); + assert(((cast(*void)(*instance.a2)) - cast(*void)(*instance)) == 24, "ma_biquad.a2 has unexpected offset % instead of 24", ((cast(*void)(*instance.a2)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_biquad.a2)) == 4, "ma_biquad.a2 has unexpected size % instead of 4", size_of(type_of(ma_biquad.a2))); + assert(((cast(*void)(*instance.pR1)) - cast(*void)(*instance)) == 32, "ma_biquad.pR1 has unexpected offset % instead of 32", ((cast(*void)(*instance.pR1)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_biquad.pR1)) == 8, "ma_biquad.pR1 has unexpected size % instead of 8", size_of(type_of(ma_biquad.pR1))); + assert(((cast(*void)(*instance.pR2)) - cast(*void)(*instance)) == 40, "ma_biquad.pR2 has unexpected offset % instead of 40", ((cast(*void)(*instance.pR2)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_biquad.pR2)) == 8, "ma_biquad.pR2 has unexpected size % instead of 8", size_of(type_of(ma_biquad.pR2))); + assert(((cast(*void)(*instance._pHeap)) - cast(*void)(*instance)) == 48, "ma_biquad._pHeap has unexpected offset % instead of 48", ((cast(*void)(*instance._pHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_biquad._pHeap)) == 8, "ma_biquad._pHeap has unexpected size % instead of 8", size_of(type_of(ma_biquad._pHeap))); + assert(((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance)) == 56, "ma_biquad._ownsHeap has unexpected offset % instead of 56", ((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_biquad._ownsHeap)) == 4, "ma_biquad._ownsHeap has unexpected size % instead of 4", size_of(type_of(ma_biquad._ownsHeap))); + assert(size_of(ma_biquad) == 64, "ma_biquad has size % instead of 64", size_of(ma_biquad)); + } + + { + instance: ma_lpf1_config; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_lpf1_config.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf1_config.format)) == 4, "ma_lpf1_config.format has unexpected size % instead of 4", size_of(type_of(ma_lpf1_config.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_lpf1_config.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf1_config.channels)) == 4, "ma_lpf1_config.channels has unexpected size % instead of 4", size_of(type_of(ma_lpf1_config.channels))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 8, "ma_lpf1_config.sampleRate has unexpected offset % instead of 8", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf1_config.sampleRate)) == 4, "ma_lpf1_config.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_lpf1_config.sampleRate))); + assert(((cast(*void)(*instance.cutoffFrequency)) - cast(*void)(*instance)) == 16, "ma_lpf1_config.cutoffFrequency has unexpected offset % instead of 16", ((cast(*void)(*instance.cutoffFrequency)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf1_config.cutoffFrequency)) == 8, "ma_lpf1_config.cutoffFrequency has unexpected size % instead of 8", size_of(type_of(ma_lpf1_config.cutoffFrequency))); + assert(((cast(*void)(*instance.q)) - cast(*void)(*instance)) == 24, "ma_lpf1_config.q has unexpected offset % instead of 24", ((cast(*void)(*instance.q)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf1_config.q)) == 8, "ma_lpf1_config.q has unexpected size % instead of 8", size_of(type_of(ma_lpf1_config.q))); + assert(size_of(ma_lpf1_config) == 32, "ma_lpf1_config has size % instead of 32", size_of(ma_lpf1_config)); + } + + { + instance: ma_lpf1; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_lpf1.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf1.format)) == 4, "ma_lpf1.format has unexpected size % instead of 4", size_of(type_of(ma_lpf1.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_lpf1.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf1.channels)) == 4, "ma_lpf1.channels has unexpected size % instead of 4", size_of(type_of(ma_lpf1.channels))); + assert(((cast(*void)(*instance.a)) - cast(*void)(*instance)) == 8, "ma_lpf1.a has unexpected offset % instead of 8", ((cast(*void)(*instance.a)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf1.a)) == 4, "ma_lpf1.a has unexpected size % instead of 4", size_of(type_of(ma_lpf1.a))); + assert(((cast(*void)(*instance.pR1)) - cast(*void)(*instance)) == 16, "ma_lpf1.pR1 has unexpected offset % instead of 16", ((cast(*void)(*instance.pR1)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf1.pR1)) == 8, "ma_lpf1.pR1 has unexpected size % instead of 8", size_of(type_of(ma_lpf1.pR1))); + assert(((cast(*void)(*instance._pHeap)) - cast(*void)(*instance)) == 24, "ma_lpf1._pHeap has unexpected offset % instead of 24", ((cast(*void)(*instance._pHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf1._pHeap)) == 8, "ma_lpf1._pHeap has unexpected size % instead of 8", size_of(type_of(ma_lpf1._pHeap))); + assert(((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance)) == 32, "ma_lpf1._ownsHeap has unexpected offset % instead of 32", ((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf1._ownsHeap)) == 4, "ma_lpf1._ownsHeap has unexpected size % instead of 4", size_of(type_of(ma_lpf1._ownsHeap))); + assert(size_of(ma_lpf1) == 40, "ma_lpf1 has size % instead of 40", size_of(ma_lpf1)); + } + + { + instance: ma_lpf2; + assert(((cast(*void)(*instance.bq)) - cast(*void)(*instance)) == 0, "ma_lpf2.bq has unexpected offset % instead of 0", ((cast(*void)(*instance.bq)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf2.bq)) == 64, "ma_lpf2.bq has unexpected size % instead of 64", size_of(type_of(ma_lpf2.bq))); + assert(size_of(ma_lpf2) == 64, "ma_lpf2 has size % instead of 64", size_of(ma_lpf2)); + } + + { + instance: ma_lpf_config; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_lpf_config.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf_config.format)) == 4, "ma_lpf_config.format has unexpected size % instead of 4", size_of(type_of(ma_lpf_config.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_lpf_config.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf_config.channels)) == 4, "ma_lpf_config.channels has unexpected size % instead of 4", size_of(type_of(ma_lpf_config.channels))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 8, "ma_lpf_config.sampleRate has unexpected offset % instead of 8", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf_config.sampleRate)) == 4, "ma_lpf_config.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_lpf_config.sampleRate))); + assert(((cast(*void)(*instance.cutoffFrequency)) - cast(*void)(*instance)) == 16, "ma_lpf_config.cutoffFrequency has unexpected offset % instead of 16", ((cast(*void)(*instance.cutoffFrequency)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf_config.cutoffFrequency)) == 8, "ma_lpf_config.cutoffFrequency has unexpected size % instead of 8", size_of(type_of(ma_lpf_config.cutoffFrequency))); + assert(((cast(*void)(*instance.order)) - cast(*void)(*instance)) == 24, "ma_lpf_config.order has unexpected offset % instead of 24", ((cast(*void)(*instance.order)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf_config.order)) == 4, "ma_lpf_config.order has unexpected size % instead of 4", size_of(type_of(ma_lpf_config.order))); + assert(size_of(ma_lpf_config) == 32, "ma_lpf_config has size % instead of 32", size_of(ma_lpf_config)); + } + + { + instance: ma_lpf; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_lpf.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf.format)) == 4, "ma_lpf.format has unexpected size % instead of 4", size_of(type_of(ma_lpf.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_lpf.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf.channels)) == 4, "ma_lpf.channels has unexpected size % instead of 4", size_of(type_of(ma_lpf.channels))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 8, "ma_lpf.sampleRate has unexpected offset % instead of 8", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf.sampleRate)) == 4, "ma_lpf.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_lpf.sampleRate))); + assert(((cast(*void)(*instance.lpf1Count)) - cast(*void)(*instance)) == 12, "ma_lpf.lpf1Count has unexpected offset % instead of 12", ((cast(*void)(*instance.lpf1Count)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf.lpf1Count)) == 4, "ma_lpf.lpf1Count has unexpected size % instead of 4", size_of(type_of(ma_lpf.lpf1Count))); + assert(((cast(*void)(*instance.lpf2Count)) - cast(*void)(*instance)) == 16, "ma_lpf.lpf2Count has unexpected offset % instead of 16", ((cast(*void)(*instance.lpf2Count)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf.lpf2Count)) == 4, "ma_lpf.lpf2Count has unexpected size % instead of 4", size_of(type_of(ma_lpf.lpf2Count))); + assert(((cast(*void)(*instance.pLPF1)) - cast(*void)(*instance)) == 24, "ma_lpf.pLPF1 has unexpected offset % instead of 24", ((cast(*void)(*instance.pLPF1)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf.pLPF1)) == 8, "ma_lpf.pLPF1 has unexpected size % instead of 8", size_of(type_of(ma_lpf.pLPF1))); + assert(((cast(*void)(*instance.pLPF2)) - cast(*void)(*instance)) == 32, "ma_lpf.pLPF2 has unexpected offset % instead of 32", ((cast(*void)(*instance.pLPF2)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf.pLPF2)) == 8, "ma_lpf.pLPF2 has unexpected size % instead of 8", size_of(type_of(ma_lpf.pLPF2))); + assert(((cast(*void)(*instance._pHeap)) - cast(*void)(*instance)) == 40, "ma_lpf._pHeap has unexpected offset % instead of 40", ((cast(*void)(*instance._pHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf._pHeap)) == 8, "ma_lpf._pHeap has unexpected size % instead of 8", size_of(type_of(ma_lpf._pHeap))); + assert(((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance)) == 48, "ma_lpf._ownsHeap has unexpected offset % instead of 48", ((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf._ownsHeap)) == 4, "ma_lpf._ownsHeap has unexpected size % instead of 4", size_of(type_of(ma_lpf._ownsHeap))); + assert(size_of(ma_lpf) == 56, "ma_lpf has size % instead of 56", size_of(ma_lpf)); + } + + { + instance: ma_hpf1_config; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_hpf1_config.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf1_config.format)) == 4, "ma_hpf1_config.format has unexpected size % instead of 4", size_of(type_of(ma_hpf1_config.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_hpf1_config.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf1_config.channels)) == 4, "ma_hpf1_config.channels has unexpected size % instead of 4", size_of(type_of(ma_hpf1_config.channels))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 8, "ma_hpf1_config.sampleRate has unexpected offset % instead of 8", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf1_config.sampleRate)) == 4, "ma_hpf1_config.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_hpf1_config.sampleRate))); + assert(((cast(*void)(*instance.cutoffFrequency)) - cast(*void)(*instance)) == 16, "ma_hpf1_config.cutoffFrequency has unexpected offset % instead of 16", ((cast(*void)(*instance.cutoffFrequency)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf1_config.cutoffFrequency)) == 8, "ma_hpf1_config.cutoffFrequency has unexpected size % instead of 8", size_of(type_of(ma_hpf1_config.cutoffFrequency))); + assert(((cast(*void)(*instance.q)) - cast(*void)(*instance)) == 24, "ma_hpf1_config.q has unexpected offset % instead of 24", ((cast(*void)(*instance.q)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf1_config.q)) == 8, "ma_hpf1_config.q has unexpected size % instead of 8", size_of(type_of(ma_hpf1_config.q))); + assert(size_of(ma_hpf1_config) == 32, "ma_hpf1_config has size % instead of 32", size_of(ma_hpf1_config)); + } + + { + instance: ma_hpf1; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_hpf1.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf1.format)) == 4, "ma_hpf1.format has unexpected size % instead of 4", size_of(type_of(ma_hpf1.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_hpf1.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf1.channels)) == 4, "ma_hpf1.channels has unexpected size % instead of 4", size_of(type_of(ma_hpf1.channels))); + assert(((cast(*void)(*instance.a)) - cast(*void)(*instance)) == 8, "ma_hpf1.a has unexpected offset % instead of 8", ((cast(*void)(*instance.a)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf1.a)) == 4, "ma_hpf1.a has unexpected size % instead of 4", size_of(type_of(ma_hpf1.a))); + assert(((cast(*void)(*instance.pR1)) - cast(*void)(*instance)) == 16, "ma_hpf1.pR1 has unexpected offset % instead of 16", ((cast(*void)(*instance.pR1)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf1.pR1)) == 8, "ma_hpf1.pR1 has unexpected size % instead of 8", size_of(type_of(ma_hpf1.pR1))); + assert(((cast(*void)(*instance._pHeap)) - cast(*void)(*instance)) == 24, "ma_hpf1._pHeap has unexpected offset % instead of 24", ((cast(*void)(*instance._pHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf1._pHeap)) == 8, "ma_hpf1._pHeap has unexpected size % instead of 8", size_of(type_of(ma_hpf1._pHeap))); + assert(((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance)) == 32, "ma_hpf1._ownsHeap has unexpected offset % instead of 32", ((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf1._ownsHeap)) == 4, "ma_hpf1._ownsHeap has unexpected size % instead of 4", size_of(type_of(ma_hpf1._ownsHeap))); + assert(size_of(ma_hpf1) == 40, "ma_hpf1 has size % instead of 40", size_of(ma_hpf1)); + } + + { + instance: ma_hpf2; + assert(((cast(*void)(*instance.bq)) - cast(*void)(*instance)) == 0, "ma_hpf2.bq has unexpected offset % instead of 0", ((cast(*void)(*instance.bq)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf2.bq)) == 64, "ma_hpf2.bq has unexpected size % instead of 64", size_of(type_of(ma_hpf2.bq))); + assert(size_of(ma_hpf2) == 64, "ma_hpf2 has size % instead of 64", size_of(ma_hpf2)); + } + + { + instance: ma_hpf_config; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_hpf_config.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf_config.format)) == 4, "ma_hpf_config.format has unexpected size % instead of 4", size_of(type_of(ma_hpf_config.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_hpf_config.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf_config.channels)) == 4, "ma_hpf_config.channels has unexpected size % instead of 4", size_of(type_of(ma_hpf_config.channels))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 8, "ma_hpf_config.sampleRate has unexpected offset % instead of 8", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf_config.sampleRate)) == 4, "ma_hpf_config.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_hpf_config.sampleRate))); + assert(((cast(*void)(*instance.cutoffFrequency)) - cast(*void)(*instance)) == 16, "ma_hpf_config.cutoffFrequency has unexpected offset % instead of 16", ((cast(*void)(*instance.cutoffFrequency)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf_config.cutoffFrequency)) == 8, "ma_hpf_config.cutoffFrequency has unexpected size % instead of 8", size_of(type_of(ma_hpf_config.cutoffFrequency))); + assert(((cast(*void)(*instance.order)) - cast(*void)(*instance)) == 24, "ma_hpf_config.order has unexpected offset % instead of 24", ((cast(*void)(*instance.order)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf_config.order)) == 4, "ma_hpf_config.order has unexpected size % instead of 4", size_of(type_of(ma_hpf_config.order))); + assert(size_of(ma_hpf_config) == 32, "ma_hpf_config has size % instead of 32", size_of(ma_hpf_config)); + } + + { + instance: ma_hpf; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_hpf.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf.format)) == 4, "ma_hpf.format has unexpected size % instead of 4", size_of(type_of(ma_hpf.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_hpf.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf.channels)) == 4, "ma_hpf.channels has unexpected size % instead of 4", size_of(type_of(ma_hpf.channels))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 8, "ma_hpf.sampleRate has unexpected offset % instead of 8", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf.sampleRate)) == 4, "ma_hpf.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_hpf.sampleRate))); + assert(((cast(*void)(*instance.hpf1Count)) - cast(*void)(*instance)) == 12, "ma_hpf.hpf1Count has unexpected offset % instead of 12", ((cast(*void)(*instance.hpf1Count)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf.hpf1Count)) == 4, "ma_hpf.hpf1Count has unexpected size % instead of 4", size_of(type_of(ma_hpf.hpf1Count))); + assert(((cast(*void)(*instance.hpf2Count)) - cast(*void)(*instance)) == 16, "ma_hpf.hpf2Count has unexpected offset % instead of 16", ((cast(*void)(*instance.hpf2Count)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf.hpf2Count)) == 4, "ma_hpf.hpf2Count has unexpected size % instead of 4", size_of(type_of(ma_hpf.hpf2Count))); + assert(((cast(*void)(*instance.pHPF1)) - cast(*void)(*instance)) == 24, "ma_hpf.pHPF1 has unexpected offset % instead of 24", ((cast(*void)(*instance.pHPF1)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf.pHPF1)) == 8, "ma_hpf.pHPF1 has unexpected size % instead of 8", size_of(type_of(ma_hpf.pHPF1))); + assert(((cast(*void)(*instance.pHPF2)) - cast(*void)(*instance)) == 32, "ma_hpf.pHPF2 has unexpected offset % instead of 32", ((cast(*void)(*instance.pHPF2)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf.pHPF2)) == 8, "ma_hpf.pHPF2 has unexpected size % instead of 8", size_of(type_of(ma_hpf.pHPF2))); + assert(((cast(*void)(*instance._pHeap)) - cast(*void)(*instance)) == 40, "ma_hpf._pHeap has unexpected offset % instead of 40", ((cast(*void)(*instance._pHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf._pHeap)) == 8, "ma_hpf._pHeap has unexpected size % instead of 8", size_of(type_of(ma_hpf._pHeap))); + assert(((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance)) == 48, "ma_hpf._ownsHeap has unexpected offset % instead of 48", ((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf._ownsHeap)) == 4, "ma_hpf._ownsHeap has unexpected size % instead of 4", size_of(type_of(ma_hpf._ownsHeap))); + assert(size_of(ma_hpf) == 56, "ma_hpf has size % instead of 56", size_of(ma_hpf)); + } + + { + instance: ma_bpf2_config; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_bpf2_config.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_bpf2_config.format)) == 4, "ma_bpf2_config.format has unexpected size % instead of 4", size_of(type_of(ma_bpf2_config.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_bpf2_config.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_bpf2_config.channels)) == 4, "ma_bpf2_config.channels has unexpected size % instead of 4", size_of(type_of(ma_bpf2_config.channels))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 8, "ma_bpf2_config.sampleRate has unexpected offset % instead of 8", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_bpf2_config.sampleRate)) == 4, "ma_bpf2_config.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_bpf2_config.sampleRate))); + assert(((cast(*void)(*instance.cutoffFrequency)) - cast(*void)(*instance)) == 16, "ma_bpf2_config.cutoffFrequency has unexpected offset % instead of 16", ((cast(*void)(*instance.cutoffFrequency)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_bpf2_config.cutoffFrequency)) == 8, "ma_bpf2_config.cutoffFrequency has unexpected size % instead of 8", size_of(type_of(ma_bpf2_config.cutoffFrequency))); + assert(((cast(*void)(*instance.q)) - cast(*void)(*instance)) == 24, "ma_bpf2_config.q has unexpected offset % instead of 24", ((cast(*void)(*instance.q)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_bpf2_config.q)) == 8, "ma_bpf2_config.q has unexpected size % instead of 8", size_of(type_of(ma_bpf2_config.q))); + assert(size_of(ma_bpf2_config) == 32, "ma_bpf2_config has size % instead of 32", size_of(ma_bpf2_config)); + } + + { + instance: ma_bpf2; + assert(((cast(*void)(*instance.bq)) - cast(*void)(*instance)) == 0, "ma_bpf2.bq has unexpected offset % instead of 0", ((cast(*void)(*instance.bq)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_bpf2.bq)) == 64, "ma_bpf2.bq has unexpected size % instead of 64", size_of(type_of(ma_bpf2.bq))); + assert(size_of(ma_bpf2) == 64, "ma_bpf2 has size % instead of 64", size_of(ma_bpf2)); + } + + { + instance: ma_bpf_config; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_bpf_config.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_bpf_config.format)) == 4, "ma_bpf_config.format has unexpected size % instead of 4", size_of(type_of(ma_bpf_config.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_bpf_config.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_bpf_config.channels)) == 4, "ma_bpf_config.channels has unexpected size % instead of 4", size_of(type_of(ma_bpf_config.channels))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 8, "ma_bpf_config.sampleRate has unexpected offset % instead of 8", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_bpf_config.sampleRate)) == 4, "ma_bpf_config.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_bpf_config.sampleRate))); + assert(((cast(*void)(*instance.cutoffFrequency)) - cast(*void)(*instance)) == 16, "ma_bpf_config.cutoffFrequency has unexpected offset % instead of 16", ((cast(*void)(*instance.cutoffFrequency)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_bpf_config.cutoffFrequency)) == 8, "ma_bpf_config.cutoffFrequency has unexpected size % instead of 8", size_of(type_of(ma_bpf_config.cutoffFrequency))); + assert(((cast(*void)(*instance.order)) - cast(*void)(*instance)) == 24, "ma_bpf_config.order has unexpected offset % instead of 24", ((cast(*void)(*instance.order)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_bpf_config.order)) == 4, "ma_bpf_config.order has unexpected size % instead of 4", size_of(type_of(ma_bpf_config.order))); + assert(size_of(ma_bpf_config) == 32, "ma_bpf_config has size % instead of 32", size_of(ma_bpf_config)); + } + + { + instance: ma_bpf; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_bpf.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_bpf.format)) == 4, "ma_bpf.format has unexpected size % instead of 4", size_of(type_of(ma_bpf.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_bpf.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_bpf.channels)) == 4, "ma_bpf.channels has unexpected size % instead of 4", size_of(type_of(ma_bpf.channels))); + assert(((cast(*void)(*instance.bpf2Count)) - cast(*void)(*instance)) == 8, "ma_bpf.bpf2Count has unexpected offset % instead of 8", ((cast(*void)(*instance.bpf2Count)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_bpf.bpf2Count)) == 4, "ma_bpf.bpf2Count has unexpected size % instead of 4", size_of(type_of(ma_bpf.bpf2Count))); + assert(((cast(*void)(*instance.pBPF2)) - cast(*void)(*instance)) == 16, "ma_bpf.pBPF2 has unexpected offset % instead of 16", ((cast(*void)(*instance.pBPF2)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_bpf.pBPF2)) == 8, "ma_bpf.pBPF2 has unexpected size % instead of 8", size_of(type_of(ma_bpf.pBPF2))); + assert(((cast(*void)(*instance._pHeap)) - cast(*void)(*instance)) == 24, "ma_bpf._pHeap has unexpected offset % instead of 24", ((cast(*void)(*instance._pHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_bpf._pHeap)) == 8, "ma_bpf._pHeap has unexpected size % instead of 8", size_of(type_of(ma_bpf._pHeap))); + assert(((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance)) == 32, "ma_bpf._ownsHeap has unexpected offset % instead of 32", ((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_bpf._ownsHeap)) == 4, "ma_bpf._ownsHeap has unexpected size % instead of 4", size_of(type_of(ma_bpf._ownsHeap))); + assert(size_of(ma_bpf) == 40, "ma_bpf has size % instead of 40", size_of(ma_bpf)); + } + + { + instance: ma_notch2_config; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_notch2_config.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_notch2_config.format)) == 4, "ma_notch2_config.format has unexpected size % instead of 4", size_of(type_of(ma_notch2_config.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_notch2_config.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_notch2_config.channels)) == 4, "ma_notch2_config.channels has unexpected size % instead of 4", size_of(type_of(ma_notch2_config.channels))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 8, "ma_notch2_config.sampleRate has unexpected offset % instead of 8", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_notch2_config.sampleRate)) == 4, "ma_notch2_config.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_notch2_config.sampleRate))); + assert(((cast(*void)(*instance.q)) - cast(*void)(*instance)) == 16, "ma_notch2_config.q has unexpected offset % instead of 16", ((cast(*void)(*instance.q)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_notch2_config.q)) == 8, "ma_notch2_config.q has unexpected size % instead of 8", size_of(type_of(ma_notch2_config.q))); + assert(((cast(*void)(*instance.frequency)) - cast(*void)(*instance)) == 24, "ma_notch2_config.frequency has unexpected offset % instead of 24", ((cast(*void)(*instance.frequency)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_notch2_config.frequency)) == 8, "ma_notch2_config.frequency has unexpected size % instead of 8", size_of(type_of(ma_notch2_config.frequency))); + assert(size_of(ma_notch2_config) == 32, "ma_notch2_config has size % instead of 32", size_of(ma_notch2_config)); + } + + { + instance: ma_notch2; + assert(((cast(*void)(*instance.bq)) - cast(*void)(*instance)) == 0, "ma_notch2.bq has unexpected offset % instead of 0", ((cast(*void)(*instance.bq)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_notch2.bq)) == 64, "ma_notch2.bq has unexpected size % instead of 64", size_of(type_of(ma_notch2.bq))); + assert(size_of(ma_notch2) == 64, "ma_notch2 has size % instead of 64", size_of(ma_notch2)); + } + + { + instance: ma_peak2_config; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_peak2_config.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_peak2_config.format)) == 4, "ma_peak2_config.format has unexpected size % instead of 4", size_of(type_of(ma_peak2_config.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_peak2_config.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_peak2_config.channels)) == 4, "ma_peak2_config.channels has unexpected size % instead of 4", size_of(type_of(ma_peak2_config.channels))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 8, "ma_peak2_config.sampleRate has unexpected offset % instead of 8", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_peak2_config.sampleRate)) == 4, "ma_peak2_config.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_peak2_config.sampleRate))); + assert(((cast(*void)(*instance.gainDB)) - cast(*void)(*instance)) == 16, "ma_peak2_config.gainDB has unexpected offset % instead of 16", ((cast(*void)(*instance.gainDB)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_peak2_config.gainDB)) == 8, "ma_peak2_config.gainDB has unexpected size % instead of 8", size_of(type_of(ma_peak2_config.gainDB))); + assert(((cast(*void)(*instance.q)) - cast(*void)(*instance)) == 24, "ma_peak2_config.q has unexpected offset % instead of 24", ((cast(*void)(*instance.q)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_peak2_config.q)) == 8, "ma_peak2_config.q has unexpected size % instead of 8", size_of(type_of(ma_peak2_config.q))); + assert(((cast(*void)(*instance.frequency)) - cast(*void)(*instance)) == 32, "ma_peak2_config.frequency has unexpected offset % instead of 32", ((cast(*void)(*instance.frequency)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_peak2_config.frequency)) == 8, "ma_peak2_config.frequency has unexpected size % instead of 8", size_of(type_of(ma_peak2_config.frequency))); + assert(size_of(ma_peak2_config) == 40, "ma_peak2_config has size % instead of 40", size_of(ma_peak2_config)); + } + + { + instance: ma_peak2; + assert(((cast(*void)(*instance.bq)) - cast(*void)(*instance)) == 0, "ma_peak2.bq has unexpected offset % instead of 0", ((cast(*void)(*instance.bq)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_peak2.bq)) == 64, "ma_peak2.bq has unexpected size % instead of 64", size_of(type_of(ma_peak2.bq))); + assert(size_of(ma_peak2) == 64, "ma_peak2 has size % instead of 64", size_of(ma_peak2)); + } + + { + instance: ma_loshelf2_config; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_loshelf2_config.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_loshelf2_config.format)) == 4, "ma_loshelf2_config.format has unexpected size % instead of 4", size_of(type_of(ma_loshelf2_config.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_loshelf2_config.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_loshelf2_config.channels)) == 4, "ma_loshelf2_config.channels has unexpected size % instead of 4", size_of(type_of(ma_loshelf2_config.channels))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 8, "ma_loshelf2_config.sampleRate has unexpected offset % instead of 8", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_loshelf2_config.sampleRate)) == 4, "ma_loshelf2_config.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_loshelf2_config.sampleRate))); + assert(((cast(*void)(*instance.gainDB)) - cast(*void)(*instance)) == 16, "ma_loshelf2_config.gainDB has unexpected offset % instead of 16", ((cast(*void)(*instance.gainDB)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_loshelf2_config.gainDB)) == 8, "ma_loshelf2_config.gainDB has unexpected size % instead of 8", size_of(type_of(ma_loshelf2_config.gainDB))); + assert(((cast(*void)(*instance.shelfSlope)) - cast(*void)(*instance)) == 24, "ma_loshelf2_config.shelfSlope has unexpected offset % instead of 24", ((cast(*void)(*instance.shelfSlope)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_loshelf2_config.shelfSlope)) == 8, "ma_loshelf2_config.shelfSlope has unexpected size % instead of 8", size_of(type_of(ma_loshelf2_config.shelfSlope))); + assert(((cast(*void)(*instance.frequency)) - cast(*void)(*instance)) == 32, "ma_loshelf2_config.frequency has unexpected offset % instead of 32", ((cast(*void)(*instance.frequency)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_loshelf2_config.frequency)) == 8, "ma_loshelf2_config.frequency has unexpected size % instead of 8", size_of(type_of(ma_loshelf2_config.frequency))); + assert(size_of(ma_loshelf2_config) == 40, "ma_loshelf2_config has size % instead of 40", size_of(ma_loshelf2_config)); + } + + { + instance: ma_loshelf2; + assert(((cast(*void)(*instance.bq)) - cast(*void)(*instance)) == 0, "ma_loshelf2.bq has unexpected offset % instead of 0", ((cast(*void)(*instance.bq)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_loshelf2.bq)) == 64, "ma_loshelf2.bq has unexpected size % instead of 64", size_of(type_of(ma_loshelf2.bq))); + assert(size_of(ma_loshelf2) == 64, "ma_loshelf2 has size % instead of 64", size_of(ma_loshelf2)); + } + + { + instance: ma_hishelf2_config; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_hishelf2_config.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hishelf2_config.format)) == 4, "ma_hishelf2_config.format has unexpected size % instead of 4", size_of(type_of(ma_hishelf2_config.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_hishelf2_config.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hishelf2_config.channels)) == 4, "ma_hishelf2_config.channels has unexpected size % instead of 4", size_of(type_of(ma_hishelf2_config.channels))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 8, "ma_hishelf2_config.sampleRate has unexpected offset % instead of 8", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hishelf2_config.sampleRate)) == 4, "ma_hishelf2_config.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_hishelf2_config.sampleRate))); + assert(((cast(*void)(*instance.gainDB)) - cast(*void)(*instance)) == 16, "ma_hishelf2_config.gainDB has unexpected offset % instead of 16", ((cast(*void)(*instance.gainDB)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hishelf2_config.gainDB)) == 8, "ma_hishelf2_config.gainDB has unexpected size % instead of 8", size_of(type_of(ma_hishelf2_config.gainDB))); + assert(((cast(*void)(*instance.shelfSlope)) - cast(*void)(*instance)) == 24, "ma_hishelf2_config.shelfSlope has unexpected offset % instead of 24", ((cast(*void)(*instance.shelfSlope)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hishelf2_config.shelfSlope)) == 8, "ma_hishelf2_config.shelfSlope has unexpected size % instead of 8", size_of(type_of(ma_hishelf2_config.shelfSlope))); + assert(((cast(*void)(*instance.frequency)) - cast(*void)(*instance)) == 32, "ma_hishelf2_config.frequency has unexpected offset % instead of 32", ((cast(*void)(*instance.frequency)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hishelf2_config.frequency)) == 8, "ma_hishelf2_config.frequency has unexpected size % instead of 8", size_of(type_of(ma_hishelf2_config.frequency))); + assert(size_of(ma_hishelf2_config) == 40, "ma_hishelf2_config has size % instead of 40", size_of(ma_hishelf2_config)); + } + + { + instance: ma_hishelf2; + assert(((cast(*void)(*instance.bq)) - cast(*void)(*instance)) == 0, "ma_hishelf2.bq has unexpected offset % instead of 0", ((cast(*void)(*instance.bq)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hishelf2.bq)) == 64, "ma_hishelf2.bq has unexpected size % instead of 64", size_of(type_of(ma_hishelf2.bq))); + assert(size_of(ma_hishelf2) == 64, "ma_hishelf2 has size % instead of 64", size_of(ma_hishelf2)); + } + + { + instance: ma_delay_config; + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 0, "ma_delay_config.channels has unexpected offset % instead of 0", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_delay_config.channels)) == 4, "ma_delay_config.channels has unexpected size % instead of 4", size_of(type_of(ma_delay_config.channels))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 4, "ma_delay_config.sampleRate has unexpected offset % instead of 4", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_delay_config.sampleRate)) == 4, "ma_delay_config.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_delay_config.sampleRate))); + assert(((cast(*void)(*instance.delayInFrames)) - cast(*void)(*instance)) == 8, "ma_delay_config.delayInFrames has unexpected offset % instead of 8", ((cast(*void)(*instance.delayInFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_delay_config.delayInFrames)) == 4, "ma_delay_config.delayInFrames has unexpected size % instead of 4", size_of(type_of(ma_delay_config.delayInFrames))); + assert(((cast(*void)(*instance.delayStart)) - cast(*void)(*instance)) == 12, "ma_delay_config.delayStart has unexpected offset % instead of 12", ((cast(*void)(*instance.delayStart)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_delay_config.delayStart)) == 4, "ma_delay_config.delayStart has unexpected size % instead of 4", size_of(type_of(ma_delay_config.delayStart))); + assert(((cast(*void)(*instance.wet)) - cast(*void)(*instance)) == 16, "ma_delay_config.wet has unexpected offset % instead of 16", ((cast(*void)(*instance.wet)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_delay_config.wet)) == 4, "ma_delay_config.wet has unexpected size % instead of 4", size_of(type_of(ma_delay_config.wet))); + assert(((cast(*void)(*instance.dry)) - cast(*void)(*instance)) == 20, "ma_delay_config.dry has unexpected offset % instead of 20", ((cast(*void)(*instance.dry)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_delay_config.dry)) == 4, "ma_delay_config.dry has unexpected size % instead of 4", size_of(type_of(ma_delay_config.dry))); + assert(((cast(*void)(*instance.decay)) - cast(*void)(*instance)) == 24, "ma_delay_config.decay has unexpected offset % instead of 24", ((cast(*void)(*instance.decay)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_delay_config.decay)) == 4, "ma_delay_config.decay has unexpected size % instead of 4", size_of(type_of(ma_delay_config.decay))); + assert(size_of(ma_delay_config) == 28, "ma_delay_config has size % instead of 28", size_of(ma_delay_config)); + } + + { + instance: ma_delay; + assert(((cast(*void)(*instance.config)) - cast(*void)(*instance)) == 0, "ma_delay.config has unexpected offset % instead of 0", ((cast(*void)(*instance.config)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_delay.config)) == 28, "ma_delay.config has unexpected size % instead of 28", size_of(type_of(ma_delay.config))); + assert(((cast(*void)(*instance.cursor)) - cast(*void)(*instance)) == 28, "ma_delay.cursor has unexpected offset % instead of 28", ((cast(*void)(*instance.cursor)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_delay.cursor)) == 4, "ma_delay.cursor has unexpected size % instead of 4", size_of(type_of(ma_delay.cursor))); + assert(((cast(*void)(*instance.bufferSizeInFrames)) - cast(*void)(*instance)) == 32, "ma_delay.bufferSizeInFrames has unexpected offset % instead of 32", ((cast(*void)(*instance.bufferSizeInFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_delay.bufferSizeInFrames)) == 4, "ma_delay.bufferSizeInFrames has unexpected size % instead of 4", size_of(type_of(ma_delay.bufferSizeInFrames))); + assert(((cast(*void)(*instance.pBuffer)) - cast(*void)(*instance)) == 40, "ma_delay.pBuffer has unexpected offset % instead of 40", ((cast(*void)(*instance.pBuffer)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_delay.pBuffer)) == 8, "ma_delay.pBuffer has unexpected size % instead of 8", size_of(type_of(ma_delay.pBuffer))); + assert(size_of(ma_delay) == 48, "ma_delay has size % instead of 48", size_of(ma_delay)); + } + + { + instance: ma_gainer_config; + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 0, "ma_gainer_config.channels has unexpected offset % instead of 0", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_gainer_config.channels)) == 4, "ma_gainer_config.channels has unexpected size % instead of 4", size_of(type_of(ma_gainer_config.channels))); + assert(((cast(*void)(*instance.smoothTimeInFrames)) - cast(*void)(*instance)) == 4, "ma_gainer_config.smoothTimeInFrames has unexpected offset % instead of 4", ((cast(*void)(*instance.smoothTimeInFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_gainer_config.smoothTimeInFrames)) == 4, "ma_gainer_config.smoothTimeInFrames has unexpected size % instead of 4", size_of(type_of(ma_gainer_config.smoothTimeInFrames))); + assert(size_of(ma_gainer_config) == 8, "ma_gainer_config has size % instead of 8", size_of(ma_gainer_config)); + } + + { + instance: ma_gainer; + assert(((cast(*void)(*instance.config)) - cast(*void)(*instance)) == 0, "ma_gainer.config has unexpected offset % instead of 0", ((cast(*void)(*instance.config)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_gainer.config)) == 8, "ma_gainer.config has unexpected size % instead of 8", size_of(type_of(ma_gainer.config))); + assert(((cast(*void)(*instance.t)) - cast(*void)(*instance)) == 8, "ma_gainer.t has unexpected offset % instead of 8", ((cast(*void)(*instance.t)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_gainer.t)) == 4, "ma_gainer.t has unexpected size % instead of 4", size_of(type_of(ma_gainer.t))); + assert(((cast(*void)(*instance.masterVolume)) - cast(*void)(*instance)) == 12, "ma_gainer.masterVolume has unexpected offset % instead of 12", ((cast(*void)(*instance.masterVolume)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_gainer.masterVolume)) == 4, "ma_gainer.masterVolume has unexpected size % instead of 4", size_of(type_of(ma_gainer.masterVolume))); + assert(((cast(*void)(*instance.pOldGains)) - cast(*void)(*instance)) == 16, "ma_gainer.pOldGains has unexpected offset % instead of 16", ((cast(*void)(*instance.pOldGains)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_gainer.pOldGains)) == 8, "ma_gainer.pOldGains has unexpected size % instead of 8", size_of(type_of(ma_gainer.pOldGains))); + assert(((cast(*void)(*instance.pNewGains)) - cast(*void)(*instance)) == 24, "ma_gainer.pNewGains has unexpected offset % instead of 24", ((cast(*void)(*instance.pNewGains)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_gainer.pNewGains)) == 8, "ma_gainer.pNewGains has unexpected size % instead of 8", size_of(type_of(ma_gainer.pNewGains))); + assert(((cast(*void)(*instance._pHeap)) - cast(*void)(*instance)) == 32, "ma_gainer._pHeap has unexpected offset % instead of 32", ((cast(*void)(*instance._pHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_gainer._pHeap)) == 8, "ma_gainer._pHeap has unexpected size % instead of 8", size_of(type_of(ma_gainer._pHeap))); + assert(((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance)) == 40, "ma_gainer._ownsHeap has unexpected offset % instead of 40", ((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_gainer._ownsHeap)) == 4, "ma_gainer._ownsHeap has unexpected size % instead of 4", size_of(type_of(ma_gainer._ownsHeap))); + assert(size_of(ma_gainer) == 48, "ma_gainer has size % instead of 48", size_of(ma_gainer)); + } + + { + instance: ma_panner_config; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_panner_config.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_panner_config.format)) == 4, "ma_panner_config.format has unexpected size % instead of 4", size_of(type_of(ma_panner_config.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_panner_config.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_panner_config.channels)) == 4, "ma_panner_config.channels has unexpected size % instead of 4", size_of(type_of(ma_panner_config.channels))); + assert(((cast(*void)(*instance.mode)) - cast(*void)(*instance)) == 8, "ma_panner_config.mode has unexpected offset % instead of 8", ((cast(*void)(*instance.mode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_panner_config.mode)) == 4, "ma_panner_config.mode has unexpected size % instead of 4", size_of(type_of(ma_panner_config.mode))); + assert(((cast(*void)(*instance.pan)) - cast(*void)(*instance)) == 12, "ma_panner_config.pan has unexpected offset % instead of 12", ((cast(*void)(*instance.pan)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_panner_config.pan)) == 4, "ma_panner_config.pan has unexpected size % instead of 4", size_of(type_of(ma_panner_config.pan))); + assert(size_of(ma_panner_config) == 16, "ma_panner_config has size % instead of 16", size_of(ma_panner_config)); + } + + { + instance: ma_panner; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_panner.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_panner.format)) == 4, "ma_panner.format has unexpected size % instead of 4", size_of(type_of(ma_panner.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_panner.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_panner.channels)) == 4, "ma_panner.channels has unexpected size % instead of 4", size_of(type_of(ma_panner.channels))); + assert(((cast(*void)(*instance.mode)) - cast(*void)(*instance)) == 8, "ma_panner.mode has unexpected offset % instead of 8", ((cast(*void)(*instance.mode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_panner.mode)) == 4, "ma_panner.mode has unexpected size % instead of 4", size_of(type_of(ma_panner.mode))); + assert(((cast(*void)(*instance.pan)) - cast(*void)(*instance)) == 12, "ma_panner.pan has unexpected offset % instead of 12", ((cast(*void)(*instance.pan)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_panner.pan)) == 4, "ma_panner.pan has unexpected size % instead of 4", size_of(type_of(ma_panner.pan))); + assert(size_of(ma_panner) == 16, "ma_panner has size % instead of 16", size_of(ma_panner)); + } + + { + instance: ma_fader_config; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_fader_config.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_fader_config.format)) == 4, "ma_fader_config.format has unexpected size % instead of 4", size_of(type_of(ma_fader_config.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_fader_config.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_fader_config.channels)) == 4, "ma_fader_config.channels has unexpected size % instead of 4", size_of(type_of(ma_fader_config.channels))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 8, "ma_fader_config.sampleRate has unexpected offset % instead of 8", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_fader_config.sampleRate)) == 4, "ma_fader_config.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_fader_config.sampleRate))); + assert(size_of(ma_fader_config) == 12, "ma_fader_config has size % instead of 12", size_of(ma_fader_config)); + } + + { + instance: ma_fader; + assert(((cast(*void)(*instance.config)) - cast(*void)(*instance)) == 0, "ma_fader.config has unexpected offset % instead of 0", ((cast(*void)(*instance.config)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_fader.config)) == 12, "ma_fader.config has unexpected size % instead of 12", size_of(type_of(ma_fader.config))); + assert(((cast(*void)(*instance.volumeBeg)) - cast(*void)(*instance)) == 12, "ma_fader.volumeBeg has unexpected offset % instead of 12", ((cast(*void)(*instance.volumeBeg)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_fader.volumeBeg)) == 4, "ma_fader.volumeBeg has unexpected size % instead of 4", size_of(type_of(ma_fader.volumeBeg))); + assert(((cast(*void)(*instance.volumeEnd)) - cast(*void)(*instance)) == 16, "ma_fader.volumeEnd has unexpected offset % instead of 16", ((cast(*void)(*instance.volumeEnd)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_fader.volumeEnd)) == 4, "ma_fader.volumeEnd has unexpected size % instead of 4", size_of(type_of(ma_fader.volumeEnd))); + assert(((cast(*void)(*instance.lengthInFrames)) - cast(*void)(*instance)) == 24, "ma_fader.lengthInFrames has unexpected offset % instead of 24", ((cast(*void)(*instance.lengthInFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_fader.lengthInFrames)) == 8, "ma_fader.lengthInFrames has unexpected size % instead of 8", size_of(type_of(ma_fader.lengthInFrames))); + assert(((cast(*void)(*instance.cursorInFrames)) - cast(*void)(*instance)) == 32, "ma_fader.cursorInFrames has unexpected offset % instead of 32", ((cast(*void)(*instance.cursorInFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_fader.cursorInFrames)) == 8, "ma_fader.cursorInFrames has unexpected size % instead of 8", size_of(type_of(ma_fader.cursorInFrames))); + assert(size_of(ma_fader) == 40, "ma_fader has size % instead of 40", size_of(ma_fader)); + } + + { + instance: ma_vec3f; + assert(((cast(*void)(*instance.x)) - cast(*void)(*instance)) == 0, "ma_vec3f.x has unexpected offset % instead of 0", ((cast(*void)(*instance.x)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_vec3f.x)) == 4, "ma_vec3f.x has unexpected size % instead of 4", size_of(type_of(ma_vec3f.x))); + assert(((cast(*void)(*instance.y)) - cast(*void)(*instance)) == 4, "ma_vec3f.y has unexpected offset % instead of 4", ((cast(*void)(*instance.y)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_vec3f.y)) == 4, "ma_vec3f.y has unexpected size % instead of 4", size_of(type_of(ma_vec3f.y))); + assert(((cast(*void)(*instance.z)) - cast(*void)(*instance)) == 8, "ma_vec3f.z has unexpected offset % instead of 8", ((cast(*void)(*instance.z)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_vec3f.z)) == 4, "ma_vec3f.z has unexpected size % instead of 4", size_of(type_of(ma_vec3f.z))); + assert(size_of(ma_vec3f) == 12, "ma_vec3f has size % instead of 12", size_of(ma_vec3f)); + } + + { + instance: ma_atomic_vec3f; + assert(((cast(*void)(*instance.v)) - cast(*void)(*instance)) == 0, "ma_atomic_vec3f.v has unexpected offset % instead of 0", ((cast(*void)(*instance.v)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_atomic_vec3f.v)) == 12, "ma_atomic_vec3f.v has unexpected size % instead of 12", size_of(type_of(ma_atomic_vec3f.v))); + assert(((cast(*void)(*instance.lock)) - cast(*void)(*instance)) == 12, "ma_atomic_vec3f.lock has unexpected offset % instead of 12", ((cast(*void)(*instance.lock)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_atomic_vec3f.lock)) == 4, "ma_atomic_vec3f.lock has unexpected size % instead of 4", size_of(type_of(ma_atomic_vec3f.lock))); + assert(size_of(ma_atomic_vec3f) == 16, "ma_atomic_vec3f has size % instead of 16", size_of(ma_atomic_vec3f)); + } + + { + instance: ma_spatializer_listener_config; + assert(((cast(*void)(*instance.channelsOut)) - cast(*void)(*instance)) == 0, "ma_spatializer_listener_config.channelsOut has unexpected offset % instead of 0", ((cast(*void)(*instance.channelsOut)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_listener_config.channelsOut)) == 4, "ma_spatializer_listener_config.channelsOut has unexpected size % instead of 4", size_of(type_of(ma_spatializer_listener_config.channelsOut))); + assert(((cast(*void)(*instance.pChannelMapOut)) - cast(*void)(*instance)) == 8, "ma_spatializer_listener_config.pChannelMapOut has unexpected offset % instead of 8", ((cast(*void)(*instance.pChannelMapOut)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_listener_config.pChannelMapOut)) == 8, "ma_spatializer_listener_config.pChannelMapOut has unexpected size % instead of 8", size_of(type_of(ma_spatializer_listener_config.pChannelMapOut))); + assert(((cast(*void)(*instance.handedness)) - cast(*void)(*instance)) == 16, "ma_spatializer_listener_config.handedness has unexpected offset % instead of 16", ((cast(*void)(*instance.handedness)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_listener_config.handedness)) == 4, "ma_spatializer_listener_config.handedness has unexpected size % instead of 4", size_of(type_of(ma_spatializer_listener_config.handedness))); + assert(((cast(*void)(*instance.coneInnerAngleInRadians)) - cast(*void)(*instance)) == 20, "ma_spatializer_listener_config.coneInnerAngleInRadians has unexpected offset % instead of 20", ((cast(*void)(*instance.coneInnerAngleInRadians)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_listener_config.coneInnerAngleInRadians)) == 4, "ma_spatializer_listener_config.coneInnerAngleInRadians has unexpected size % instead of 4", size_of(type_of(ma_spatializer_listener_config.coneInnerAngleInRadians))); + assert(((cast(*void)(*instance.coneOuterAngleInRadians)) - cast(*void)(*instance)) == 24, "ma_spatializer_listener_config.coneOuterAngleInRadians has unexpected offset % instead of 24", ((cast(*void)(*instance.coneOuterAngleInRadians)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_listener_config.coneOuterAngleInRadians)) == 4, "ma_spatializer_listener_config.coneOuterAngleInRadians has unexpected size % instead of 4", size_of(type_of(ma_spatializer_listener_config.coneOuterAngleInRadians))); + assert(((cast(*void)(*instance.coneOuterGain)) - cast(*void)(*instance)) == 28, "ma_spatializer_listener_config.coneOuterGain has unexpected offset % instead of 28", ((cast(*void)(*instance.coneOuterGain)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_listener_config.coneOuterGain)) == 4, "ma_spatializer_listener_config.coneOuterGain has unexpected size % instead of 4", size_of(type_of(ma_spatializer_listener_config.coneOuterGain))); + assert(((cast(*void)(*instance.speedOfSound)) - cast(*void)(*instance)) == 32, "ma_spatializer_listener_config.speedOfSound has unexpected offset % instead of 32", ((cast(*void)(*instance.speedOfSound)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_listener_config.speedOfSound)) == 4, "ma_spatializer_listener_config.speedOfSound has unexpected size % instead of 4", size_of(type_of(ma_spatializer_listener_config.speedOfSound))); + assert(((cast(*void)(*instance.worldUp)) - cast(*void)(*instance)) == 36, "ma_spatializer_listener_config.worldUp has unexpected offset % instead of 36", ((cast(*void)(*instance.worldUp)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_listener_config.worldUp)) == 12, "ma_spatializer_listener_config.worldUp has unexpected size % instead of 12", size_of(type_of(ma_spatializer_listener_config.worldUp))); + assert(size_of(ma_spatializer_listener_config) == 48, "ma_spatializer_listener_config has size % instead of 48", size_of(ma_spatializer_listener_config)); + } + + { + instance: ma_spatializer_listener; + assert(((cast(*void)(*instance.config)) - cast(*void)(*instance)) == 0, "ma_spatializer_listener.config has unexpected offset % instead of 0", ((cast(*void)(*instance.config)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_listener.config)) == 48, "ma_spatializer_listener.config has unexpected size % instead of 48", size_of(type_of(ma_spatializer_listener.config))); + assert(((cast(*void)(*instance.position)) - cast(*void)(*instance)) == 48, "ma_spatializer_listener.position has unexpected offset % instead of 48", ((cast(*void)(*instance.position)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_listener.position)) == 16, "ma_spatializer_listener.position has unexpected size % instead of 16", size_of(type_of(ma_spatializer_listener.position))); + assert(((cast(*void)(*instance.direction)) - cast(*void)(*instance)) == 64, "ma_spatializer_listener.direction has unexpected offset % instead of 64", ((cast(*void)(*instance.direction)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_listener.direction)) == 16, "ma_spatializer_listener.direction has unexpected size % instead of 16", size_of(type_of(ma_spatializer_listener.direction))); + assert(((cast(*void)(*instance.velocity)) - cast(*void)(*instance)) == 80, "ma_spatializer_listener.velocity has unexpected offset % instead of 80", ((cast(*void)(*instance.velocity)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_listener.velocity)) == 16, "ma_spatializer_listener.velocity has unexpected size % instead of 16", size_of(type_of(ma_spatializer_listener.velocity))); + assert(((cast(*void)(*instance.isEnabled)) - cast(*void)(*instance)) == 96, "ma_spatializer_listener.isEnabled has unexpected offset % instead of 96", ((cast(*void)(*instance.isEnabled)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_listener.isEnabled)) == 4, "ma_spatializer_listener.isEnabled has unexpected size % instead of 4", size_of(type_of(ma_spatializer_listener.isEnabled))); + assert(((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance)) == 100, "ma_spatializer_listener._ownsHeap has unexpected offset % instead of 100", ((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_listener._ownsHeap)) == 4, "ma_spatializer_listener._ownsHeap has unexpected size % instead of 4", size_of(type_of(ma_spatializer_listener._ownsHeap))); + assert(((cast(*void)(*instance._pHeap)) - cast(*void)(*instance)) == 104, "ma_spatializer_listener._pHeap has unexpected offset % instead of 104", ((cast(*void)(*instance._pHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_listener._pHeap)) == 8, "ma_spatializer_listener._pHeap has unexpected size % instead of 8", size_of(type_of(ma_spatializer_listener._pHeap))); + assert(size_of(ma_spatializer_listener) == 112, "ma_spatializer_listener has size % instead of 112", size_of(ma_spatializer_listener)); + } + + { + instance: ma_spatializer_config; + assert(((cast(*void)(*instance.channelsIn)) - cast(*void)(*instance)) == 0, "ma_spatializer_config.channelsIn has unexpected offset % instead of 0", ((cast(*void)(*instance.channelsIn)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_config.channelsIn)) == 4, "ma_spatializer_config.channelsIn has unexpected size % instead of 4", size_of(type_of(ma_spatializer_config.channelsIn))); + assert(((cast(*void)(*instance.channelsOut)) - cast(*void)(*instance)) == 4, "ma_spatializer_config.channelsOut has unexpected offset % instead of 4", ((cast(*void)(*instance.channelsOut)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_config.channelsOut)) == 4, "ma_spatializer_config.channelsOut has unexpected size % instead of 4", size_of(type_of(ma_spatializer_config.channelsOut))); + assert(((cast(*void)(*instance.pChannelMapIn)) - cast(*void)(*instance)) == 8, "ma_spatializer_config.pChannelMapIn has unexpected offset % instead of 8", ((cast(*void)(*instance.pChannelMapIn)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_config.pChannelMapIn)) == 8, "ma_spatializer_config.pChannelMapIn has unexpected size % instead of 8", size_of(type_of(ma_spatializer_config.pChannelMapIn))); + assert(((cast(*void)(*instance.attenuationModel)) - cast(*void)(*instance)) == 16, "ma_spatializer_config.attenuationModel has unexpected offset % instead of 16", ((cast(*void)(*instance.attenuationModel)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_config.attenuationModel)) == 4, "ma_spatializer_config.attenuationModel has unexpected size % instead of 4", size_of(type_of(ma_spatializer_config.attenuationModel))); + assert(((cast(*void)(*instance.positioning)) - cast(*void)(*instance)) == 20, "ma_spatializer_config.positioning has unexpected offset % instead of 20", ((cast(*void)(*instance.positioning)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_config.positioning)) == 4, "ma_spatializer_config.positioning has unexpected size % instead of 4", size_of(type_of(ma_spatializer_config.positioning))); + assert(((cast(*void)(*instance.handedness)) - cast(*void)(*instance)) == 24, "ma_spatializer_config.handedness has unexpected offset % instead of 24", ((cast(*void)(*instance.handedness)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_config.handedness)) == 4, "ma_spatializer_config.handedness has unexpected size % instead of 4", size_of(type_of(ma_spatializer_config.handedness))); + assert(((cast(*void)(*instance.minGain)) - cast(*void)(*instance)) == 28, "ma_spatializer_config.minGain has unexpected offset % instead of 28", ((cast(*void)(*instance.minGain)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_config.minGain)) == 4, "ma_spatializer_config.minGain has unexpected size % instead of 4", size_of(type_of(ma_spatializer_config.minGain))); + assert(((cast(*void)(*instance.maxGain)) - cast(*void)(*instance)) == 32, "ma_spatializer_config.maxGain has unexpected offset % instead of 32", ((cast(*void)(*instance.maxGain)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_config.maxGain)) == 4, "ma_spatializer_config.maxGain has unexpected size % instead of 4", size_of(type_of(ma_spatializer_config.maxGain))); + assert(((cast(*void)(*instance.minDistance)) - cast(*void)(*instance)) == 36, "ma_spatializer_config.minDistance has unexpected offset % instead of 36", ((cast(*void)(*instance.minDistance)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_config.minDistance)) == 4, "ma_spatializer_config.minDistance has unexpected size % instead of 4", size_of(type_of(ma_spatializer_config.minDistance))); + assert(((cast(*void)(*instance.maxDistance)) - cast(*void)(*instance)) == 40, "ma_spatializer_config.maxDistance has unexpected offset % instead of 40", ((cast(*void)(*instance.maxDistance)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_config.maxDistance)) == 4, "ma_spatializer_config.maxDistance has unexpected size % instead of 4", size_of(type_of(ma_spatializer_config.maxDistance))); + assert(((cast(*void)(*instance.rolloff)) - cast(*void)(*instance)) == 44, "ma_spatializer_config.rolloff has unexpected offset % instead of 44", ((cast(*void)(*instance.rolloff)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_config.rolloff)) == 4, "ma_spatializer_config.rolloff has unexpected size % instead of 4", size_of(type_of(ma_spatializer_config.rolloff))); + assert(((cast(*void)(*instance.coneInnerAngleInRadians)) - cast(*void)(*instance)) == 48, "ma_spatializer_config.coneInnerAngleInRadians has unexpected offset % instead of 48", ((cast(*void)(*instance.coneInnerAngleInRadians)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_config.coneInnerAngleInRadians)) == 4, "ma_spatializer_config.coneInnerAngleInRadians has unexpected size % instead of 4", size_of(type_of(ma_spatializer_config.coneInnerAngleInRadians))); + assert(((cast(*void)(*instance.coneOuterAngleInRadians)) - cast(*void)(*instance)) == 52, "ma_spatializer_config.coneOuterAngleInRadians has unexpected offset % instead of 52", ((cast(*void)(*instance.coneOuterAngleInRadians)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_config.coneOuterAngleInRadians)) == 4, "ma_spatializer_config.coneOuterAngleInRadians has unexpected size % instead of 4", size_of(type_of(ma_spatializer_config.coneOuterAngleInRadians))); + assert(((cast(*void)(*instance.coneOuterGain)) - cast(*void)(*instance)) == 56, "ma_spatializer_config.coneOuterGain has unexpected offset % instead of 56", ((cast(*void)(*instance.coneOuterGain)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_config.coneOuterGain)) == 4, "ma_spatializer_config.coneOuterGain has unexpected size % instead of 4", size_of(type_of(ma_spatializer_config.coneOuterGain))); + assert(((cast(*void)(*instance.dopplerFactor)) - cast(*void)(*instance)) == 60, "ma_spatializer_config.dopplerFactor has unexpected offset % instead of 60", ((cast(*void)(*instance.dopplerFactor)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_config.dopplerFactor)) == 4, "ma_spatializer_config.dopplerFactor has unexpected size % instead of 4", size_of(type_of(ma_spatializer_config.dopplerFactor))); + assert(((cast(*void)(*instance.directionalAttenuationFactor)) - cast(*void)(*instance)) == 64, "ma_spatializer_config.directionalAttenuationFactor has unexpected offset % instead of 64", ((cast(*void)(*instance.directionalAttenuationFactor)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_config.directionalAttenuationFactor)) == 4, "ma_spatializer_config.directionalAttenuationFactor has unexpected size % instead of 4", size_of(type_of(ma_spatializer_config.directionalAttenuationFactor))); + assert(((cast(*void)(*instance.minSpatializationChannelGain)) - cast(*void)(*instance)) == 68, "ma_spatializer_config.minSpatializationChannelGain has unexpected offset % instead of 68", ((cast(*void)(*instance.minSpatializationChannelGain)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_config.minSpatializationChannelGain)) == 4, "ma_spatializer_config.minSpatializationChannelGain has unexpected size % instead of 4", size_of(type_of(ma_spatializer_config.minSpatializationChannelGain))); + assert(((cast(*void)(*instance.gainSmoothTimeInFrames)) - cast(*void)(*instance)) == 72, "ma_spatializer_config.gainSmoothTimeInFrames has unexpected offset % instead of 72", ((cast(*void)(*instance.gainSmoothTimeInFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer_config.gainSmoothTimeInFrames)) == 4, "ma_spatializer_config.gainSmoothTimeInFrames has unexpected size % instead of 4", size_of(type_of(ma_spatializer_config.gainSmoothTimeInFrames))); + assert(size_of(ma_spatializer_config) == 80, "ma_spatializer_config has size % instead of 80", size_of(ma_spatializer_config)); + } + + { + instance: ma_spatializer; + assert(((cast(*void)(*instance.channelsIn)) - cast(*void)(*instance)) == 0, "ma_spatializer.channelsIn has unexpected offset % instead of 0", ((cast(*void)(*instance.channelsIn)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer.channelsIn)) == 4, "ma_spatializer.channelsIn has unexpected size % instead of 4", size_of(type_of(ma_spatializer.channelsIn))); + assert(((cast(*void)(*instance.channelsOut)) - cast(*void)(*instance)) == 4, "ma_spatializer.channelsOut has unexpected offset % instead of 4", ((cast(*void)(*instance.channelsOut)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer.channelsOut)) == 4, "ma_spatializer.channelsOut has unexpected size % instead of 4", size_of(type_of(ma_spatializer.channelsOut))); + assert(((cast(*void)(*instance.pChannelMapIn)) - cast(*void)(*instance)) == 8, "ma_spatializer.pChannelMapIn has unexpected offset % instead of 8", ((cast(*void)(*instance.pChannelMapIn)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer.pChannelMapIn)) == 8, "ma_spatializer.pChannelMapIn has unexpected size % instead of 8", size_of(type_of(ma_spatializer.pChannelMapIn))); + assert(((cast(*void)(*instance.attenuationModel)) - cast(*void)(*instance)) == 16, "ma_spatializer.attenuationModel has unexpected offset % instead of 16", ((cast(*void)(*instance.attenuationModel)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer.attenuationModel)) == 4, "ma_spatializer.attenuationModel has unexpected size % instead of 4", size_of(type_of(ma_spatializer.attenuationModel))); + assert(((cast(*void)(*instance.positioning)) - cast(*void)(*instance)) == 20, "ma_spatializer.positioning has unexpected offset % instead of 20", ((cast(*void)(*instance.positioning)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer.positioning)) == 4, "ma_spatializer.positioning has unexpected size % instead of 4", size_of(type_of(ma_spatializer.positioning))); + assert(((cast(*void)(*instance.handedness)) - cast(*void)(*instance)) == 24, "ma_spatializer.handedness has unexpected offset % instead of 24", ((cast(*void)(*instance.handedness)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer.handedness)) == 4, "ma_spatializer.handedness has unexpected size % instead of 4", size_of(type_of(ma_spatializer.handedness))); + assert(((cast(*void)(*instance.minGain)) - cast(*void)(*instance)) == 28, "ma_spatializer.minGain has unexpected offset % instead of 28", ((cast(*void)(*instance.minGain)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer.minGain)) == 4, "ma_spatializer.minGain has unexpected size % instead of 4", size_of(type_of(ma_spatializer.minGain))); + assert(((cast(*void)(*instance.maxGain)) - cast(*void)(*instance)) == 32, "ma_spatializer.maxGain has unexpected offset % instead of 32", ((cast(*void)(*instance.maxGain)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer.maxGain)) == 4, "ma_spatializer.maxGain has unexpected size % instead of 4", size_of(type_of(ma_spatializer.maxGain))); + assert(((cast(*void)(*instance.minDistance)) - cast(*void)(*instance)) == 36, "ma_spatializer.minDistance has unexpected offset % instead of 36", ((cast(*void)(*instance.minDistance)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer.minDistance)) == 4, "ma_spatializer.minDistance has unexpected size % instead of 4", size_of(type_of(ma_spatializer.minDistance))); + assert(((cast(*void)(*instance.maxDistance)) - cast(*void)(*instance)) == 40, "ma_spatializer.maxDistance has unexpected offset % instead of 40", ((cast(*void)(*instance.maxDistance)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer.maxDistance)) == 4, "ma_spatializer.maxDistance has unexpected size % instead of 4", size_of(type_of(ma_spatializer.maxDistance))); + assert(((cast(*void)(*instance.rolloff)) - cast(*void)(*instance)) == 44, "ma_spatializer.rolloff has unexpected offset % instead of 44", ((cast(*void)(*instance.rolloff)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer.rolloff)) == 4, "ma_spatializer.rolloff has unexpected size % instead of 4", size_of(type_of(ma_spatializer.rolloff))); + assert(((cast(*void)(*instance.coneInnerAngleInRadians)) - cast(*void)(*instance)) == 48, "ma_spatializer.coneInnerAngleInRadians has unexpected offset % instead of 48", ((cast(*void)(*instance.coneInnerAngleInRadians)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer.coneInnerAngleInRadians)) == 4, "ma_spatializer.coneInnerAngleInRadians has unexpected size % instead of 4", size_of(type_of(ma_spatializer.coneInnerAngleInRadians))); + assert(((cast(*void)(*instance.coneOuterAngleInRadians)) - cast(*void)(*instance)) == 52, "ma_spatializer.coneOuterAngleInRadians has unexpected offset % instead of 52", ((cast(*void)(*instance.coneOuterAngleInRadians)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer.coneOuterAngleInRadians)) == 4, "ma_spatializer.coneOuterAngleInRadians has unexpected size % instead of 4", size_of(type_of(ma_spatializer.coneOuterAngleInRadians))); + assert(((cast(*void)(*instance.coneOuterGain)) - cast(*void)(*instance)) == 56, "ma_spatializer.coneOuterGain has unexpected offset % instead of 56", ((cast(*void)(*instance.coneOuterGain)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer.coneOuterGain)) == 4, "ma_spatializer.coneOuterGain has unexpected size % instead of 4", size_of(type_of(ma_spatializer.coneOuterGain))); + assert(((cast(*void)(*instance.dopplerFactor)) - cast(*void)(*instance)) == 60, "ma_spatializer.dopplerFactor has unexpected offset % instead of 60", ((cast(*void)(*instance.dopplerFactor)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer.dopplerFactor)) == 4, "ma_spatializer.dopplerFactor has unexpected size % instead of 4", size_of(type_of(ma_spatializer.dopplerFactor))); + assert(((cast(*void)(*instance.directionalAttenuationFactor)) - cast(*void)(*instance)) == 64, "ma_spatializer.directionalAttenuationFactor has unexpected offset % instead of 64", ((cast(*void)(*instance.directionalAttenuationFactor)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer.directionalAttenuationFactor)) == 4, "ma_spatializer.directionalAttenuationFactor has unexpected size % instead of 4", size_of(type_of(ma_spatializer.directionalAttenuationFactor))); + assert(((cast(*void)(*instance.gainSmoothTimeInFrames)) - cast(*void)(*instance)) == 68, "ma_spatializer.gainSmoothTimeInFrames has unexpected offset % instead of 68", ((cast(*void)(*instance.gainSmoothTimeInFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer.gainSmoothTimeInFrames)) == 4, "ma_spatializer.gainSmoothTimeInFrames has unexpected size % instead of 4", size_of(type_of(ma_spatializer.gainSmoothTimeInFrames))); + assert(((cast(*void)(*instance.position)) - cast(*void)(*instance)) == 72, "ma_spatializer.position has unexpected offset % instead of 72", ((cast(*void)(*instance.position)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer.position)) == 16, "ma_spatializer.position has unexpected size % instead of 16", size_of(type_of(ma_spatializer.position))); + assert(((cast(*void)(*instance.direction)) - cast(*void)(*instance)) == 88, "ma_spatializer.direction has unexpected offset % instead of 88", ((cast(*void)(*instance.direction)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer.direction)) == 16, "ma_spatializer.direction has unexpected size % instead of 16", size_of(type_of(ma_spatializer.direction))); + assert(((cast(*void)(*instance.velocity)) - cast(*void)(*instance)) == 104, "ma_spatializer.velocity has unexpected offset % instead of 104", ((cast(*void)(*instance.velocity)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer.velocity)) == 16, "ma_spatializer.velocity has unexpected size % instead of 16", size_of(type_of(ma_spatializer.velocity))); + assert(((cast(*void)(*instance.dopplerPitch)) - cast(*void)(*instance)) == 120, "ma_spatializer.dopplerPitch has unexpected offset % instead of 120", ((cast(*void)(*instance.dopplerPitch)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer.dopplerPitch)) == 4, "ma_spatializer.dopplerPitch has unexpected size % instead of 4", size_of(type_of(ma_spatializer.dopplerPitch))); + assert(((cast(*void)(*instance.minSpatializationChannelGain)) - cast(*void)(*instance)) == 124, "ma_spatializer.minSpatializationChannelGain has unexpected offset % instead of 124", ((cast(*void)(*instance.minSpatializationChannelGain)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer.minSpatializationChannelGain)) == 4, "ma_spatializer.minSpatializationChannelGain has unexpected size % instead of 4", size_of(type_of(ma_spatializer.minSpatializationChannelGain))); + assert(((cast(*void)(*instance.gainer)) - cast(*void)(*instance)) == 128, "ma_spatializer.gainer has unexpected offset % instead of 128", ((cast(*void)(*instance.gainer)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer.gainer)) == 48, "ma_spatializer.gainer has unexpected size % instead of 48", size_of(type_of(ma_spatializer.gainer))); + assert(((cast(*void)(*instance.pNewChannelGainsOut)) - cast(*void)(*instance)) == 176, "ma_spatializer.pNewChannelGainsOut has unexpected offset % instead of 176", ((cast(*void)(*instance.pNewChannelGainsOut)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer.pNewChannelGainsOut)) == 8, "ma_spatializer.pNewChannelGainsOut has unexpected size % instead of 8", size_of(type_of(ma_spatializer.pNewChannelGainsOut))); + assert(((cast(*void)(*instance._pHeap)) - cast(*void)(*instance)) == 184, "ma_spatializer._pHeap has unexpected offset % instead of 184", ((cast(*void)(*instance._pHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer._pHeap)) == 8, "ma_spatializer._pHeap has unexpected size % instead of 8", size_of(type_of(ma_spatializer._pHeap))); + assert(((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance)) == 192, "ma_spatializer._ownsHeap has unexpected offset % instead of 192", ((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_spatializer._ownsHeap)) == 4, "ma_spatializer._ownsHeap has unexpected size % instead of 4", size_of(type_of(ma_spatializer._ownsHeap))); + assert(size_of(ma_spatializer) == 200, "ma_spatializer has size % instead of 200", size_of(ma_spatializer)); + } + + { + instance: ma_linear_resampler_config; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_linear_resampler_config.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_linear_resampler_config.format)) == 4, "ma_linear_resampler_config.format has unexpected size % instead of 4", size_of(type_of(ma_linear_resampler_config.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_linear_resampler_config.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_linear_resampler_config.channels)) == 4, "ma_linear_resampler_config.channels has unexpected size % instead of 4", size_of(type_of(ma_linear_resampler_config.channels))); + assert(((cast(*void)(*instance.sampleRateIn)) - cast(*void)(*instance)) == 8, "ma_linear_resampler_config.sampleRateIn has unexpected offset % instead of 8", ((cast(*void)(*instance.sampleRateIn)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_linear_resampler_config.sampleRateIn)) == 4, "ma_linear_resampler_config.sampleRateIn has unexpected size % instead of 4", size_of(type_of(ma_linear_resampler_config.sampleRateIn))); + assert(((cast(*void)(*instance.sampleRateOut)) - cast(*void)(*instance)) == 12, "ma_linear_resampler_config.sampleRateOut has unexpected offset % instead of 12", ((cast(*void)(*instance.sampleRateOut)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_linear_resampler_config.sampleRateOut)) == 4, "ma_linear_resampler_config.sampleRateOut has unexpected size % instead of 4", size_of(type_of(ma_linear_resampler_config.sampleRateOut))); + assert(((cast(*void)(*instance.lpfOrder)) - cast(*void)(*instance)) == 16, "ma_linear_resampler_config.lpfOrder has unexpected offset % instead of 16", ((cast(*void)(*instance.lpfOrder)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_linear_resampler_config.lpfOrder)) == 4, "ma_linear_resampler_config.lpfOrder has unexpected size % instead of 4", size_of(type_of(ma_linear_resampler_config.lpfOrder))); + assert(((cast(*void)(*instance.lpfNyquistFactor)) - cast(*void)(*instance)) == 24, "ma_linear_resampler_config.lpfNyquistFactor has unexpected offset % instead of 24", ((cast(*void)(*instance.lpfNyquistFactor)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_linear_resampler_config.lpfNyquistFactor)) == 8, "ma_linear_resampler_config.lpfNyquistFactor has unexpected size % instead of 8", size_of(type_of(ma_linear_resampler_config.lpfNyquistFactor))); + assert(size_of(ma_linear_resampler_config) == 32, "ma_linear_resampler_config has size % instead of 32", size_of(ma_linear_resampler_config)); + } + + { + instance: ma_linear_resampler; + assert(((cast(*void)(*instance.config)) - cast(*void)(*instance)) == 0, "ma_linear_resampler.config has unexpected offset % instead of 0", ((cast(*void)(*instance.config)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_linear_resampler.config)) == 32, "ma_linear_resampler.config has unexpected size % instead of 32", size_of(type_of(ma_linear_resampler.config))); + assert(((cast(*void)(*instance.inAdvanceInt)) - cast(*void)(*instance)) == 32, "ma_linear_resampler.inAdvanceInt has unexpected offset % instead of 32", ((cast(*void)(*instance.inAdvanceInt)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_linear_resampler.inAdvanceInt)) == 4, "ma_linear_resampler.inAdvanceInt has unexpected size % instead of 4", size_of(type_of(ma_linear_resampler.inAdvanceInt))); + assert(((cast(*void)(*instance.inAdvanceFrac)) - cast(*void)(*instance)) == 36, "ma_linear_resampler.inAdvanceFrac has unexpected offset % instead of 36", ((cast(*void)(*instance.inAdvanceFrac)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_linear_resampler.inAdvanceFrac)) == 4, "ma_linear_resampler.inAdvanceFrac has unexpected size % instead of 4", size_of(type_of(ma_linear_resampler.inAdvanceFrac))); + assert(((cast(*void)(*instance.inTimeInt)) - cast(*void)(*instance)) == 40, "ma_linear_resampler.inTimeInt has unexpected offset % instead of 40", ((cast(*void)(*instance.inTimeInt)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_linear_resampler.inTimeInt)) == 4, "ma_linear_resampler.inTimeInt has unexpected size % instead of 4", size_of(type_of(ma_linear_resampler.inTimeInt))); + assert(((cast(*void)(*instance.inTimeFrac)) - cast(*void)(*instance)) == 44, "ma_linear_resampler.inTimeFrac has unexpected offset % instead of 44", ((cast(*void)(*instance.inTimeFrac)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_linear_resampler.inTimeFrac)) == 4, "ma_linear_resampler.inTimeFrac has unexpected size % instead of 4", size_of(type_of(ma_linear_resampler.inTimeFrac))); + assert(((cast(*void)(*instance.x0)) - cast(*void)(*instance)) == 48, "ma_linear_resampler.x0 has unexpected offset % instead of 48", ((cast(*void)(*instance.x0)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_linear_resampler.x0)) == 8, "ma_linear_resampler.x0 has unexpected size % instead of 8", size_of(type_of(ma_linear_resampler.x0))); + assert(((cast(*void)(*instance.x1)) - cast(*void)(*instance)) == 56, "ma_linear_resampler.x1 has unexpected offset % instead of 56", ((cast(*void)(*instance.x1)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_linear_resampler.x1)) == 8, "ma_linear_resampler.x1 has unexpected size % instead of 8", size_of(type_of(ma_linear_resampler.x1))); + assert(((cast(*void)(*instance.lpf)) - cast(*void)(*instance)) == 64, "ma_linear_resampler.lpf has unexpected offset % instead of 64", ((cast(*void)(*instance.lpf)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_linear_resampler.lpf)) == 56, "ma_linear_resampler.lpf has unexpected size % instead of 56", size_of(type_of(ma_linear_resampler.lpf))); + assert(((cast(*void)(*instance._pHeap)) - cast(*void)(*instance)) == 120, "ma_linear_resampler._pHeap has unexpected offset % instead of 120", ((cast(*void)(*instance._pHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_linear_resampler._pHeap)) == 8, "ma_linear_resampler._pHeap has unexpected size % instead of 8", size_of(type_of(ma_linear_resampler._pHeap))); + assert(((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance)) == 128, "ma_linear_resampler._ownsHeap has unexpected offset % instead of 128", ((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_linear_resampler._ownsHeap)) == 4, "ma_linear_resampler._ownsHeap has unexpected size % instead of 4", size_of(type_of(ma_linear_resampler._ownsHeap))); + assert(size_of(ma_linear_resampler) == 136, "ma_linear_resampler has size % instead of 136", size_of(ma_linear_resampler)); + } + + { + instance: ma_resampling_backend_vtable; + assert(((cast(*void)(*instance.onGetHeapSize)) - cast(*void)(*instance)) == 0, "ma_resampling_backend_vtable.onGetHeapSize has unexpected offset % instead of 0", ((cast(*void)(*instance.onGetHeapSize)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampling_backend_vtable.onGetHeapSize)) == 8, "ma_resampling_backend_vtable.onGetHeapSize has unexpected size % instead of 8", size_of(type_of(ma_resampling_backend_vtable.onGetHeapSize))); + assert(((cast(*void)(*instance.onInit)) - cast(*void)(*instance)) == 8, "ma_resampling_backend_vtable.onInit has unexpected offset % instead of 8", ((cast(*void)(*instance.onInit)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampling_backend_vtable.onInit)) == 8, "ma_resampling_backend_vtable.onInit has unexpected size % instead of 8", size_of(type_of(ma_resampling_backend_vtable.onInit))); + assert(((cast(*void)(*instance.onUninit)) - cast(*void)(*instance)) == 16, "ma_resampling_backend_vtable.onUninit has unexpected offset % instead of 16", ((cast(*void)(*instance.onUninit)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampling_backend_vtable.onUninit)) == 8, "ma_resampling_backend_vtable.onUninit has unexpected size % instead of 8", size_of(type_of(ma_resampling_backend_vtable.onUninit))); + assert(((cast(*void)(*instance.onProcess)) - cast(*void)(*instance)) == 24, "ma_resampling_backend_vtable.onProcess has unexpected offset % instead of 24", ((cast(*void)(*instance.onProcess)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampling_backend_vtable.onProcess)) == 8, "ma_resampling_backend_vtable.onProcess has unexpected size % instead of 8", size_of(type_of(ma_resampling_backend_vtable.onProcess))); + assert(((cast(*void)(*instance.onSetRate)) - cast(*void)(*instance)) == 32, "ma_resampling_backend_vtable.onSetRate has unexpected offset % instead of 32", ((cast(*void)(*instance.onSetRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampling_backend_vtable.onSetRate)) == 8, "ma_resampling_backend_vtable.onSetRate has unexpected size % instead of 8", size_of(type_of(ma_resampling_backend_vtable.onSetRate))); + assert(((cast(*void)(*instance.onGetInputLatency)) - cast(*void)(*instance)) == 40, "ma_resampling_backend_vtable.onGetInputLatency has unexpected offset % instead of 40", ((cast(*void)(*instance.onGetInputLatency)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampling_backend_vtable.onGetInputLatency)) == 8, "ma_resampling_backend_vtable.onGetInputLatency has unexpected size % instead of 8", size_of(type_of(ma_resampling_backend_vtable.onGetInputLatency))); + assert(((cast(*void)(*instance.onGetOutputLatency)) - cast(*void)(*instance)) == 48, "ma_resampling_backend_vtable.onGetOutputLatency has unexpected offset % instead of 48", ((cast(*void)(*instance.onGetOutputLatency)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampling_backend_vtable.onGetOutputLatency)) == 8, "ma_resampling_backend_vtable.onGetOutputLatency has unexpected size % instead of 8", size_of(type_of(ma_resampling_backend_vtable.onGetOutputLatency))); + assert(((cast(*void)(*instance.onGetRequiredInputFrameCount)) - cast(*void)(*instance)) == 56, "ma_resampling_backend_vtable.onGetRequiredInputFrameCount has unexpected offset % instead of 56", ((cast(*void)(*instance.onGetRequiredInputFrameCount)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampling_backend_vtable.onGetRequiredInputFrameCount)) == 8, "ma_resampling_backend_vtable.onGetRequiredInputFrameCount has unexpected size % instead of 8", size_of(type_of(ma_resampling_backend_vtable.onGetRequiredInputFrameCount))); + assert(((cast(*void)(*instance.onGetExpectedOutputFrameCount)) - cast(*void)(*instance)) == 64, "ma_resampling_backend_vtable.onGetExpectedOutputFrameCount has unexpected offset % instead of 64", ((cast(*void)(*instance.onGetExpectedOutputFrameCount)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampling_backend_vtable.onGetExpectedOutputFrameCount)) == 8, "ma_resampling_backend_vtable.onGetExpectedOutputFrameCount has unexpected size % instead of 8", size_of(type_of(ma_resampling_backend_vtable.onGetExpectedOutputFrameCount))); + assert(((cast(*void)(*instance.onReset)) - cast(*void)(*instance)) == 72, "ma_resampling_backend_vtable.onReset has unexpected offset % instead of 72", ((cast(*void)(*instance.onReset)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampling_backend_vtable.onReset)) == 8, "ma_resampling_backend_vtable.onReset has unexpected size % instead of 8", size_of(type_of(ma_resampling_backend_vtable.onReset))); + assert(size_of(ma_resampling_backend_vtable) == 80, "ma_resampling_backend_vtable has size % instead of 80", size_of(ma_resampling_backend_vtable)); + } + + { + instance: ma_resampler_config; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_resampler_config.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampler_config.format)) == 4, "ma_resampler_config.format has unexpected size % instead of 4", size_of(type_of(ma_resampler_config.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_resampler_config.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampler_config.channels)) == 4, "ma_resampler_config.channels has unexpected size % instead of 4", size_of(type_of(ma_resampler_config.channels))); + assert(((cast(*void)(*instance.sampleRateIn)) - cast(*void)(*instance)) == 8, "ma_resampler_config.sampleRateIn has unexpected offset % instead of 8", ((cast(*void)(*instance.sampleRateIn)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampler_config.sampleRateIn)) == 4, "ma_resampler_config.sampleRateIn has unexpected size % instead of 4", size_of(type_of(ma_resampler_config.sampleRateIn))); + assert(((cast(*void)(*instance.sampleRateOut)) - cast(*void)(*instance)) == 12, "ma_resampler_config.sampleRateOut has unexpected offset % instead of 12", ((cast(*void)(*instance.sampleRateOut)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampler_config.sampleRateOut)) == 4, "ma_resampler_config.sampleRateOut has unexpected size % instead of 4", size_of(type_of(ma_resampler_config.sampleRateOut))); + assert(((cast(*void)(*instance.algorithm)) - cast(*void)(*instance)) == 16, "ma_resampler_config.algorithm has unexpected offset % instead of 16", ((cast(*void)(*instance.algorithm)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampler_config.algorithm)) == 4, "ma_resampler_config.algorithm has unexpected size % instead of 4", size_of(type_of(ma_resampler_config.algorithm))); + assert(((cast(*void)(*instance.pBackendVTable)) - cast(*void)(*instance)) == 24, "ma_resampler_config.pBackendVTable has unexpected offset % instead of 24", ((cast(*void)(*instance.pBackendVTable)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampler_config.pBackendVTable)) == 8, "ma_resampler_config.pBackendVTable has unexpected size % instead of 8", size_of(type_of(ma_resampler_config.pBackendVTable))); + assert(((cast(*void)(*instance.pBackendUserData)) - cast(*void)(*instance)) == 32, "ma_resampler_config.pBackendUserData has unexpected offset % instead of 32", ((cast(*void)(*instance.pBackendUserData)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampler_config.pBackendUserData)) == 8, "ma_resampler_config.pBackendUserData has unexpected size % instead of 8", size_of(type_of(ma_resampler_config.pBackendUserData))); + assert(((cast(*void)(*instance.linear)) - cast(*void)(*instance)) == 40, "ma_resampler_config.linear has unexpected offset % instead of 40", ((cast(*void)(*instance.linear)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampler_config.linear)) == 4, "ma_resampler_config.linear has unexpected size % instead of 4", size_of(type_of(ma_resampler_config.linear))); + assert(size_of(ma_resampler_config) == 48, "ma_resampler_config has size % instead of 48", size_of(ma_resampler_config)); + } + + { + instance: ma_resampler; + assert(((cast(*void)(*instance.pBackend)) - cast(*void)(*instance)) == 0, "ma_resampler.pBackend has unexpected offset % instead of 0", ((cast(*void)(*instance.pBackend)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampler.pBackend)) == 8, "ma_resampler.pBackend has unexpected size % instead of 8", size_of(type_of(ma_resampler.pBackend))); + assert(((cast(*void)(*instance.pBackendVTable)) - cast(*void)(*instance)) == 8, "ma_resampler.pBackendVTable has unexpected offset % instead of 8", ((cast(*void)(*instance.pBackendVTable)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampler.pBackendVTable)) == 8, "ma_resampler.pBackendVTable has unexpected size % instead of 8", size_of(type_of(ma_resampler.pBackendVTable))); + assert(((cast(*void)(*instance.pBackendUserData)) - cast(*void)(*instance)) == 16, "ma_resampler.pBackendUserData has unexpected offset % instead of 16", ((cast(*void)(*instance.pBackendUserData)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampler.pBackendUserData)) == 8, "ma_resampler.pBackendUserData has unexpected size % instead of 8", size_of(type_of(ma_resampler.pBackendUserData))); + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 24, "ma_resampler.format has unexpected offset % instead of 24", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampler.format)) == 4, "ma_resampler.format has unexpected size % instead of 4", size_of(type_of(ma_resampler.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 28, "ma_resampler.channels has unexpected offset % instead of 28", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampler.channels)) == 4, "ma_resampler.channels has unexpected size % instead of 4", size_of(type_of(ma_resampler.channels))); + assert(((cast(*void)(*instance.sampleRateIn)) - cast(*void)(*instance)) == 32, "ma_resampler.sampleRateIn has unexpected offset % instead of 32", ((cast(*void)(*instance.sampleRateIn)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampler.sampleRateIn)) == 4, "ma_resampler.sampleRateIn has unexpected size % instead of 4", size_of(type_of(ma_resampler.sampleRateIn))); + assert(((cast(*void)(*instance.sampleRateOut)) - cast(*void)(*instance)) == 36, "ma_resampler.sampleRateOut has unexpected offset % instead of 36", ((cast(*void)(*instance.sampleRateOut)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampler.sampleRateOut)) == 4, "ma_resampler.sampleRateOut has unexpected size % instead of 4", size_of(type_of(ma_resampler.sampleRateOut))); + assert(((cast(*void)(*instance.state)) - cast(*void)(*instance)) == 40, "ma_resampler.state has unexpected offset % instead of 40", ((cast(*void)(*instance.state)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampler.state)) == 136, "ma_resampler.state has unexpected size % instead of 136", size_of(type_of(ma_resampler.state))); + assert(((cast(*void)(*instance._pHeap)) - cast(*void)(*instance)) == 176, "ma_resampler._pHeap has unexpected offset % instead of 176", ((cast(*void)(*instance._pHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampler._pHeap)) == 8, "ma_resampler._pHeap has unexpected size % instead of 8", size_of(type_of(ma_resampler._pHeap))); + assert(((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance)) == 184, "ma_resampler._ownsHeap has unexpected offset % instead of 184", ((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resampler._ownsHeap)) == 4, "ma_resampler._ownsHeap has unexpected size % instead of 4", size_of(type_of(ma_resampler._ownsHeap))); + assert(size_of(ma_resampler) == 192, "ma_resampler has size % instead of 192", size_of(ma_resampler)); + } + + { + instance: ma_channel_converter_config; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_channel_converter_config.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_channel_converter_config.format)) == 4, "ma_channel_converter_config.format has unexpected size % instead of 4", size_of(type_of(ma_channel_converter_config.format))); + assert(((cast(*void)(*instance.channelsIn)) - cast(*void)(*instance)) == 4, "ma_channel_converter_config.channelsIn has unexpected offset % instead of 4", ((cast(*void)(*instance.channelsIn)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_channel_converter_config.channelsIn)) == 4, "ma_channel_converter_config.channelsIn has unexpected size % instead of 4", size_of(type_of(ma_channel_converter_config.channelsIn))); + assert(((cast(*void)(*instance.channelsOut)) - cast(*void)(*instance)) == 8, "ma_channel_converter_config.channelsOut has unexpected offset % instead of 8", ((cast(*void)(*instance.channelsOut)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_channel_converter_config.channelsOut)) == 4, "ma_channel_converter_config.channelsOut has unexpected size % instead of 4", size_of(type_of(ma_channel_converter_config.channelsOut))); + assert(((cast(*void)(*instance.pChannelMapIn)) - cast(*void)(*instance)) == 16, "ma_channel_converter_config.pChannelMapIn has unexpected offset % instead of 16", ((cast(*void)(*instance.pChannelMapIn)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_channel_converter_config.pChannelMapIn)) == 8, "ma_channel_converter_config.pChannelMapIn has unexpected size % instead of 8", size_of(type_of(ma_channel_converter_config.pChannelMapIn))); + assert(((cast(*void)(*instance.pChannelMapOut)) - cast(*void)(*instance)) == 24, "ma_channel_converter_config.pChannelMapOut has unexpected offset % instead of 24", ((cast(*void)(*instance.pChannelMapOut)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_channel_converter_config.pChannelMapOut)) == 8, "ma_channel_converter_config.pChannelMapOut has unexpected size % instead of 8", size_of(type_of(ma_channel_converter_config.pChannelMapOut))); + assert(((cast(*void)(*instance.mixingMode)) - cast(*void)(*instance)) == 32, "ma_channel_converter_config.mixingMode has unexpected offset % instead of 32", ((cast(*void)(*instance.mixingMode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_channel_converter_config.mixingMode)) == 4, "ma_channel_converter_config.mixingMode has unexpected size % instead of 4", size_of(type_of(ma_channel_converter_config.mixingMode))); + assert(((cast(*void)(*instance.calculateLFEFromSpatialChannels)) - cast(*void)(*instance)) == 36, "ma_channel_converter_config.calculateLFEFromSpatialChannels has unexpected offset % instead of 36", ((cast(*void)(*instance.calculateLFEFromSpatialChannels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_channel_converter_config.calculateLFEFromSpatialChannels)) == 4, "ma_channel_converter_config.calculateLFEFromSpatialChannels has unexpected size % instead of 4", size_of(type_of(ma_channel_converter_config.calculateLFEFromSpatialChannels))); + assert(((cast(*void)(*instance.ppWeights)) - cast(*void)(*instance)) == 40, "ma_channel_converter_config.ppWeights has unexpected offset % instead of 40", ((cast(*void)(*instance.ppWeights)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_channel_converter_config.ppWeights)) == 8, "ma_channel_converter_config.ppWeights has unexpected size % instead of 8", size_of(type_of(ma_channel_converter_config.ppWeights))); + assert(size_of(ma_channel_converter_config) == 48, "ma_channel_converter_config has size % instead of 48", size_of(ma_channel_converter_config)); + } + + { + instance: ma_channel_converter; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_channel_converter.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_channel_converter.format)) == 4, "ma_channel_converter.format has unexpected size % instead of 4", size_of(type_of(ma_channel_converter.format))); + assert(((cast(*void)(*instance.channelsIn)) - cast(*void)(*instance)) == 4, "ma_channel_converter.channelsIn has unexpected offset % instead of 4", ((cast(*void)(*instance.channelsIn)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_channel_converter.channelsIn)) == 4, "ma_channel_converter.channelsIn has unexpected size % instead of 4", size_of(type_of(ma_channel_converter.channelsIn))); + assert(((cast(*void)(*instance.channelsOut)) - cast(*void)(*instance)) == 8, "ma_channel_converter.channelsOut has unexpected offset % instead of 8", ((cast(*void)(*instance.channelsOut)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_channel_converter.channelsOut)) == 4, "ma_channel_converter.channelsOut has unexpected size % instead of 4", size_of(type_of(ma_channel_converter.channelsOut))); + assert(((cast(*void)(*instance.mixingMode)) - cast(*void)(*instance)) == 12, "ma_channel_converter.mixingMode has unexpected offset % instead of 12", ((cast(*void)(*instance.mixingMode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_channel_converter.mixingMode)) == 4, "ma_channel_converter.mixingMode has unexpected size % instead of 4", size_of(type_of(ma_channel_converter.mixingMode))); + assert(((cast(*void)(*instance.conversionPath)) - cast(*void)(*instance)) == 16, "ma_channel_converter.conversionPath has unexpected offset % instead of 16", ((cast(*void)(*instance.conversionPath)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_channel_converter.conversionPath)) == 4, "ma_channel_converter.conversionPath has unexpected size % instead of 4", size_of(type_of(ma_channel_converter.conversionPath))); + assert(((cast(*void)(*instance.pChannelMapIn)) - cast(*void)(*instance)) == 24, "ma_channel_converter.pChannelMapIn has unexpected offset % instead of 24", ((cast(*void)(*instance.pChannelMapIn)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_channel_converter.pChannelMapIn)) == 8, "ma_channel_converter.pChannelMapIn has unexpected size % instead of 8", size_of(type_of(ma_channel_converter.pChannelMapIn))); + assert(((cast(*void)(*instance.pChannelMapOut)) - cast(*void)(*instance)) == 32, "ma_channel_converter.pChannelMapOut has unexpected offset % instead of 32", ((cast(*void)(*instance.pChannelMapOut)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_channel_converter.pChannelMapOut)) == 8, "ma_channel_converter.pChannelMapOut has unexpected size % instead of 8", size_of(type_of(ma_channel_converter.pChannelMapOut))); + assert(((cast(*void)(*instance.pShuffleTable)) - cast(*void)(*instance)) == 40, "ma_channel_converter.pShuffleTable has unexpected offset % instead of 40", ((cast(*void)(*instance.pShuffleTable)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_channel_converter.pShuffleTable)) == 8, "ma_channel_converter.pShuffleTable has unexpected size % instead of 8", size_of(type_of(ma_channel_converter.pShuffleTable))); + assert(((cast(*void)(*instance.weights)) - cast(*void)(*instance)) == 48, "ma_channel_converter.weights has unexpected offset % instead of 48", ((cast(*void)(*instance.weights)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_channel_converter.weights)) == 8, "ma_channel_converter.weights has unexpected size % instead of 8", size_of(type_of(ma_channel_converter.weights))); + assert(((cast(*void)(*instance._pHeap)) - cast(*void)(*instance)) == 56, "ma_channel_converter._pHeap has unexpected offset % instead of 56", ((cast(*void)(*instance._pHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_channel_converter._pHeap)) == 8, "ma_channel_converter._pHeap has unexpected size % instead of 8", size_of(type_of(ma_channel_converter._pHeap))); + assert(((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance)) == 64, "ma_channel_converter._ownsHeap has unexpected offset % instead of 64", ((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_channel_converter._ownsHeap)) == 4, "ma_channel_converter._ownsHeap has unexpected size % instead of 4", size_of(type_of(ma_channel_converter._ownsHeap))); + assert(size_of(ma_channel_converter) == 72, "ma_channel_converter has size % instead of 72", size_of(ma_channel_converter)); + } + + { + instance: ma_data_converter_config; + assert(((cast(*void)(*instance.formatIn)) - cast(*void)(*instance)) == 0, "ma_data_converter_config.formatIn has unexpected offset % instead of 0", ((cast(*void)(*instance.formatIn)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter_config.formatIn)) == 4, "ma_data_converter_config.formatIn has unexpected size % instead of 4", size_of(type_of(ma_data_converter_config.formatIn))); + assert(((cast(*void)(*instance.formatOut)) - cast(*void)(*instance)) == 4, "ma_data_converter_config.formatOut has unexpected offset % instead of 4", ((cast(*void)(*instance.formatOut)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter_config.formatOut)) == 4, "ma_data_converter_config.formatOut has unexpected size % instead of 4", size_of(type_of(ma_data_converter_config.formatOut))); + assert(((cast(*void)(*instance.channelsIn)) - cast(*void)(*instance)) == 8, "ma_data_converter_config.channelsIn has unexpected offset % instead of 8", ((cast(*void)(*instance.channelsIn)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter_config.channelsIn)) == 4, "ma_data_converter_config.channelsIn has unexpected size % instead of 4", size_of(type_of(ma_data_converter_config.channelsIn))); + assert(((cast(*void)(*instance.channelsOut)) - cast(*void)(*instance)) == 12, "ma_data_converter_config.channelsOut has unexpected offset % instead of 12", ((cast(*void)(*instance.channelsOut)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter_config.channelsOut)) == 4, "ma_data_converter_config.channelsOut has unexpected size % instead of 4", size_of(type_of(ma_data_converter_config.channelsOut))); + assert(((cast(*void)(*instance.sampleRateIn)) - cast(*void)(*instance)) == 16, "ma_data_converter_config.sampleRateIn has unexpected offset % instead of 16", ((cast(*void)(*instance.sampleRateIn)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter_config.sampleRateIn)) == 4, "ma_data_converter_config.sampleRateIn has unexpected size % instead of 4", size_of(type_of(ma_data_converter_config.sampleRateIn))); + assert(((cast(*void)(*instance.sampleRateOut)) - cast(*void)(*instance)) == 20, "ma_data_converter_config.sampleRateOut has unexpected offset % instead of 20", ((cast(*void)(*instance.sampleRateOut)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter_config.sampleRateOut)) == 4, "ma_data_converter_config.sampleRateOut has unexpected size % instead of 4", size_of(type_of(ma_data_converter_config.sampleRateOut))); + assert(((cast(*void)(*instance.pChannelMapIn)) - cast(*void)(*instance)) == 24, "ma_data_converter_config.pChannelMapIn has unexpected offset % instead of 24", ((cast(*void)(*instance.pChannelMapIn)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter_config.pChannelMapIn)) == 8, "ma_data_converter_config.pChannelMapIn has unexpected size % instead of 8", size_of(type_of(ma_data_converter_config.pChannelMapIn))); + assert(((cast(*void)(*instance.pChannelMapOut)) - cast(*void)(*instance)) == 32, "ma_data_converter_config.pChannelMapOut has unexpected offset % instead of 32", ((cast(*void)(*instance.pChannelMapOut)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter_config.pChannelMapOut)) == 8, "ma_data_converter_config.pChannelMapOut has unexpected size % instead of 8", size_of(type_of(ma_data_converter_config.pChannelMapOut))); + assert(((cast(*void)(*instance.ditherMode)) - cast(*void)(*instance)) == 40, "ma_data_converter_config.ditherMode has unexpected offset % instead of 40", ((cast(*void)(*instance.ditherMode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter_config.ditherMode)) == 4, "ma_data_converter_config.ditherMode has unexpected size % instead of 4", size_of(type_of(ma_data_converter_config.ditherMode))); + assert(((cast(*void)(*instance.channelMixMode)) - cast(*void)(*instance)) == 44, "ma_data_converter_config.channelMixMode has unexpected offset % instead of 44", ((cast(*void)(*instance.channelMixMode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter_config.channelMixMode)) == 4, "ma_data_converter_config.channelMixMode has unexpected size % instead of 4", size_of(type_of(ma_data_converter_config.channelMixMode))); + assert(((cast(*void)(*instance.calculateLFEFromSpatialChannels)) - cast(*void)(*instance)) == 48, "ma_data_converter_config.calculateLFEFromSpatialChannels has unexpected offset % instead of 48", ((cast(*void)(*instance.calculateLFEFromSpatialChannels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter_config.calculateLFEFromSpatialChannels)) == 4, "ma_data_converter_config.calculateLFEFromSpatialChannels has unexpected size % instead of 4", size_of(type_of(ma_data_converter_config.calculateLFEFromSpatialChannels))); + assert(((cast(*void)(*instance.ppChannelWeights)) - cast(*void)(*instance)) == 56, "ma_data_converter_config.ppChannelWeights has unexpected offset % instead of 56", ((cast(*void)(*instance.ppChannelWeights)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter_config.ppChannelWeights)) == 8, "ma_data_converter_config.ppChannelWeights has unexpected size % instead of 8", size_of(type_of(ma_data_converter_config.ppChannelWeights))); + assert(((cast(*void)(*instance.allowDynamicSampleRate)) - cast(*void)(*instance)) == 64, "ma_data_converter_config.allowDynamicSampleRate has unexpected offset % instead of 64", ((cast(*void)(*instance.allowDynamicSampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter_config.allowDynamicSampleRate)) == 4, "ma_data_converter_config.allowDynamicSampleRate has unexpected size % instead of 4", size_of(type_of(ma_data_converter_config.allowDynamicSampleRate))); + assert(((cast(*void)(*instance.resampling)) - cast(*void)(*instance)) == 72, "ma_data_converter_config.resampling has unexpected offset % instead of 72", ((cast(*void)(*instance.resampling)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter_config.resampling)) == 48, "ma_data_converter_config.resampling has unexpected size % instead of 48", size_of(type_of(ma_data_converter_config.resampling))); + assert(size_of(ma_data_converter_config) == 120, "ma_data_converter_config has size % instead of 120", size_of(ma_data_converter_config)); + } + + { + instance: ma_data_converter; + assert(((cast(*void)(*instance.formatIn)) - cast(*void)(*instance)) == 0, "ma_data_converter.formatIn has unexpected offset % instead of 0", ((cast(*void)(*instance.formatIn)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter.formatIn)) == 4, "ma_data_converter.formatIn has unexpected size % instead of 4", size_of(type_of(ma_data_converter.formatIn))); + assert(((cast(*void)(*instance.formatOut)) - cast(*void)(*instance)) == 4, "ma_data_converter.formatOut has unexpected offset % instead of 4", ((cast(*void)(*instance.formatOut)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter.formatOut)) == 4, "ma_data_converter.formatOut has unexpected size % instead of 4", size_of(type_of(ma_data_converter.formatOut))); + assert(((cast(*void)(*instance.channelsIn)) - cast(*void)(*instance)) == 8, "ma_data_converter.channelsIn has unexpected offset % instead of 8", ((cast(*void)(*instance.channelsIn)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter.channelsIn)) == 4, "ma_data_converter.channelsIn has unexpected size % instead of 4", size_of(type_of(ma_data_converter.channelsIn))); + assert(((cast(*void)(*instance.channelsOut)) - cast(*void)(*instance)) == 12, "ma_data_converter.channelsOut has unexpected offset % instead of 12", ((cast(*void)(*instance.channelsOut)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter.channelsOut)) == 4, "ma_data_converter.channelsOut has unexpected size % instead of 4", size_of(type_of(ma_data_converter.channelsOut))); + assert(((cast(*void)(*instance.sampleRateIn)) - cast(*void)(*instance)) == 16, "ma_data_converter.sampleRateIn has unexpected offset % instead of 16", ((cast(*void)(*instance.sampleRateIn)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter.sampleRateIn)) == 4, "ma_data_converter.sampleRateIn has unexpected size % instead of 4", size_of(type_of(ma_data_converter.sampleRateIn))); + assert(((cast(*void)(*instance.sampleRateOut)) - cast(*void)(*instance)) == 20, "ma_data_converter.sampleRateOut has unexpected offset % instead of 20", ((cast(*void)(*instance.sampleRateOut)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter.sampleRateOut)) == 4, "ma_data_converter.sampleRateOut has unexpected size % instead of 4", size_of(type_of(ma_data_converter.sampleRateOut))); + assert(((cast(*void)(*instance.ditherMode)) - cast(*void)(*instance)) == 24, "ma_data_converter.ditherMode has unexpected offset % instead of 24", ((cast(*void)(*instance.ditherMode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter.ditherMode)) == 4, "ma_data_converter.ditherMode has unexpected size % instead of 4", size_of(type_of(ma_data_converter.ditherMode))); + assert(((cast(*void)(*instance.executionPath)) - cast(*void)(*instance)) == 28, "ma_data_converter.executionPath has unexpected offset % instead of 28", ((cast(*void)(*instance.executionPath)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter.executionPath)) == 4, "ma_data_converter.executionPath has unexpected size % instead of 4", size_of(type_of(ma_data_converter.executionPath))); + assert(((cast(*void)(*instance.channelConverter)) - cast(*void)(*instance)) == 32, "ma_data_converter.channelConverter has unexpected offset % instead of 32", ((cast(*void)(*instance.channelConverter)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter.channelConverter)) == 72, "ma_data_converter.channelConverter has unexpected size % instead of 72", size_of(type_of(ma_data_converter.channelConverter))); + assert(((cast(*void)(*instance.resampler)) - cast(*void)(*instance)) == 104, "ma_data_converter.resampler has unexpected offset % instead of 104", ((cast(*void)(*instance.resampler)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter.resampler)) == 192, "ma_data_converter.resampler has unexpected size % instead of 192", size_of(type_of(ma_data_converter.resampler))); + assert(((cast(*void)(*instance.hasPreFormatConversion)) - cast(*void)(*instance)) == 296, "ma_data_converter.hasPreFormatConversion has unexpected offset % instead of 296", ((cast(*void)(*instance.hasPreFormatConversion)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter.hasPreFormatConversion)) == 1, "ma_data_converter.hasPreFormatConversion has unexpected size % instead of 1", size_of(type_of(ma_data_converter.hasPreFormatConversion))); + assert(((cast(*void)(*instance.hasPostFormatConversion)) - cast(*void)(*instance)) == 297, "ma_data_converter.hasPostFormatConversion has unexpected offset % instead of 297", ((cast(*void)(*instance.hasPostFormatConversion)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter.hasPostFormatConversion)) == 1, "ma_data_converter.hasPostFormatConversion has unexpected size % instead of 1", size_of(type_of(ma_data_converter.hasPostFormatConversion))); + assert(((cast(*void)(*instance.hasChannelConverter)) - cast(*void)(*instance)) == 298, "ma_data_converter.hasChannelConverter has unexpected offset % instead of 298", ((cast(*void)(*instance.hasChannelConverter)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter.hasChannelConverter)) == 1, "ma_data_converter.hasChannelConverter has unexpected size % instead of 1", size_of(type_of(ma_data_converter.hasChannelConverter))); + assert(((cast(*void)(*instance.hasResampler)) - cast(*void)(*instance)) == 299, "ma_data_converter.hasResampler has unexpected offset % instead of 299", ((cast(*void)(*instance.hasResampler)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter.hasResampler)) == 1, "ma_data_converter.hasResampler has unexpected size % instead of 1", size_of(type_of(ma_data_converter.hasResampler))); + assert(((cast(*void)(*instance.isPassthrough)) - cast(*void)(*instance)) == 300, "ma_data_converter.isPassthrough has unexpected offset % instead of 300", ((cast(*void)(*instance.isPassthrough)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter.isPassthrough)) == 1, "ma_data_converter.isPassthrough has unexpected size % instead of 1", size_of(type_of(ma_data_converter.isPassthrough))); + assert(((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance)) == 301, "ma_data_converter._ownsHeap has unexpected offset % instead of 301", ((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter._ownsHeap)) == 1, "ma_data_converter._ownsHeap has unexpected size % instead of 1", size_of(type_of(ma_data_converter._ownsHeap))); + assert(((cast(*void)(*instance._pHeap)) - cast(*void)(*instance)) == 304, "ma_data_converter._pHeap has unexpected offset % instead of 304", ((cast(*void)(*instance._pHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_converter._pHeap)) == 8, "ma_data_converter._pHeap has unexpected size % instead of 8", size_of(type_of(ma_data_converter._pHeap))); + assert(size_of(ma_data_converter) == 312, "ma_data_converter has size % instead of 312", size_of(ma_data_converter)); + } + + { + instance: ma_data_source_vtable; + assert(((cast(*void)(*instance.onRead)) - cast(*void)(*instance)) == 0, "ma_data_source_vtable.onRead has unexpected offset % instead of 0", ((cast(*void)(*instance.onRead)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_source_vtable.onRead)) == 8, "ma_data_source_vtable.onRead has unexpected size % instead of 8", size_of(type_of(ma_data_source_vtable.onRead))); + assert(((cast(*void)(*instance.onSeek)) - cast(*void)(*instance)) == 8, "ma_data_source_vtable.onSeek has unexpected offset % instead of 8", ((cast(*void)(*instance.onSeek)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_source_vtable.onSeek)) == 8, "ma_data_source_vtable.onSeek has unexpected size % instead of 8", size_of(type_of(ma_data_source_vtable.onSeek))); + assert(((cast(*void)(*instance.onGetDataFormat)) - cast(*void)(*instance)) == 16, "ma_data_source_vtable.onGetDataFormat has unexpected offset % instead of 16", ((cast(*void)(*instance.onGetDataFormat)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_source_vtable.onGetDataFormat)) == 8, "ma_data_source_vtable.onGetDataFormat has unexpected size % instead of 8", size_of(type_of(ma_data_source_vtable.onGetDataFormat))); + assert(((cast(*void)(*instance.onGetCursor)) - cast(*void)(*instance)) == 24, "ma_data_source_vtable.onGetCursor has unexpected offset % instead of 24", ((cast(*void)(*instance.onGetCursor)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_source_vtable.onGetCursor)) == 8, "ma_data_source_vtable.onGetCursor has unexpected size % instead of 8", size_of(type_of(ma_data_source_vtable.onGetCursor))); + assert(((cast(*void)(*instance.onGetLength)) - cast(*void)(*instance)) == 32, "ma_data_source_vtable.onGetLength has unexpected offset % instead of 32", ((cast(*void)(*instance.onGetLength)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_source_vtable.onGetLength)) == 8, "ma_data_source_vtable.onGetLength has unexpected size % instead of 8", size_of(type_of(ma_data_source_vtable.onGetLength))); + assert(((cast(*void)(*instance.onSetLooping)) - cast(*void)(*instance)) == 40, "ma_data_source_vtable.onSetLooping has unexpected offset % instead of 40", ((cast(*void)(*instance.onSetLooping)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_source_vtable.onSetLooping)) == 8, "ma_data_source_vtable.onSetLooping has unexpected size % instead of 8", size_of(type_of(ma_data_source_vtable.onSetLooping))); + assert(((cast(*void)(*instance.flags)) - cast(*void)(*instance)) == 48, "ma_data_source_vtable.flags has unexpected offset % instead of 48", ((cast(*void)(*instance.flags)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_source_vtable.flags)) == 4, "ma_data_source_vtable.flags has unexpected size % instead of 4", size_of(type_of(ma_data_source_vtable.flags))); + assert(size_of(ma_data_source_vtable) == 56, "ma_data_source_vtable has size % instead of 56", size_of(ma_data_source_vtable)); + } + + { + instance: ma_data_source_config; + assert(((cast(*void)(*instance.vtable)) - cast(*void)(*instance)) == 0, "ma_data_source_config.vtable has unexpected offset % instead of 0", ((cast(*void)(*instance.vtable)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_source_config.vtable)) == 8, "ma_data_source_config.vtable has unexpected size % instead of 8", size_of(type_of(ma_data_source_config.vtable))); + assert(size_of(ma_data_source_config) == 8, "ma_data_source_config has size % instead of 8", size_of(ma_data_source_config)); + } + + { + instance: ma_data_source_base; + assert(((cast(*void)(*instance.vtable)) - cast(*void)(*instance)) == 0, "ma_data_source_base.vtable has unexpected offset % instead of 0", ((cast(*void)(*instance.vtable)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_source_base.vtable)) == 8, "ma_data_source_base.vtable has unexpected size % instead of 8", size_of(type_of(ma_data_source_base.vtable))); + assert(((cast(*void)(*instance.rangeBegInFrames)) - cast(*void)(*instance)) == 8, "ma_data_source_base.rangeBegInFrames has unexpected offset % instead of 8", ((cast(*void)(*instance.rangeBegInFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_source_base.rangeBegInFrames)) == 8, "ma_data_source_base.rangeBegInFrames has unexpected size % instead of 8", size_of(type_of(ma_data_source_base.rangeBegInFrames))); + assert(((cast(*void)(*instance.rangeEndInFrames)) - cast(*void)(*instance)) == 16, "ma_data_source_base.rangeEndInFrames has unexpected offset % instead of 16", ((cast(*void)(*instance.rangeEndInFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_source_base.rangeEndInFrames)) == 8, "ma_data_source_base.rangeEndInFrames has unexpected size % instead of 8", size_of(type_of(ma_data_source_base.rangeEndInFrames))); + assert(((cast(*void)(*instance.loopBegInFrames)) - cast(*void)(*instance)) == 24, "ma_data_source_base.loopBegInFrames has unexpected offset % instead of 24", ((cast(*void)(*instance.loopBegInFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_source_base.loopBegInFrames)) == 8, "ma_data_source_base.loopBegInFrames has unexpected size % instead of 8", size_of(type_of(ma_data_source_base.loopBegInFrames))); + assert(((cast(*void)(*instance.loopEndInFrames)) - cast(*void)(*instance)) == 32, "ma_data_source_base.loopEndInFrames has unexpected offset % instead of 32", ((cast(*void)(*instance.loopEndInFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_source_base.loopEndInFrames)) == 8, "ma_data_source_base.loopEndInFrames has unexpected size % instead of 8", size_of(type_of(ma_data_source_base.loopEndInFrames))); + assert(((cast(*void)(*instance.pCurrent)) - cast(*void)(*instance)) == 40, "ma_data_source_base.pCurrent has unexpected offset % instead of 40", ((cast(*void)(*instance.pCurrent)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_source_base.pCurrent)) == 8, "ma_data_source_base.pCurrent has unexpected size % instead of 8", size_of(type_of(ma_data_source_base.pCurrent))); + assert(((cast(*void)(*instance.pNext)) - cast(*void)(*instance)) == 48, "ma_data_source_base.pNext has unexpected offset % instead of 48", ((cast(*void)(*instance.pNext)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_source_base.pNext)) == 8, "ma_data_source_base.pNext has unexpected size % instead of 8", size_of(type_of(ma_data_source_base.pNext))); + assert(((cast(*void)(*instance.onGetNext)) - cast(*void)(*instance)) == 56, "ma_data_source_base.onGetNext has unexpected offset % instead of 56", ((cast(*void)(*instance.onGetNext)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_source_base.onGetNext)) == 8, "ma_data_source_base.onGetNext has unexpected size % instead of 8", size_of(type_of(ma_data_source_base.onGetNext))); + assert(((cast(*void)(*instance.isLooping)) - cast(*void)(*instance)) == 64, "ma_data_source_base.isLooping has unexpected offset % instead of 64", ((cast(*void)(*instance.isLooping)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_source_base.isLooping)) == 4, "ma_data_source_base.isLooping has unexpected size % instead of 4", size_of(type_of(ma_data_source_base.isLooping))); + assert(size_of(ma_data_source_base) == 72, "ma_data_source_base has size % instead of 72", size_of(ma_data_source_base)); + } + + { + instance: ma_audio_buffer_ref; + assert(((cast(*void)(*instance.ds)) - cast(*void)(*instance)) == 0, "ma_audio_buffer_ref.ds has unexpected offset % instead of 0", ((cast(*void)(*instance.ds)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_audio_buffer_ref.ds)) == 72, "ma_audio_buffer_ref.ds has unexpected size % instead of 72", size_of(type_of(ma_audio_buffer_ref.ds))); + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 72, "ma_audio_buffer_ref.format has unexpected offset % instead of 72", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_audio_buffer_ref.format)) == 4, "ma_audio_buffer_ref.format has unexpected size % instead of 4", size_of(type_of(ma_audio_buffer_ref.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 76, "ma_audio_buffer_ref.channels has unexpected offset % instead of 76", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_audio_buffer_ref.channels)) == 4, "ma_audio_buffer_ref.channels has unexpected size % instead of 4", size_of(type_of(ma_audio_buffer_ref.channels))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 80, "ma_audio_buffer_ref.sampleRate has unexpected offset % instead of 80", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_audio_buffer_ref.sampleRate)) == 4, "ma_audio_buffer_ref.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_audio_buffer_ref.sampleRate))); + assert(((cast(*void)(*instance.cursor)) - cast(*void)(*instance)) == 88, "ma_audio_buffer_ref.cursor has unexpected offset % instead of 88", ((cast(*void)(*instance.cursor)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_audio_buffer_ref.cursor)) == 8, "ma_audio_buffer_ref.cursor has unexpected size % instead of 8", size_of(type_of(ma_audio_buffer_ref.cursor))); + assert(((cast(*void)(*instance.sizeInFrames)) - cast(*void)(*instance)) == 96, "ma_audio_buffer_ref.sizeInFrames has unexpected offset % instead of 96", ((cast(*void)(*instance.sizeInFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_audio_buffer_ref.sizeInFrames)) == 8, "ma_audio_buffer_ref.sizeInFrames has unexpected size % instead of 8", size_of(type_of(ma_audio_buffer_ref.sizeInFrames))); + assert(((cast(*void)(*instance.pData)) - cast(*void)(*instance)) == 104, "ma_audio_buffer_ref.pData has unexpected offset % instead of 104", ((cast(*void)(*instance.pData)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_audio_buffer_ref.pData)) == 8, "ma_audio_buffer_ref.pData has unexpected size % instead of 8", size_of(type_of(ma_audio_buffer_ref.pData))); + assert(size_of(ma_audio_buffer_ref) == 112, "ma_audio_buffer_ref has size % instead of 112", size_of(ma_audio_buffer_ref)); + } + + { + instance: ma_audio_buffer_config; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_audio_buffer_config.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_audio_buffer_config.format)) == 4, "ma_audio_buffer_config.format has unexpected size % instead of 4", size_of(type_of(ma_audio_buffer_config.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_audio_buffer_config.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_audio_buffer_config.channels)) == 4, "ma_audio_buffer_config.channels has unexpected size % instead of 4", size_of(type_of(ma_audio_buffer_config.channels))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 8, "ma_audio_buffer_config.sampleRate has unexpected offset % instead of 8", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_audio_buffer_config.sampleRate)) == 4, "ma_audio_buffer_config.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_audio_buffer_config.sampleRate))); + assert(((cast(*void)(*instance.sizeInFrames)) - cast(*void)(*instance)) == 16, "ma_audio_buffer_config.sizeInFrames has unexpected offset % instead of 16", ((cast(*void)(*instance.sizeInFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_audio_buffer_config.sizeInFrames)) == 8, "ma_audio_buffer_config.sizeInFrames has unexpected size % instead of 8", size_of(type_of(ma_audio_buffer_config.sizeInFrames))); + assert(((cast(*void)(*instance.pData)) - cast(*void)(*instance)) == 24, "ma_audio_buffer_config.pData has unexpected offset % instead of 24", ((cast(*void)(*instance.pData)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_audio_buffer_config.pData)) == 8, "ma_audio_buffer_config.pData has unexpected size % instead of 8", size_of(type_of(ma_audio_buffer_config.pData))); + assert(((cast(*void)(*instance.allocationCallbacks)) - cast(*void)(*instance)) == 32, "ma_audio_buffer_config.allocationCallbacks has unexpected offset % instead of 32", ((cast(*void)(*instance.allocationCallbacks)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_audio_buffer_config.allocationCallbacks)) == 32, "ma_audio_buffer_config.allocationCallbacks has unexpected size % instead of 32", size_of(type_of(ma_audio_buffer_config.allocationCallbacks))); + assert(size_of(ma_audio_buffer_config) == 64, "ma_audio_buffer_config has size % instead of 64", size_of(ma_audio_buffer_config)); + } + + { + instance: ma_audio_buffer; + assert(((cast(*void)(*instance.ref)) - cast(*void)(*instance)) == 0, "ma_audio_buffer.ref has unexpected offset % instead of 0", ((cast(*void)(*instance.ref)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_audio_buffer.ref)) == 112, "ma_audio_buffer.ref has unexpected size % instead of 112", size_of(type_of(ma_audio_buffer.ref))); + assert(((cast(*void)(*instance.allocationCallbacks)) - cast(*void)(*instance)) == 112, "ma_audio_buffer.allocationCallbacks has unexpected offset % instead of 112", ((cast(*void)(*instance.allocationCallbacks)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_audio_buffer.allocationCallbacks)) == 32, "ma_audio_buffer.allocationCallbacks has unexpected size % instead of 32", size_of(type_of(ma_audio_buffer.allocationCallbacks))); + assert(((cast(*void)(*instance.ownsData)) - cast(*void)(*instance)) == 144, "ma_audio_buffer.ownsData has unexpected offset % instead of 144", ((cast(*void)(*instance.ownsData)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_audio_buffer.ownsData)) == 4, "ma_audio_buffer.ownsData has unexpected size % instead of 4", size_of(type_of(ma_audio_buffer.ownsData))); + assert(((cast(*void)(*instance._pExtraData)) - cast(*void)(*instance)) == 148, "ma_audio_buffer._pExtraData has unexpected offset % instead of 148", ((cast(*void)(*instance._pExtraData)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_audio_buffer._pExtraData)) == 1, "ma_audio_buffer._pExtraData has unexpected size % instead of 1", size_of(type_of(ma_audio_buffer._pExtraData))); + assert(size_of(ma_audio_buffer) == 152, "ma_audio_buffer has size % instead of 152", size_of(ma_audio_buffer)); + } + + { + instance: ma_paged_audio_buffer_page; + assert(((cast(*void)(*instance.pNext)) - cast(*void)(*instance)) == 0, "ma_paged_audio_buffer_page.pNext has unexpected offset % instead of 0", ((cast(*void)(*instance.pNext)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_paged_audio_buffer_page.pNext)) == 8, "ma_paged_audio_buffer_page.pNext has unexpected size % instead of 8", size_of(type_of(ma_paged_audio_buffer_page.pNext))); + assert(((cast(*void)(*instance.sizeInFrames)) - cast(*void)(*instance)) == 8, "ma_paged_audio_buffer_page.sizeInFrames has unexpected offset % instead of 8", ((cast(*void)(*instance.sizeInFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_paged_audio_buffer_page.sizeInFrames)) == 8, "ma_paged_audio_buffer_page.sizeInFrames has unexpected size % instead of 8", size_of(type_of(ma_paged_audio_buffer_page.sizeInFrames))); + assert(((cast(*void)(*instance.pAudioData)) - cast(*void)(*instance)) == 16, "ma_paged_audio_buffer_page.pAudioData has unexpected offset % instead of 16", ((cast(*void)(*instance.pAudioData)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_paged_audio_buffer_page.pAudioData)) == 1, "ma_paged_audio_buffer_page.pAudioData has unexpected size % instead of 1", size_of(type_of(ma_paged_audio_buffer_page.pAudioData))); + assert(size_of(ma_paged_audio_buffer_page) == 24, "ma_paged_audio_buffer_page has size % instead of 24", size_of(ma_paged_audio_buffer_page)); + } + + { + instance: ma_paged_audio_buffer_data; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_paged_audio_buffer_data.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_paged_audio_buffer_data.format)) == 4, "ma_paged_audio_buffer_data.format has unexpected size % instead of 4", size_of(type_of(ma_paged_audio_buffer_data.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_paged_audio_buffer_data.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_paged_audio_buffer_data.channels)) == 4, "ma_paged_audio_buffer_data.channels has unexpected size % instead of 4", size_of(type_of(ma_paged_audio_buffer_data.channels))); + assert(((cast(*void)(*instance.head)) - cast(*void)(*instance)) == 8, "ma_paged_audio_buffer_data.head has unexpected offset % instead of 8", ((cast(*void)(*instance.head)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_paged_audio_buffer_data.head)) == 24, "ma_paged_audio_buffer_data.head has unexpected size % instead of 24", size_of(type_of(ma_paged_audio_buffer_data.head))); + assert(((cast(*void)(*instance.pTail)) - cast(*void)(*instance)) == 32, "ma_paged_audio_buffer_data.pTail has unexpected offset % instead of 32", ((cast(*void)(*instance.pTail)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_paged_audio_buffer_data.pTail)) == 8, "ma_paged_audio_buffer_data.pTail has unexpected size % instead of 8", size_of(type_of(ma_paged_audio_buffer_data.pTail))); + assert(size_of(ma_paged_audio_buffer_data) == 40, "ma_paged_audio_buffer_data has size % instead of 40", size_of(ma_paged_audio_buffer_data)); + } + + { + instance: ma_paged_audio_buffer_config; + assert(((cast(*void)(*instance.pData)) - cast(*void)(*instance)) == 0, "ma_paged_audio_buffer_config.pData has unexpected offset % instead of 0", ((cast(*void)(*instance.pData)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_paged_audio_buffer_config.pData)) == 8, "ma_paged_audio_buffer_config.pData has unexpected size % instead of 8", size_of(type_of(ma_paged_audio_buffer_config.pData))); + assert(size_of(ma_paged_audio_buffer_config) == 8, "ma_paged_audio_buffer_config has size % instead of 8", size_of(ma_paged_audio_buffer_config)); + } + + { + instance: ma_paged_audio_buffer; + assert(((cast(*void)(*instance.ds)) - cast(*void)(*instance)) == 0, "ma_paged_audio_buffer.ds has unexpected offset % instead of 0", ((cast(*void)(*instance.ds)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_paged_audio_buffer.ds)) == 72, "ma_paged_audio_buffer.ds has unexpected size % instead of 72", size_of(type_of(ma_paged_audio_buffer.ds))); + assert(((cast(*void)(*instance.pData)) - cast(*void)(*instance)) == 72, "ma_paged_audio_buffer.pData has unexpected offset % instead of 72", ((cast(*void)(*instance.pData)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_paged_audio_buffer.pData)) == 8, "ma_paged_audio_buffer.pData has unexpected size % instead of 8", size_of(type_of(ma_paged_audio_buffer.pData))); + assert(((cast(*void)(*instance.pCurrent)) - cast(*void)(*instance)) == 80, "ma_paged_audio_buffer.pCurrent has unexpected offset % instead of 80", ((cast(*void)(*instance.pCurrent)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_paged_audio_buffer.pCurrent)) == 8, "ma_paged_audio_buffer.pCurrent has unexpected size % instead of 8", size_of(type_of(ma_paged_audio_buffer.pCurrent))); + assert(((cast(*void)(*instance.relativeCursor)) - cast(*void)(*instance)) == 88, "ma_paged_audio_buffer.relativeCursor has unexpected offset % instead of 88", ((cast(*void)(*instance.relativeCursor)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_paged_audio_buffer.relativeCursor)) == 8, "ma_paged_audio_buffer.relativeCursor has unexpected size % instead of 8", size_of(type_of(ma_paged_audio_buffer.relativeCursor))); + assert(((cast(*void)(*instance.absoluteCursor)) - cast(*void)(*instance)) == 96, "ma_paged_audio_buffer.absoluteCursor has unexpected offset % instead of 96", ((cast(*void)(*instance.absoluteCursor)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_paged_audio_buffer.absoluteCursor)) == 8, "ma_paged_audio_buffer.absoluteCursor has unexpected size % instead of 8", size_of(type_of(ma_paged_audio_buffer.absoluteCursor))); + assert(size_of(ma_paged_audio_buffer) == 104, "ma_paged_audio_buffer has size % instead of 104", size_of(ma_paged_audio_buffer)); + } + + { + instance: ma_rb; + assert(((cast(*void)(*instance.pBuffer)) - cast(*void)(*instance)) == 0, "ma_rb.pBuffer has unexpected offset % instead of 0", ((cast(*void)(*instance.pBuffer)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_rb.pBuffer)) == 8, "ma_rb.pBuffer has unexpected size % instead of 8", size_of(type_of(ma_rb.pBuffer))); + assert(((cast(*void)(*instance.subbufferSizeInBytes)) - cast(*void)(*instance)) == 8, "ma_rb.subbufferSizeInBytes has unexpected offset % instead of 8", ((cast(*void)(*instance.subbufferSizeInBytes)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_rb.subbufferSizeInBytes)) == 4, "ma_rb.subbufferSizeInBytes has unexpected size % instead of 4", size_of(type_of(ma_rb.subbufferSizeInBytes))); + assert(((cast(*void)(*instance.subbufferCount)) - cast(*void)(*instance)) == 12, "ma_rb.subbufferCount has unexpected offset % instead of 12", ((cast(*void)(*instance.subbufferCount)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_rb.subbufferCount)) == 4, "ma_rb.subbufferCount has unexpected size % instead of 4", size_of(type_of(ma_rb.subbufferCount))); + assert(((cast(*void)(*instance.subbufferStrideInBytes)) - cast(*void)(*instance)) == 16, "ma_rb.subbufferStrideInBytes has unexpected offset % instead of 16", ((cast(*void)(*instance.subbufferStrideInBytes)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_rb.subbufferStrideInBytes)) == 4, "ma_rb.subbufferStrideInBytes has unexpected size % instead of 4", size_of(type_of(ma_rb.subbufferStrideInBytes))); + assert(((cast(*void)(*instance.encodedReadOffset)) - cast(*void)(*instance)) == 20, "ma_rb.encodedReadOffset has unexpected offset % instead of 20", ((cast(*void)(*instance.encodedReadOffset)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_rb.encodedReadOffset)) == 4, "ma_rb.encodedReadOffset has unexpected size % instead of 4", size_of(type_of(ma_rb.encodedReadOffset))); + assert(((cast(*void)(*instance.encodedWriteOffset)) - cast(*void)(*instance)) == 24, "ma_rb.encodedWriteOffset has unexpected offset % instead of 24", ((cast(*void)(*instance.encodedWriteOffset)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_rb.encodedWriteOffset)) == 4, "ma_rb.encodedWriteOffset has unexpected size % instead of 4", size_of(type_of(ma_rb.encodedWriteOffset))); + assert(((cast(*void)(*instance.ownsBuffer)) - cast(*void)(*instance)) == 28, "ma_rb.ownsBuffer has unexpected offset % instead of 28", ((cast(*void)(*instance.ownsBuffer)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_rb.ownsBuffer)) == 1, "ma_rb.ownsBuffer has unexpected size % instead of 1", size_of(type_of(ma_rb.ownsBuffer))); + assert(((cast(*void)(*instance.clearOnWriteAcquire)) - cast(*void)(*instance)) == 29, "ma_rb.clearOnWriteAcquire has unexpected offset % instead of 29", ((cast(*void)(*instance.clearOnWriteAcquire)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_rb.clearOnWriteAcquire)) == 1, "ma_rb.clearOnWriteAcquire has unexpected size % instead of 1", size_of(type_of(ma_rb.clearOnWriteAcquire))); + assert(((cast(*void)(*instance.allocationCallbacks)) - cast(*void)(*instance)) == 32, "ma_rb.allocationCallbacks has unexpected offset % instead of 32", ((cast(*void)(*instance.allocationCallbacks)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_rb.allocationCallbacks)) == 32, "ma_rb.allocationCallbacks has unexpected size % instead of 32", size_of(type_of(ma_rb.allocationCallbacks))); + assert(size_of(ma_rb) == 64, "ma_rb has size % instead of 64", size_of(ma_rb)); + } + + { + instance: ma_pcm_rb; + assert(((cast(*void)(*instance.ds)) - cast(*void)(*instance)) == 0, "ma_pcm_rb.ds has unexpected offset % instead of 0", ((cast(*void)(*instance.ds)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_pcm_rb.ds)) == 72, "ma_pcm_rb.ds has unexpected size % instead of 72", size_of(type_of(ma_pcm_rb.ds))); + assert(((cast(*void)(*instance.rb)) - cast(*void)(*instance)) == 72, "ma_pcm_rb.rb has unexpected offset % instead of 72", ((cast(*void)(*instance.rb)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_pcm_rb.rb)) == 64, "ma_pcm_rb.rb has unexpected size % instead of 64", size_of(type_of(ma_pcm_rb.rb))); + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 136, "ma_pcm_rb.format has unexpected offset % instead of 136", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_pcm_rb.format)) == 4, "ma_pcm_rb.format has unexpected size % instead of 4", size_of(type_of(ma_pcm_rb.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 140, "ma_pcm_rb.channels has unexpected offset % instead of 140", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_pcm_rb.channels)) == 4, "ma_pcm_rb.channels has unexpected size % instead of 4", size_of(type_of(ma_pcm_rb.channels))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 144, "ma_pcm_rb.sampleRate has unexpected offset % instead of 144", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_pcm_rb.sampleRate)) == 4, "ma_pcm_rb.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_pcm_rb.sampleRate))); + assert(size_of(ma_pcm_rb) == 152, "ma_pcm_rb has size % instead of 152", size_of(ma_pcm_rb)); + } + + { + instance: ma_duplex_rb; + assert(((cast(*void)(*instance.rb)) - cast(*void)(*instance)) == 0, "ma_duplex_rb.rb has unexpected offset % instead of 0", ((cast(*void)(*instance.rb)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_duplex_rb.rb)) == 152, "ma_duplex_rb.rb has unexpected size % instead of 152", size_of(type_of(ma_duplex_rb.rb))); + assert(size_of(ma_duplex_rb) == 152, "ma_duplex_rb has size % instead of 152", size_of(ma_duplex_rb)); + } + + { + instance: ma_fence; + assert(((cast(*void)(*instance.e)) - cast(*void)(*instance)) == 0, "ma_fence.e has unexpected offset % instead of 0", ((cast(*void)(*instance.e)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_fence.e)) == 8, "ma_fence.e has unexpected size % instead of 8", size_of(type_of(ma_fence.e))); + assert(((cast(*void)(*instance.counter)) - cast(*void)(*instance)) == 8, "ma_fence.counter has unexpected offset % instead of 8", ((cast(*void)(*instance.counter)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_fence.counter)) == 4, "ma_fence.counter has unexpected size % instead of 4", size_of(type_of(ma_fence.counter))); + assert(size_of(ma_fence) == 16, "ma_fence has size % instead of 16", size_of(ma_fence)); + } + + { + instance: ma_async_notification_callbacks; + assert(((cast(*void)(*instance.onSignal)) - cast(*void)(*instance)) == 0, "ma_async_notification_callbacks.onSignal has unexpected offset % instead of 0", ((cast(*void)(*instance.onSignal)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_async_notification_callbacks.onSignal)) == 8, "ma_async_notification_callbacks.onSignal has unexpected size % instead of 8", size_of(type_of(ma_async_notification_callbacks.onSignal))); + assert(size_of(ma_async_notification_callbacks) == 8, "ma_async_notification_callbacks has size % instead of 8", size_of(ma_async_notification_callbacks)); + } + + { + instance: ma_async_notification_poll; + assert(((cast(*void)(*instance.cb)) - cast(*void)(*instance)) == 0, "ma_async_notification_poll.cb has unexpected offset % instead of 0", ((cast(*void)(*instance.cb)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_async_notification_poll.cb)) == 8, "ma_async_notification_poll.cb has unexpected size % instead of 8", size_of(type_of(ma_async_notification_poll.cb))); + assert(((cast(*void)(*instance.signalled)) - cast(*void)(*instance)) == 8, "ma_async_notification_poll.signalled has unexpected offset % instead of 8", ((cast(*void)(*instance.signalled)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_async_notification_poll.signalled)) == 4, "ma_async_notification_poll.signalled has unexpected size % instead of 4", size_of(type_of(ma_async_notification_poll.signalled))); + assert(size_of(ma_async_notification_poll) == 16, "ma_async_notification_poll has size % instead of 16", size_of(ma_async_notification_poll)); + } + + { + instance: ma_async_notification_event; + assert(((cast(*void)(*instance.cb)) - cast(*void)(*instance)) == 0, "ma_async_notification_event.cb has unexpected offset % instead of 0", ((cast(*void)(*instance.cb)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_async_notification_event.cb)) == 8, "ma_async_notification_event.cb has unexpected size % instead of 8", size_of(type_of(ma_async_notification_event.cb))); + assert(((cast(*void)(*instance.e)) - cast(*void)(*instance)) == 8, "ma_async_notification_event.e has unexpected offset % instead of 8", ((cast(*void)(*instance.e)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_async_notification_event.e)) == 8, "ma_async_notification_event.e has unexpected size % instead of 8", size_of(type_of(ma_async_notification_event.e))); + assert(size_of(ma_async_notification_event) == 16, "ma_async_notification_event has size % instead of 16", size_of(ma_async_notification_event)); + } + + { + instance: ma_slot_allocator_config; + assert(((cast(*void)(*instance.capacity)) - cast(*void)(*instance)) == 0, "ma_slot_allocator_config.capacity has unexpected offset % instead of 0", ((cast(*void)(*instance.capacity)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_slot_allocator_config.capacity)) == 4, "ma_slot_allocator_config.capacity has unexpected size % instead of 4", size_of(type_of(ma_slot_allocator_config.capacity))); + assert(size_of(ma_slot_allocator_config) == 4, "ma_slot_allocator_config has size % instead of 4", size_of(ma_slot_allocator_config)); + } + + { + instance: ma_slot_allocator_group; + assert(((cast(*void)(*instance.bitfield)) - cast(*void)(*instance)) == 0, "ma_slot_allocator_group.bitfield has unexpected offset % instead of 0", ((cast(*void)(*instance.bitfield)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_slot_allocator_group.bitfield)) == 4, "ma_slot_allocator_group.bitfield has unexpected size % instead of 4", size_of(type_of(ma_slot_allocator_group.bitfield))); + assert(size_of(ma_slot_allocator_group) == 4, "ma_slot_allocator_group has size % instead of 4", size_of(ma_slot_allocator_group)); + } + + { + instance: ma_slot_allocator; + assert(((cast(*void)(*instance.pGroups)) - cast(*void)(*instance)) == 0, "ma_slot_allocator.pGroups has unexpected offset % instead of 0", ((cast(*void)(*instance.pGroups)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_slot_allocator.pGroups)) == 8, "ma_slot_allocator.pGroups has unexpected size % instead of 8", size_of(type_of(ma_slot_allocator.pGroups))); + assert(((cast(*void)(*instance.pSlots)) - cast(*void)(*instance)) == 8, "ma_slot_allocator.pSlots has unexpected offset % instead of 8", ((cast(*void)(*instance.pSlots)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_slot_allocator.pSlots)) == 8, "ma_slot_allocator.pSlots has unexpected size % instead of 8", size_of(type_of(ma_slot_allocator.pSlots))); + assert(((cast(*void)(*instance.count)) - cast(*void)(*instance)) == 16, "ma_slot_allocator.count has unexpected offset % instead of 16", ((cast(*void)(*instance.count)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_slot_allocator.count)) == 4, "ma_slot_allocator.count has unexpected size % instead of 4", size_of(type_of(ma_slot_allocator.count))); + assert(((cast(*void)(*instance.capacity)) - cast(*void)(*instance)) == 20, "ma_slot_allocator.capacity has unexpected offset % instead of 20", ((cast(*void)(*instance.capacity)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_slot_allocator.capacity)) == 4, "ma_slot_allocator.capacity has unexpected size % instead of 4", size_of(type_of(ma_slot_allocator.capacity))); + assert(((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance)) == 24, "ma_slot_allocator._ownsHeap has unexpected offset % instead of 24", ((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_slot_allocator._ownsHeap)) == 4, "ma_slot_allocator._ownsHeap has unexpected size % instead of 4", size_of(type_of(ma_slot_allocator._ownsHeap))); + assert(((cast(*void)(*instance._pHeap)) - cast(*void)(*instance)) == 32, "ma_slot_allocator._pHeap has unexpected offset % instead of 32", ((cast(*void)(*instance._pHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_slot_allocator._pHeap)) == 8, "ma_slot_allocator._pHeap has unexpected size % instead of 8", size_of(type_of(ma_slot_allocator._pHeap))); + assert(size_of(ma_slot_allocator) == 40, "ma_slot_allocator has size % instead of 40", size_of(ma_slot_allocator)); + } + + { + instance: ma_job; + assert(((cast(*void)(*instance.toc)) - cast(*void)(*instance)) == 0, "ma_job.toc has unexpected offset % instead of 0", ((cast(*void)(*instance.toc)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_job.toc)) == 8, "ma_job.toc has unexpected size % instead of 8", size_of(type_of(ma_job.toc))); + assert(((cast(*void)(*instance.next)) - cast(*void)(*instance)) == 8, "ma_job.next has unexpected offset % instead of 8", ((cast(*void)(*instance.next)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_job.next)) == 8, "ma_job.next has unexpected size % instead of 8", size_of(type_of(ma_job.next))); + assert(((cast(*void)(*instance.order)) - cast(*void)(*instance)) == 16, "ma_job.order has unexpected offset % instead of 16", ((cast(*void)(*instance.order)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_job.order)) == 4, "ma_job.order has unexpected size % instead of 4", size_of(type_of(ma_job.order))); + assert(((cast(*void)(*instance.data)) - cast(*void)(*instance)) == 24, "ma_job.data has unexpected offset % instead of 24", ((cast(*void)(*instance.data)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_job.data)) == 80, "ma_job.data has unexpected size % instead of 80", size_of(type_of(ma_job.data))); + assert(size_of(ma_job) == 104, "ma_job has size % instead of 104", size_of(ma_job)); + } + + { + instance: ma_job_queue_config; + assert(((cast(*void)(*instance.flags)) - cast(*void)(*instance)) == 0, "ma_job_queue_config.flags has unexpected offset % instead of 0", ((cast(*void)(*instance.flags)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_job_queue_config.flags)) == 4, "ma_job_queue_config.flags has unexpected size % instead of 4", size_of(type_of(ma_job_queue_config.flags))); + assert(((cast(*void)(*instance.capacity)) - cast(*void)(*instance)) == 4, "ma_job_queue_config.capacity has unexpected offset % instead of 4", ((cast(*void)(*instance.capacity)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_job_queue_config.capacity)) == 4, "ma_job_queue_config.capacity has unexpected size % instead of 4", size_of(type_of(ma_job_queue_config.capacity))); + assert(size_of(ma_job_queue_config) == 8, "ma_job_queue_config has size % instead of 8", size_of(ma_job_queue_config)); + } + + { + instance: ma_job_queue; + assert(((cast(*void)(*instance.flags)) - cast(*void)(*instance)) == 0, "ma_job_queue.flags has unexpected offset % instead of 0", ((cast(*void)(*instance.flags)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_job_queue.flags)) == 4, "ma_job_queue.flags has unexpected size % instead of 4", size_of(type_of(ma_job_queue.flags))); + assert(((cast(*void)(*instance.capacity)) - cast(*void)(*instance)) == 4, "ma_job_queue.capacity has unexpected offset % instead of 4", ((cast(*void)(*instance.capacity)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_job_queue.capacity)) == 4, "ma_job_queue.capacity has unexpected size % instead of 4", size_of(type_of(ma_job_queue.capacity))); + assert(((cast(*void)(*instance.head)) - cast(*void)(*instance)) == 8, "ma_job_queue.head has unexpected offset % instead of 8", ((cast(*void)(*instance.head)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_job_queue.head)) == 8, "ma_job_queue.head has unexpected size % instead of 8", size_of(type_of(ma_job_queue.head))); + assert(((cast(*void)(*instance.tail)) - cast(*void)(*instance)) == 16, "ma_job_queue.tail has unexpected offset % instead of 16", ((cast(*void)(*instance.tail)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_job_queue.tail)) == 8, "ma_job_queue.tail has unexpected size % instead of 8", size_of(type_of(ma_job_queue.tail))); + assert(((cast(*void)(*instance.sem)) - cast(*void)(*instance)) == 24, "ma_job_queue.sem has unexpected offset % instead of 24", ((cast(*void)(*instance.sem)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_job_queue.sem)) == 8, "ma_job_queue.sem has unexpected size % instead of 8", size_of(type_of(ma_job_queue.sem))); + assert(((cast(*void)(*instance.allocator)) - cast(*void)(*instance)) == 32, "ma_job_queue.allocator has unexpected offset % instead of 32", ((cast(*void)(*instance.allocator)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_job_queue.allocator)) == 40, "ma_job_queue.allocator has unexpected size % instead of 40", size_of(type_of(ma_job_queue.allocator))); + assert(((cast(*void)(*instance.pJobs)) - cast(*void)(*instance)) == 72, "ma_job_queue.pJobs has unexpected offset % instead of 72", ((cast(*void)(*instance.pJobs)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_job_queue.pJobs)) == 8, "ma_job_queue.pJobs has unexpected size % instead of 8", size_of(type_of(ma_job_queue.pJobs))); + assert(((cast(*void)(*instance.lock)) - cast(*void)(*instance)) == 80, "ma_job_queue.lock has unexpected offset % instead of 80", ((cast(*void)(*instance.lock)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_job_queue.lock)) == 4, "ma_job_queue.lock has unexpected size % instead of 4", size_of(type_of(ma_job_queue.lock))); + assert(((cast(*void)(*instance._pHeap)) - cast(*void)(*instance)) == 88, "ma_job_queue._pHeap has unexpected offset % instead of 88", ((cast(*void)(*instance._pHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_job_queue._pHeap)) == 8, "ma_job_queue._pHeap has unexpected size % instead of 8", size_of(type_of(ma_job_queue._pHeap))); + assert(((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance)) == 96, "ma_job_queue._ownsHeap has unexpected offset % instead of 96", ((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_job_queue._ownsHeap)) == 4, "ma_job_queue._ownsHeap has unexpected size % instead of 4", size_of(type_of(ma_job_queue._ownsHeap))); + assert(size_of(ma_job_queue) == 104, "ma_job_queue has size % instead of 104", size_of(ma_job_queue)); + } + + { + instance: ma_atomic_device_state; + assert(((cast(*void)(*instance.value)) - cast(*void)(*instance)) == 0, "ma_atomic_device_state.value has unexpected offset % instead of 0", ((cast(*void)(*instance.value)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_atomic_device_state.value)) == 4, "ma_atomic_device_state.value has unexpected size % instead of 4", size_of(type_of(ma_atomic_device_state.value))); + assert(size_of(ma_atomic_device_state) == 4, "ma_atomic_device_state has size % instead of 4", size_of(ma_atomic_device_state)); + } + + { + instance: ma_IMMNotificationClient; + assert(((cast(*void)(*instance.lpVtbl)) - cast(*void)(*instance)) == 0, "ma_IMMNotificationClient.lpVtbl has unexpected offset % instead of 0", ((cast(*void)(*instance.lpVtbl)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_IMMNotificationClient.lpVtbl)) == 8, "ma_IMMNotificationClient.lpVtbl has unexpected size % instead of 8", size_of(type_of(ma_IMMNotificationClient.lpVtbl))); + assert(((cast(*void)(*instance.counter)) - cast(*void)(*instance)) == 8, "ma_IMMNotificationClient.counter has unexpected offset % instead of 8", ((cast(*void)(*instance.counter)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_IMMNotificationClient.counter)) == 4, "ma_IMMNotificationClient.counter has unexpected size % instead of 4", size_of(type_of(ma_IMMNotificationClient.counter))); + assert(((cast(*void)(*instance.pDevice)) - cast(*void)(*instance)) == 16, "ma_IMMNotificationClient.pDevice has unexpected offset % instead of 16", ((cast(*void)(*instance.pDevice)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_IMMNotificationClient.pDevice)) == 8, "ma_IMMNotificationClient.pDevice has unexpected size % instead of 8", size_of(type_of(ma_IMMNotificationClient.pDevice))); + assert(size_of(ma_IMMNotificationClient) == 24, "ma_IMMNotificationClient has size % instead of 24", size_of(ma_IMMNotificationClient)); + } + + { + instance: ma_device_job_thread_config; + assert(((cast(*void)(*instance.noThread)) - cast(*void)(*instance)) == 0, "ma_device_job_thread_config.noThread has unexpected offset % instead of 0", ((cast(*void)(*instance.noThread)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_job_thread_config.noThread)) == 4, "ma_device_job_thread_config.noThread has unexpected size % instead of 4", size_of(type_of(ma_device_job_thread_config.noThread))); + assert(((cast(*void)(*instance.jobQueueCapacity)) - cast(*void)(*instance)) == 4, "ma_device_job_thread_config.jobQueueCapacity has unexpected offset % instead of 4", ((cast(*void)(*instance.jobQueueCapacity)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_job_thread_config.jobQueueCapacity)) == 4, "ma_device_job_thread_config.jobQueueCapacity has unexpected size % instead of 4", size_of(type_of(ma_device_job_thread_config.jobQueueCapacity))); + assert(((cast(*void)(*instance.jobQueueFlags)) - cast(*void)(*instance)) == 8, "ma_device_job_thread_config.jobQueueFlags has unexpected offset % instead of 8", ((cast(*void)(*instance.jobQueueFlags)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_job_thread_config.jobQueueFlags)) == 4, "ma_device_job_thread_config.jobQueueFlags has unexpected size % instead of 4", size_of(type_of(ma_device_job_thread_config.jobQueueFlags))); + assert(size_of(ma_device_job_thread_config) == 12, "ma_device_job_thread_config has size % instead of 12", size_of(ma_device_job_thread_config)); + } + + { + instance: ma_device_job_thread; + assert(((cast(*void)(*instance.thread)) - cast(*void)(*instance)) == 0, "ma_device_job_thread.thread has unexpected offset % instead of 0", ((cast(*void)(*instance.thread)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_job_thread.thread)) == 8, "ma_device_job_thread.thread has unexpected size % instead of 8", size_of(type_of(ma_device_job_thread.thread))); + assert(((cast(*void)(*instance.jobQueue)) - cast(*void)(*instance)) == 8, "ma_device_job_thread.jobQueue has unexpected offset % instead of 8", ((cast(*void)(*instance.jobQueue)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_job_thread.jobQueue)) == 104, "ma_device_job_thread.jobQueue has unexpected size % instead of 104", size_of(type_of(ma_device_job_thread.jobQueue))); + assert(((cast(*void)(*instance._hasThread)) - cast(*void)(*instance)) == 112, "ma_device_job_thread._hasThread has unexpected offset % instead of 112", ((cast(*void)(*instance._hasThread)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_job_thread._hasThread)) == 4, "ma_device_job_thread._hasThread has unexpected size % instead of 4", size_of(type_of(ma_device_job_thread._hasThread))); + assert(size_of(ma_device_job_thread) == 120, "ma_device_job_thread has size % instead of 120", size_of(ma_device_job_thread)); + } + + { + instance: ma_device_notification; + assert(((cast(*void)(*instance.pDevice)) - cast(*void)(*instance)) == 0, "ma_device_notification.pDevice has unexpected offset % instead of 0", ((cast(*void)(*instance.pDevice)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_notification.pDevice)) == 8, "ma_device_notification.pDevice has unexpected size % instead of 8", size_of(type_of(ma_device_notification.pDevice))); + assert(((cast(*void)(*instance.type)) - cast(*void)(*instance)) == 8, "ma_device_notification.type has unexpected offset % instead of 8", ((cast(*void)(*instance.type)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_notification.type)) == 4, "ma_device_notification.type has unexpected size % instead of 4", size_of(type_of(ma_device_notification.type))); + assert(((cast(*void)(*instance.data)) - cast(*void)(*instance)) == 12, "ma_device_notification.data has unexpected offset % instead of 12", ((cast(*void)(*instance.data)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_notification.data)) == 4, "ma_device_notification.data has unexpected size % instead of 4", size_of(type_of(ma_device_notification.data))); + assert(size_of(ma_device_notification) == 16, "ma_device_notification has size % instead of 16", size_of(ma_device_notification)); + } + + { + instance: ma_timer; + assert(((cast(*void)(*instance.counter)) - cast(*void)(*instance)) == 0, "ma_timer.counter has unexpected offset % instead of 0", ((cast(*void)(*instance.counter)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_timer.counter)) == 8, "ma_timer.counter has unexpected size % instead of 8", size_of(type_of(ma_timer.counter))); + assert(((cast(*void)(*instance.counterD)) - cast(*void)(*instance)) == 0, "ma_timer.counterD has unexpected offset % instead of 0", ((cast(*void)(*instance.counterD)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_timer.counterD)) == 8, "ma_timer.counterD has unexpected size % instead of 8", size_of(type_of(ma_timer.counterD))); + assert(size_of(ma_timer) == 8, "ma_timer has size % instead of 8", size_of(ma_timer)); + } + + { + instance: ma_device_id; + assert(((cast(*void)(*instance.wasapi)) - cast(*void)(*instance)) == 0, "ma_device_id.wasapi has unexpected offset % instead of 0", ((cast(*void)(*instance.wasapi)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_id.wasapi)) == 128, "ma_device_id.wasapi has unexpected size % instead of 128", size_of(type_of(ma_device_id.wasapi))); + assert(((cast(*void)(*instance.dsound)) - cast(*void)(*instance)) == 0, "ma_device_id.dsound has unexpected offset % instead of 0", ((cast(*void)(*instance.dsound)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_id.dsound)) == 16, "ma_device_id.dsound has unexpected size % instead of 16", size_of(type_of(ma_device_id.dsound))); + assert(((cast(*void)(*instance.winmm)) - cast(*void)(*instance)) == 0, "ma_device_id.winmm has unexpected offset % instead of 0", ((cast(*void)(*instance.winmm)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_id.winmm)) == 4, "ma_device_id.winmm has unexpected size % instead of 4", size_of(type_of(ma_device_id.winmm))); + assert(((cast(*void)(*instance.alsa)) - cast(*void)(*instance)) == 0, "ma_device_id.alsa has unexpected offset % instead of 0", ((cast(*void)(*instance.alsa)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_id.alsa)) == 256, "ma_device_id.alsa has unexpected size % instead of 256", size_of(type_of(ma_device_id.alsa))); + assert(((cast(*void)(*instance.pulse)) - cast(*void)(*instance)) == 0, "ma_device_id.pulse has unexpected offset % instead of 0", ((cast(*void)(*instance.pulse)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_id.pulse)) == 256, "ma_device_id.pulse has unexpected size % instead of 256", size_of(type_of(ma_device_id.pulse))); + assert(((cast(*void)(*instance.jack)) - cast(*void)(*instance)) == 0, "ma_device_id.jack has unexpected offset % instead of 0", ((cast(*void)(*instance.jack)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_id.jack)) == 4, "ma_device_id.jack has unexpected size % instead of 4", size_of(type_of(ma_device_id.jack))); + assert(((cast(*void)(*instance.coreaudio)) - cast(*void)(*instance)) == 0, "ma_device_id.coreaudio has unexpected offset % instead of 0", ((cast(*void)(*instance.coreaudio)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_id.coreaudio)) == 256, "ma_device_id.coreaudio has unexpected size % instead of 256", size_of(type_of(ma_device_id.coreaudio))); + assert(((cast(*void)(*instance.sndio)) - cast(*void)(*instance)) == 0, "ma_device_id.sndio has unexpected offset % instead of 0", ((cast(*void)(*instance.sndio)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_id.sndio)) == 256, "ma_device_id.sndio has unexpected size % instead of 256", size_of(type_of(ma_device_id.sndio))); + assert(((cast(*void)(*instance.audio4)) - cast(*void)(*instance)) == 0, "ma_device_id.audio4 has unexpected offset % instead of 0", ((cast(*void)(*instance.audio4)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_id.audio4)) == 256, "ma_device_id.audio4 has unexpected size % instead of 256", size_of(type_of(ma_device_id.audio4))); + assert(((cast(*void)(*instance.oss)) - cast(*void)(*instance)) == 0, "ma_device_id.oss has unexpected offset % instead of 0", ((cast(*void)(*instance.oss)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_id.oss)) == 64, "ma_device_id.oss has unexpected size % instead of 64", size_of(type_of(ma_device_id.oss))); + assert(((cast(*void)(*instance.aaudio)) - cast(*void)(*instance)) == 0, "ma_device_id.aaudio has unexpected offset % instead of 0", ((cast(*void)(*instance.aaudio)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_id.aaudio)) == 4, "ma_device_id.aaudio has unexpected size % instead of 4", size_of(type_of(ma_device_id.aaudio))); + assert(((cast(*void)(*instance.opensl)) - cast(*void)(*instance)) == 0, "ma_device_id.opensl has unexpected offset % instead of 0", ((cast(*void)(*instance.opensl)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_id.opensl)) == 4, "ma_device_id.opensl has unexpected size % instead of 4", size_of(type_of(ma_device_id.opensl))); + assert(((cast(*void)(*instance.webaudio)) - cast(*void)(*instance)) == 0, "ma_device_id.webaudio has unexpected offset % instead of 0", ((cast(*void)(*instance.webaudio)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_id.webaudio)) == 32, "ma_device_id.webaudio has unexpected size % instead of 32", size_of(type_of(ma_device_id.webaudio))); + assert(((cast(*void)(*instance.custom)) - cast(*void)(*instance)) == 0, "ma_device_id.custom has unexpected offset % instead of 0", ((cast(*void)(*instance.custom)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_id.custom)) == 256, "ma_device_id.custom has unexpected size % instead of 256", size_of(type_of(ma_device_id.custom))); + assert(((cast(*void)(*instance.nullbackend)) - cast(*void)(*instance)) == 0, "ma_device_id.nullbackend has unexpected offset % instead of 0", ((cast(*void)(*instance.nullbackend)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_id.nullbackend)) == 4, "ma_device_id.nullbackend has unexpected size % instead of 4", size_of(type_of(ma_device_id.nullbackend))); + assert(size_of(ma_device_id) == 256, "ma_device_id has size % instead of 256", size_of(ma_device_id)); + } + + { + instance: ma_device_info; + assert(((cast(*void)(*instance.id)) - cast(*void)(*instance)) == 0, "ma_device_info.id has unexpected offset % instead of 0", ((cast(*void)(*instance.id)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_info.id)) == 256, "ma_device_info.id has unexpected size % instead of 256", size_of(type_of(ma_device_info.id))); + assert(((cast(*void)(*instance.name)) - cast(*void)(*instance)) == 256, "ma_device_info.name has unexpected offset % instead of 256", ((cast(*void)(*instance.name)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_info.name)) == 256, "ma_device_info.name has unexpected size % instead of 256", size_of(type_of(ma_device_info.name))); + assert(((cast(*void)(*instance.isDefault)) - cast(*void)(*instance)) == 512, "ma_device_info.isDefault has unexpected offset % instead of 512", ((cast(*void)(*instance.isDefault)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_info.isDefault)) == 4, "ma_device_info.isDefault has unexpected size % instead of 4", size_of(type_of(ma_device_info.isDefault))); + assert(((cast(*void)(*instance.nativeDataFormatCount)) - cast(*void)(*instance)) == 516, "ma_device_info.nativeDataFormatCount has unexpected offset % instead of 516", ((cast(*void)(*instance.nativeDataFormatCount)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_info.nativeDataFormatCount)) == 4, "ma_device_info.nativeDataFormatCount has unexpected size % instead of 4", size_of(type_of(ma_device_info.nativeDataFormatCount))); + assert(((cast(*void)(*instance.nativeDataFormats)) - cast(*void)(*instance)) == 520, "ma_device_info.nativeDataFormats has unexpected offset % instead of 520", ((cast(*void)(*instance.nativeDataFormats)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_info.nativeDataFormats)) == 1024, "ma_device_info.nativeDataFormats has unexpected size % instead of 1024", size_of(type_of(ma_device_info.nativeDataFormats))); + assert(size_of(ma_device_info) == 1544, "ma_device_info has size % instead of 1544", size_of(ma_device_info)); + } + + { + instance: ma_device_config; + assert(((cast(*void)(*instance.deviceType)) - cast(*void)(*instance)) == 0, "ma_device_config.deviceType has unexpected offset % instead of 0", ((cast(*void)(*instance.deviceType)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_config.deviceType)) == 4, "ma_device_config.deviceType has unexpected size % instead of 4", size_of(type_of(ma_device_config.deviceType))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 4, "ma_device_config.sampleRate has unexpected offset % instead of 4", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_config.sampleRate)) == 4, "ma_device_config.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_device_config.sampleRate))); + assert(((cast(*void)(*instance.periodSizeInFrames)) - cast(*void)(*instance)) == 8, "ma_device_config.periodSizeInFrames has unexpected offset % instead of 8", ((cast(*void)(*instance.periodSizeInFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_config.periodSizeInFrames)) == 4, "ma_device_config.periodSizeInFrames has unexpected size % instead of 4", size_of(type_of(ma_device_config.periodSizeInFrames))); + assert(((cast(*void)(*instance.periodSizeInMilliseconds)) - cast(*void)(*instance)) == 12, "ma_device_config.periodSizeInMilliseconds has unexpected offset % instead of 12", ((cast(*void)(*instance.periodSizeInMilliseconds)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_config.periodSizeInMilliseconds)) == 4, "ma_device_config.periodSizeInMilliseconds has unexpected size % instead of 4", size_of(type_of(ma_device_config.periodSizeInMilliseconds))); + assert(((cast(*void)(*instance.periods)) - cast(*void)(*instance)) == 16, "ma_device_config.periods has unexpected offset % instead of 16", ((cast(*void)(*instance.periods)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_config.periods)) == 4, "ma_device_config.periods has unexpected size % instead of 4", size_of(type_of(ma_device_config.periods))); + assert(((cast(*void)(*instance.performanceProfile)) - cast(*void)(*instance)) == 20, "ma_device_config.performanceProfile has unexpected offset % instead of 20", ((cast(*void)(*instance.performanceProfile)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_config.performanceProfile)) == 4, "ma_device_config.performanceProfile has unexpected size % instead of 4", size_of(type_of(ma_device_config.performanceProfile))); + assert(((cast(*void)(*instance.noPreSilencedOutputBuffer)) - cast(*void)(*instance)) == 24, "ma_device_config.noPreSilencedOutputBuffer has unexpected offset % instead of 24", ((cast(*void)(*instance.noPreSilencedOutputBuffer)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_config.noPreSilencedOutputBuffer)) == 1, "ma_device_config.noPreSilencedOutputBuffer has unexpected size % instead of 1", size_of(type_of(ma_device_config.noPreSilencedOutputBuffer))); + assert(((cast(*void)(*instance.noClip)) - cast(*void)(*instance)) == 25, "ma_device_config.noClip has unexpected offset % instead of 25", ((cast(*void)(*instance.noClip)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_config.noClip)) == 1, "ma_device_config.noClip has unexpected size % instead of 1", size_of(type_of(ma_device_config.noClip))); + assert(((cast(*void)(*instance.noDisableDenormals)) - cast(*void)(*instance)) == 26, "ma_device_config.noDisableDenormals has unexpected offset % instead of 26", ((cast(*void)(*instance.noDisableDenormals)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_config.noDisableDenormals)) == 1, "ma_device_config.noDisableDenormals has unexpected size % instead of 1", size_of(type_of(ma_device_config.noDisableDenormals))); + assert(((cast(*void)(*instance.noFixedSizedCallback)) - cast(*void)(*instance)) == 27, "ma_device_config.noFixedSizedCallback has unexpected offset % instead of 27", ((cast(*void)(*instance.noFixedSizedCallback)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_config.noFixedSizedCallback)) == 1, "ma_device_config.noFixedSizedCallback has unexpected size % instead of 1", size_of(type_of(ma_device_config.noFixedSizedCallback))); + assert(((cast(*void)(*instance.dataCallback)) - cast(*void)(*instance)) == 32, "ma_device_config.dataCallback has unexpected offset % instead of 32", ((cast(*void)(*instance.dataCallback)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_config.dataCallback)) == 8, "ma_device_config.dataCallback has unexpected size % instead of 8", size_of(type_of(ma_device_config.dataCallback))); + assert(((cast(*void)(*instance.notificationCallback)) - cast(*void)(*instance)) == 40, "ma_device_config.notificationCallback has unexpected offset % instead of 40", ((cast(*void)(*instance.notificationCallback)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_config.notificationCallback)) == 8, "ma_device_config.notificationCallback has unexpected size % instead of 8", size_of(type_of(ma_device_config.notificationCallback))); + assert(((cast(*void)(*instance.stopCallback)) - cast(*void)(*instance)) == 48, "ma_device_config.stopCallback has unexpected offset % instead of 48", ((cast(*void)(*instance.stopCallback)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_config.stopCallback)) == 8, "ma_device_config.stopCallback has unexpected size % instead of 8", size_of(type_of(ma_device_config.stopCallback))); + assert(((cast(*void)(*instance.pUserData)) - cast(*void)(*instance)) == 56, "ma_device_config.pUserData has unexpected offset % instead of 56", ((cast(*void)(*instance.pUserData)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_config.pUserData)) == 8, "ma_device_config.pUserData has unexpected size % instead of 8", size_of(type_of(ma_device_config.pUserData))); + assert(((cast(*void)(*instance.resampling)) - cast(*void)(*instance)) == 64, "ma_device_config.resampling has unexpected offset % instead of 64", ((cast(*void)(*instance.resampling)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_config.resampling)) == 48, "ma_device_config.resampling has unexpected size % instead of 48", size_of(type_of(ma_device_config.resampling))); + assert(((cast(*void)(*instance.playback)) - cast(*void)(*instance)) == 112, "ma_device_config.playback has unexpected offset % instead of 112", ((cast(*void)(*instance.playback)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_config.playback)) == 40, "ma_device_config.playback has unexpected size % instead of 40", size_of(type_of(ma_device_config.playback))); + assert(((cast(*void)(*instance.capture)) - cast(*void)(*instance)) == 152, "ma_device_config.capture has unexpected offset % instead of 152", ((cast(*void)(*instance.capture)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_config.capture)) == 40, "ma_device_config.capture has unexpected size % instead of 40", size_of(type_of(ma_device_config.capture))); + assert(((cast(*void)(*instance.wasapi)) - cast(*void)(*instance)) == 192, "ma_device_config.wasapi has unexpected offset % instead of 192", ((cast(*void)(*instance.wasapi)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_config.wasapi)) == 16, "ma_device_config.wasapi has unexpected size % instead of 16", size_of(type_of(ma_device_config.wasapi))); + assert(((cast(*void)(*instance.alsa)) - cast(*void)(*instance)) == 208, "ma_device_config.alsa has unexpected offset % instead of 208", ((cast(*void)(*instance.alsa)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_config.alsa)) == 16, "ma_device_config.alsa has unexpected size % instead of 16", size_of(type_of(ma_device_config.alsa))); + assert(((cast(*void)(*instance.pulse)) - cast(*void)(*instance)) == 224, "ma_device_config.pulse has unexpected offset % instead of 224", ((cast(*void)(*instance.pulse)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_config.pulse)) == 16, "ma_device_config.pulse has unexpected size % instead of 16", size_of(type_of(ma_device_config.pulse))); + assert(((cast(*void)(*instance.coreaudio)) - cast(*void)(*instance)) == 240, "ma_device_config.coreaudio has unexpected offset % instead of 240", ((cast(*void)(*instance.coreaudio)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_config.coreaudio)) == 4, "ma_device_config.coreaudio has unexpected size % instead of 4", size_of(type_of(ma_device_config.coreaudio))); + assert(((cast(*void)(*instance.opensl)) - cast(*void)(*instance)) == 244, "ma_device_config.opensl has unexpected offset % instead of 244", ((cast(*void)(*instance.opensl)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_config.opensl)) == 12, "ma_device_config.opensl has unexpected size % instead of 12", size_of(type_of(ma_device_config.opensl))); + assert(((cast(*void)(*instance.aaudio)) - cast(*void)(*instance)) == 256, "ma_device_config.aaudio has unexpected offset % instead of 256", ((cast(*void)(*instance.aaudio)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_config.aaudio)) == 24, "ma_device_config.aaudio has unexpected size % instead of 24", size_of(type_of(ma_device_config.aaudio))); + assert(size_of(ma_device_config) == 280, "ma_device_config has size % instead of 280", size_of(ma_device_config)); + } + + { + instance: ma_device_descriptor; + assert(((cast(*void)(*instance.pDeviceID)) - cast(*void)(*instance)) == 0, "ma_device_descriptor.pDeviceID has unexpected offset % instead of 0", ((cast(*void)(*instance.pDeviceID)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_descriptor.pDeviceID)) == 8, "ma_device_descriptor.pDeviceID has unexpected size % instead of 8", size_of(type_of(ma_device_descriptor.pDeviceID))); + assert(((cast(*void)(*instance.shareMode)) - cast(*void)(*instance)) == 8, "ma_device_descriptor.shareMode has unexpected offset % instead of 8", ((cast(*void)(*instance.shareMode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_descriptor.shareMode)) == 4, "ma_device_descriptor.shareMode has unexpected size % instead of 4", size_of(type_of(ma_device_descriptor.shareMode))); + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 12, "ma_device_descriptor.format has unexpected offset % instead of 12", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_descriptor.format)) == 4, "ma_device_descriptor.format has unexpected size % instead of 4", size_of(type_of(ma_device_descriptor.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 16, "ma_device_descriptor.channels has unexpected offset % instead of 16", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_descriptor.channels)) == 4, "ma_device_descriptor.channels has unexpected size % instead of 4", size_of(type_of(ma_device_descriptor.channels))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 20, "ma_device_descriptor.sampleRate has unexpected offset % instead of 20", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_descriptor.sampleRate)) == 4, "ma_device_descriptor.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_device_descriptor.sampleRate))); + assert(((cast(*void)(*instance.channelMap)) - cast(*void)(*instance)) == 24, "ma_device_descriptor.channelMap has unexpected offset % instead of 24", ((cast(*void)(*instance.channelMap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_descriptor.channelMap)) == 254, "ma_device_descriptor.channelMap has unexpected size % instead of 254", size_of(type_of(ma_device_descriptor.channelMap))); + assert(((cast(*void)(*instance.periodSizeInFrames)) - cast(*void)(*instance)) == 280, "ma_device_descriptor.periodSizeInFrames has unexpected offset % instead of 280", ((cast(*void)(*instance.periodSizeInFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_descriptor.periodSizeInFrames)) == 4, "ma_device_descriptor.periodSizeInFrames has unexpected size % instead of 4", size_of(type_of(ma_device_descriptor.periodSizeInFrames))); + assert(((cast(*void)(*instance.periodSizeInMilliseconds)) - cast(*void)(*instance)) == 284, "ma_device_descriptor.periodSizeInMilliseconds has unexpected offset % instead of 284", ((cast(*void)(*instance.periodSizeInMilliseconds)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_descriptor.periodSizeInMilliseconds)) == 4, "ma_device_descriptor.periodSizeInMilliseconds has unexpected size % instead of 4", size_of(type_of(ma_device_descriptor.periodSizeInMilliseconds))); + assert(((cast(*void)(*instance.periodCount)) - cast(*void)(*instance)) == 288, "ma_device_descriptor.periodCount has unexpected offset % instead of 288", ((cast(*void)(*instance.periodCount)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device_descriptor.periodCount)) == 4, "ma_device_descriptor.periodCount has unexpected size % instead of 4", size_of(type_of(ma_device_descriptor.periodCount))); + assert(size_of(ma_device_descriptor) == 296, "ma_device_descriptor has size % instead of 296", size_of(ma_device_descriptor)); + } + + { + instance: ma_backend_callbacks; + assert(((cast(*void)(*instance.onContextInit)) - cast(*void)(*instance)) == 0, "ma_backend_callbacks.onContextInit has unexpected offset % instead of 0", ((cast(*void)(*instance.onContextInit)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_backend_callbacks.onContextInit)) == 8, "ma_backend_callbacks.onContextInit has unexpected size % instead of 8", size_of(type_of(ma_backend_callbacks.onContextInit))); + assert(((cast(*void)(*instance.onContextUninit)) - cast(*void)(*instance)) == 8, "ma_backend_callbacks.onContextUninit has unexpected offset % instead of 8", ((cast(*void)(*instance.onContextUninit)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_backend_callbacks.onContextUninit)) == 8, "ma_backend_callbacks.onContextUninit has unexpected size % instead of 8", size_of(type_of(ma_backend_callbacks.onContextUninit))); + assert(((cast(*void)(*instance.onContextEnumerateDevices)) - cast(*void)(*instance)) == 16, "ma_backend_callbacks.onContextEnumerateDevices has unexpected offset % instead of 16", ((cast(*void)(*instance.onContextEnumerateDevices)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_backend_callbacks.onContextEnumerateDevices)) == 8, "ma_backend_callbacks.onContextEnumerateDevices has unexpected size % instead of 8", size_of(type_of(ma_backend_callbacks.onContextEnumerateDevices))); + assert(((cast(*void)(*instance.onContextGetDeviceInfo)) - cast(*void)(*instance)) == 24, "ma_backend_callbacks.onContextGetDeviceInfo has unexpected offset % instead of 24", ((cast(*void)(*instance.onContextGetDeviceInfo)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_backend_callbacks.onContextGetDeviceInfo)) == 8, "ma_backend_callbacks.onContextGetDeviceInfo has unexpected size % instead of 8", size_of(type_of(ma_backend_callbacks.onContextGetDeviceInfo))); + assert(((cast(*void)(*instance.onDeviceInit)) - cast(*void)(*instance)) == 32, "ma_backend_callbacks.onDeviceInit has unexpected offset % instead of 32", ((cast(*void)(*instance.onDeviceInit)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_backend_callbacks.onDeviceInit)) == 8, "ma_backend_callbacks.onDeviceInit has unexpected size % instead of 8", size_of(type_of(ma_backend_callbacks.onDeviceInit))); + assert(((cast(*void)(*instance.onDeviceUninit)) - cast(*void)(*instance)) == 40, "ma_backend_callbacks.onDeviceUninit has unexpected offset % instead of 40", ((cast(*void)(*instance.onDeviceUninit)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_backend_callbacks.onDeviceUninit)) == 8, "ma_backend_callbacks.onDeviceUninit has unexpected size % instead of 8", size_of(type_of(ma_backend_callbacks.onDeviceUninit))); + assert(((cast(*void)(*instance.onDeviceStart)) - cast(*void)(*instance)) == 48, "ma_backend_callbacks.onDeviceStart has unexpected offset % instead of 48", ((cast(*void)(*instance.onDeviceStart)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_backend_callbacks.onDeviceStart)) == 8, "ma_backend_callbacks.onDeviceStart has unexpected size % instead of 8", size_of(type_of(ma_backend_callbacks.onDeviceStart))); + assert(((cast(*void)(*instance.onDeviceStop)) - cast(*void)(*instance)) == 56, "ma_backend_callbacks.onDeviceStop has unexpected offset % instead of 56", ((cast(*void)(*instance.onDeviceStop)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_backend_callbacks.onDeviceStop)) == 8, "ma_backend_callbacks.onDeviceStop has unexpected size % instead of 8", size_of(type_of(ma_backend_callbacks.onDeviceStop))); + assert(((cast(*void)(*instance.onDeviceRead)) - cast(*void)(*instance)) == 64, "ma_backend_callbacks.onDeviceRead has unexpected offset % instead of 64", ((cast(*void)(*instance.onDeviceRead)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_backend_callbacks.onDeviceRead)) == 8, "ma_backend_callbacks.onDeviceRead has unexpected size % instead of 8", size_of(type_of(ma_backend_callbacks.onDeviceRead))); + assert(((cast(*void)(*instance.onDeviceWrite)) - cast(*void)(*instance)) == 72, "ma_backend_callbacks.onDeviceWrite has unexpected offset % instead of 72", ((cast(*void)(*instance.onDeviceWrite)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_backend_callbacks.onDeviceWrite)) == 8, "ma_backend_callbacks.onDeviceWrite has unexpected size % instead of 8", size_of(type_of(ma_backend_callbacks.onDeviceWrite))); + assert(((cast(*void)(*instance.onDeviceDataLoop)) - cast(*void)(*instance)) == 80, "ma_backend_callbacks.onDeviceDataLoop has unexpected offset % instead of 80", ((cast(*void)(*instance.onDeviceDataLoop)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_backend_callbacks.onDeviceDataLoop)) == 8, "ma_backend_callbacks.onDeviceDataLoop has unexpected size % instead of 8", size_of(type_of(ma_backend_callbacks.onDeviceDataLoop))); + assert(((cast(*void)(*instance.onDeviceDataLoopWakeup)) - cast(*void)(*instance)) == 88, "ma_backend_callbacks.onDeviceDataLoopWakeup has unexpected offset % instead of 88", ((cast(*void)(*instance.onDeviceDataLoopWakeup)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_backend_callbacks.onDeviceDataLoopWakeup)) == 8, "ma_backend_callbacks.onDeviceDataLoopWakeup has unexpected size % instead of 8", size_of(type_of(ma_backend_callbacks.onDeviceDataLoopWakeup))); + assert(((cast(*void)(*instance.onDeviceGetInfo)) - cast(*void)(*instance)) == 96, "ma_backend_callbacks.onDeviceGetInfo has unexpected offset % instead of 96", ((cast(*void)(*instance.onDeviceGetInfo)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_backend_callbacks.onDeviceGetInfo)) == 8, "ma_backend_callbacks.onDeviceGetInfo has unexpected size % instead of 8", size_of(type_of(ma_backend_callbacks.onDeviceGetInfo))); + assert(size_of(ma_backend_callbacks) == 104, "ma_backend_callbacks has size % instead of 104", size_of(ma_backend_callbacks)); + } + + { + instance: ma_context_config; + assert(((cast(*void)(*instance.pLog)) - cast(*void)(*instance)) == 0, "ma_context_config.pLog has unexpected offset % instead of 0", ((cast(*void)(*instance.pLog)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_context_config.pLog)) == 8, "ma_context_config.pLog has unexpected size % instead of 8", size_of(type_of(ma_context_config.pLog))); + assert(((cast(*void)(*instance.threadPriority)) - cast(*void)(*instance)) == 8, "ma_context_config.threadPriority has unexpected offset % instead of 8", ((cast(*void)(*instance.threadPriority)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_context_config.threadPriority)) == 4, "ma_context_config.threadPriority has unexpected size % instead of 4", size_of(type_of(ma_context_config.threadPriority))); + assert(((cast(*void)(*instance.threadStackSize)) - cast(*void)(*instance)) == 16, "ma_context_config.threadStackSize has unexpected offset % instead of 16", ((cast(*void)(*instance.threadStackSize)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_context_config.threadStackSize)) == 8, "ma_context_config.threadStackSize has unexpected size % instead of 8", size_of(type_of(ma_context_config.threadStackSize))); + assert(((cast(*void)(*instance.pUserData)) - cast(*void)(*instance)) == 24, "ma_context_config.pUserData has unexpected offset % instead of 24", ((cast(*void)(*instance.pUserData)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_context_config.pUserData)) == 8, "ma_context_config.pUserData has unexpected size % instead of 8", size_of(type_of(ma_context_config.pUserData))); + assert(((cast(*void)(*instance.allocationCallbacks)) - cast(*void)(*instance)) == 32, "ma_context_config.allocationCallbacks has unexpected offset % instead of 32", ((cast(*void)(*instance.allocationCallbacks)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_context_config.allocationCallbacks)) == 32, "ma_context_config.allocationCallbacks has unexpected size % instead of 32", size_of(type_of(ma_context_config.allocationCallbacks))); + assert(((cast(*void)(*instance.alsa)) - cast(*void)(*instance)) == 64, "ma_context_config.alsa has unexpected offset % instead of 64", ((cast(*void)(*instance.alsa)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_context_config.alsa)) == 4, "ma_context_config.alsa has unexpected size % instead of 4", size_of(type_of(ma_context_config.alsa))); + assert(((cast(*void)(*instance.pulse)) - cast(*void)(*instance)) == 72, "ma_context_config.pulse has unexpected offset % instead of 72", ((cast(*void)(*instance.pulse)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_context_config.pulse)) == 24, "ma_context_config.pulse has unexpected size % instead of 24", size_of(type_of(ma_context_config.pulse))); + assert(((cast(*void)(*instance.coreaudio)) - cast(*void)(*instance)) == 96, "ma_context_config.coreaudio has unexpected offset % instead of 96", ((cast(*void)(*instance.coreaudio)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_context_config.coreaudio)) == 16, "ma_context_config.coreaudio has unexpected size % instead of 16", size_of(type_of(ma_context_config.coreaudio))); + assert(((cast(*void)(*instance.jack)) - cast(*void)(*instance)) == 112, "ma_context_config.jack has unexpected offset % instead of 112", ((cast(*void)(*instance.jack)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_context_config.jack)) == 16, "ma_context_config.jack has unexpected size % instead of 16", size_of(type_of(ma_context_config.jack))); + assert(((cast(*void)(*instance.custom)) - cast(*void)(*instance)) == 128, "ma_context_config.custom has unexpected offset % instead of 128", ((cast(*void)(*instance.custom)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_context_config.custom)) == 104, "ma_context_config.custom has unexpected size % instead of 104", size_of(type_of(ma_context_config.custom))); + assert(size_of(ma_context_config) == 232, "ma_context_config has size % instead of 232", size_of(ma_context_config)); + } + + { + instance: ma_context_command__wasapi; + assert(((cast(*void)(*instance.code)) - cast(*void)(*instance)) == 0, "ma_context_command__wasapi.code has unexpected offset % instead of 0", ((cast(*void)(*instance.code)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_context_command__wasapi.code)) == 4, "ma_context_command__wasapi.code has unexpected size % instead of 4", size_of(type_of(ma_context_command__wasapi.code))); + assert(((cast(*void)(*instance.pEvent)) - cast(*void)(*instance)) == 8, "ma_context_command__wasapi.pEvent has unexpected offset % instead of 8", ((cast(*void)(*instance.pEvent)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_context_command__wasapi.pEvent)) == 8, "ma_context_command__wasapi.pEvent has unexpected size % instead of 8", size_of(type_of(ma_context_command__wasapi.pEvent))); + assert(((cast(*void)(*instance.data)) - cast(*void)(*instance)) == 16, "ma_context_command__wasapi.data has unexpected offset % instead of 16", ((cast(*void)(*instance.data)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_context_command__wasapi.data)) == 32, "ma_context_command__wasapi.data has unexpected size % instead of 32", size_of(type_of(ma_context_command__wasapi.data))); + assert(size_of(ma_context_command__wasapi) == 48, "ma_context_command__wasapi has size % instead of 48", size_of(ma_context_command__wasapi)); + } + + { + instance: ma_context; + assert(((cast(*void)(*instance.callbacks)) - cast(*void)(*instance)) == 0, "ma_context.callbacks has unexpected offset % instead of 0", ((cast(*void)(*instance.callbacks)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_context.callbacks)) == 104, "ma_context.callbacks has unexpected size % instead of 104", size_of(type_of(ma_context.callbacks))); + assert(((cast(*void)(*instance.backend)) - cast(*void)(*instance)) == 104, "ma_context.backend has unexpected offset % instead of 104", ((cast(*void)(*instance.backend)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_context.backend)) == 4, "ma_context.backend has unexpected size % instead of 4", size_of(type_of(ma_context.backend))); + assert(((cast(*void)(*instance.pLog)) - cast(*void)(*instance)) == 112, "ma_context.pLog has unexpected offset % instead of 112", ((cast(*void)(*instance.pLog)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_context.pLog)) == 8, "ma_context.pLog has unexpected size % instead of 8", size_of(type_of(ma_context.pLog))); + assert(((cast(*void)(*instance.log)) - cast(*void)(*instance)) == 120, "ma_context.log has unexpected offset % instead of 120", ((cast(*void)(*instance.log)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_context.log)) == 112, "ma_context.log has unexpected size % instead of 112", size_of(type_of(ma_context.log))); + assert(((cast(*void)(*instance.threadPriority)) - cast(*void)(*instance)) == 232, "ma_context.threadPriority has unexpected offset % instead of 232", ((cast(*void)(*instance.threadPriority)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_context.threadPriority)) == 4, "ma_context.threadPriority has unexpected size % instead of 4", size_of(type_of(ma_context.threadPriority))); + assert(((cast(*void)(*instance.threadStackSize)) - cast(*void)(*instance)) == 240, "ma_context.threadStackSize has unexpected offset % instead of 240", ((cast(*void)(*instance.threadStackSize)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_context.threadStackSize)) == 8, "ma_context.threadStackSize has unexpected size % instead of 8", size_of(type_of(ma_context.threadStackSize))); + assert(((cast(*void)(*instance.pUserData)) - cast(*void)(*instance)) == 248, "ma_context.pUserData has unexpected offset % instead of 248", ((cast(*void)(*instance.pUserData)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_context.pUserData)) == 8, "ma_context.pUserData has unexpected size % instead of 8", size_of(type_of(ma_context.pUserData))); + assert(((cast(*void)(*instance.allocationCallbacks)) - cast(*void)(*instance)) == 256, "ma_context.allocationCallbacks has unexpected offset % instead of 256", ((cast(*void)(*instance.allocationCallbacks)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_context.allocationCallbacks)) == 32, "ma_context.allocationCallbacks has unexpected size % instead of 32", size_of(type_of(ma_context.allocationCallbacks))); + assert(((cast(*void)(*instance.deviceEnumLock)) - cast(*void)(*instance)) == 288, "ma_context.deviceEnumLock has unexpected offset % instead of 288", ((cast(*void)(*instance.deviceEnumLock)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_context.deviceEnumLock)) == 8, "ma_context.deviceEnumLock has unexpected size % instead of 8", size_of(type_of(ma_context.deviceEnumLock))); + assert(((cast(*void)(*instance.deviceInfoLock)) - cast(*void)(*instance)) == 296, "ma_context.deviceInfoLock has unexpected offset % instead of 296", ((cast(*void)(*instance.deviceInfoLock)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_context.deviceInfoLock)) == 8, "ma_context.deviceInfoLock has unexpected size % instead of 8", size_of(type_of(ma_context.deviceInfoLock))); + assert(((cast(*void)(*instance.deviceInfoCapacity)) - cast(*void)(*instance)) == 304, "ma_context.deviceInfoCapacity has unexpected offset % instead of 304", ((cast(*void)(*instance.deviceInfoCapacity)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_context.deviceInfoCapacity)) == 4, "ma_context.deviceInfoCapacity has unexpected size % instead of 4", size_of(type_of(ma_context.deviceInfoCapacity))); + assert(((cast(*void)(*instance.playbackDeviceInfoCount)) - cast(*void)(*instance)) == 308, "ma_context.playbackDeviceInfoCount has unexpected offset % instead of 308", ((cast(*void)(*instance.playbackDeviceInfoCount)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_context.playbackDeviceInfoCount)) == 4, "ma_context.playbackDeviceInfoCount has unexpected size % instead of 4", size_of(type_of(ma_context.playbackDeviceInfoCount))); + assert(((cast(*void)(*instance.captureDeviceInfoCount)) - cast(*void)(*instance)) == 312, "ma_context.captureDeviceInfoCount has unexpected offset % instead of 312", ((cast(*void)(*instance.captureDeviceInfoCount)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_context.captureDeviceInfoCount)) == 4, "ma_context.captureDeviceInfoCount has unexpected size % instead of 4", size_of(type_of(ma_context.captureDeviceInfoCount))); + assert(((cast(*void)(*instance.pDeviceInfos)) - cast(*void)(*instance)) == 320, "ma_context.pDeviceInfos has unexpected offset % instead of 320", ((cast(*void)(*instance.pDeviceInfos)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_context.pDeviceInfos)) == 8, "ma_context.pDeviceInfos has unexpected size % instead of 8", size_of(type_of(ma_context.pDeviceInfos))); + assert(size_of(ma_context) == 720, "ma_context has size % instead of 720", size_of(ma_context)); + } + + { + instance: ma_device; + assert(((cast(*void)(*instance.pContext)) - cast(*void)(*instance)) == 0, "ma_device.pContext has unexpected offset % instead of 0", ((cast(*void)(*instance.pContext)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device.pContext)) == 8, "ma_device.pContext has unexpected size % instead of 8", size_of(type_of(ma_device.pContext))); + assert(((cast(*void)(*instance.type)) - cast(*void)(*instance)) == 8, "ma_device.type has unexpected offset % instead of 8", ((cast(*void)(*instance.type)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device.type)) == 4, "ma_device.type has unexpected size % instead of 4", size_of(type_of(ma_device.type))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 12, "ma_device.sampleRate has unexpected offset % instead of 12", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device.sampleRate)) == 4, "ma_device.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_device.sampleRate))); + assert(((cast(*void)(*instance.state)) - cast(*void)(*instance)) == 16, "ma_device.state has unexpected offset % instead of 16", ((cast(*void)(*instance.state)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device.state)) == 4, "ma_device.state has unexpected size % instead of 4", size_of(type_of(ma_device.state))); + assert(((cast(*void)(*instance.onData)) - cast(*void)(*instance)) == 24, "ma_device.onData has unexpected offset % instead of 24", ((cast(*void)(*instance.onData)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device.onData)) == 8, "ma_device.onData has unexpected size % instead of 8", size_of(type_of(ma_device.onData))); + assert(((cast(*void)(*instance.onNotification)) - cast(*void)(*instance)) == 32, "ma_device.onNotification has unexpected offset % instead of 32", ((cast(*void)(*instance.onNotification)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device.onNotification)) == 8, "ma_device.onNotification has unexpected size % instead of 8", size_of(type_of(ma_device.onNotification))); + assert(((cast(*void)(*instance.onStop)) - cast(*void)(*instance)) == 40, "ma_device.onStop has unexpected offset % instead of 40", ((cast(*void)(*instance.onStop)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device.onStop)) == 8, "ma_device.onStop has unexpected size % instead of 8", size_of(type_of(ma_device.onStop))); + assert(((cast(*void)(*instance.pUserData)) - cast(*void)(*instance)) == 48, "ma_device.pUserData has unexpected offset % instead of 48", ((cast(*void)(*instance.pUserData)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device.pUserData)) == 8, "ma_device.pUserData has unexpected size % instead of 8", size_of(type_of(ma_device.pUserData))); + assert(((cast(*void)(*instance.startStopLock)) - cast(*void)(*instance)) == 56, "ma_device.startStopLock has unexpected offset % instead of 56", ((cast(*void)(*instance.startStopLock)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device.startStopLock)) == 8, "ma_device.startStopLock has unexpected size % instead of 8", size_of(type_of(ma_device.startStopLock))); + assert(((cast(*void)(*instance.wakeupEvent)) - cast(*void)(*instance)) == 64, "ma_device.wakeupEvent has unexpected offset % instead of 64", ((cast(*void)(*instance.wakeupEvent)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device.wakeupEvent)) == 8, "ma_device.wakeupEvent has unexpected size % instead of 8", size_of(type_of(ma_device.wakeupEvent))); + assert(((cast(*void)(*instance.startEvent)) - cast(*void)(*instance)) == 72, "ma_device.startEvent has unexpected offset % instead of 72", ((cast(*void)(*instance.startEvent)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device.startEvent)) == 8, "ma_device.startEvent has unexpected size % instead of 8", size_of(type_of(ma_device.startEvent))); + assert(((cast(*void)(*instance.stopEvent)) - cast(*void)(*instance)) == 80, "ma_device.stopEvent has unexpected offset % instead of 80", ((cast(*void)(*instance.stopEvent)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device.stopEvent)) == 8, "ma_device.stopEvent has unexpected size % instead of 8", size_of(type_of(ma_device.stopEvent))); + assert(((cast(*void)(*instance.thread)) - cast(*void)(*instance)) == 88, "ma_device.thread has unexpected offset % instead of 88", ((cast(*void)(*instance.thread)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device.thread)) == 8, "ma_device.thread has unexpected size % instead of 8", size_of(type_of(ma_device.thread))); + assert(((cast(*void)(*instance.workResult)) - cast(*void)(*instance)) == 96, "ma_device.workResult has unexpected offset % instead of 96", ((cast(*void)(*instance.workResult)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device.workResult)) == 4, "ma_device.workResult has unexpected size % instead of 4", size_of(type_of(ma_device.workResult))); + assert(((cast(*void)(*instance.isOwnerOfContext)) - cast(*void)(*instance)) == 100, "ma_device.isOwnerOfContext has unexpected offset % instead of 100", ((cast(*void)(*instance.isOwnerOfContext)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device.isOwnerOfContext)) == 1, "ma_device.isOwnerOfContext has unexpected size % instead of 1", size_of(type_of(ma_device.isOwnerOfContext))); + assert(((cast(*void)(*instance.noPreSilencedOutputBuffer)) - cast(*void)(*instance)) == 101, "ma_device.noPreSilencedOutputBuffer has unexpected offset % instead of 101", ((cast(*void)(*instance.noPreSilencedOutputBuffer)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device.noPreSilencedOutputBuffer)) == 1, "ma_device.noPreSilencedOutputBuffer has unexpected size % instead of 1", size_of(type_of(ma_device.noPreSilencedOutputBuffer))); + assert(((cast(*void)(*instance.noClip)) - cast(*void)(*instance)) == 102, "ma_device.noClip has unexpected offset % instead of 102", ((cast(*void)(*instance.noClip)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device.noClip)) == 1, "ma_device.noClip has unexpected size % instead of 1", size_of(type_of(ma_device.noClip))); + assert(((cast(*void)(*instance.noDisableDenormals)) - cast(*void)(*instance)) == 103, "ma_device.noDisableDenormals has unexpected offset % instead of 103", ((cast(*void)(*instance.noDisableDenormals)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device.noDisableDenormals)) == 1, "ma_device.noDisableDenormals has unexpected size % instead of 1", size_of(type_of(ma_device.noDisableDenormals))); + assert(((cast(*void)(*instance.noFixedSizedCallback)) - cast(*void)(*instance)) == 104, "ma_device.noFixedSizedCallback has unexpected offset % instead of 104", ((cast(*void)(*instance.noFixedSizedCallback)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device.noFixedSizedCallback)) == 1, "ma_device.noFixedSizedCallback has unexpected size % instead of 1", size_of(type_of(ma_device.noFixedSizedCallback))); + assert(((cast(*void)(*instance.masterVolumeFactor)) - cast(*void)(*instance)) == 108, "ma_device.masterVolumeFactor has unexpected offset % instead of 108", ((cast(*void)(*instance.masterVolumeFactor)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device.masterVolumeFactor)) == 4, "ma_device.masterVolumeFactor has unexpected size % instead of 4", size_of(type_of(ma_device.masterVolumeFactor))); + assert(((cast(*void)(*instance.duplexRB)) - cast(*void)(*instance)) == 112, "ma_device.duplexRB has unexpected offset % instead of 112", ((cast(*void)(*instance.duplexRB)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device.duplexRB)) == 152, "ma_device.duplexRB has unexpected size % instead of 152", size_of(type_of(ma_device.duplexRB))); + assert(((cast(*void)(*instance.resampling)) - cast(*void)(*instance)) == 264, "ma_device.resampling has unexpected offset % instead of 264", ((cast(*void)(*instance.resampling)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device.resampling)) == 32, "ma_device.resampling has unexpected size % instead of 32", size_of(type_of(ma_device.resampling))); + assert(((cast(*void)(*instance.playback)) - cast(*void)(*instance)) == 296, "ma_device.playback has unexpected offset % instead of 296", ((cast(*void)(*instance.playback)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device.playback)) == 1432, "ma_device.playback has unexpected size % instead of 1432", size_of(type_of(ma_device.playback))); + assert(((cast(*void)(*instance.capture)) - cast(*void)(*instance)) == 1728, "ma_device.capture has unexpected offset % instead of 1728", ((cast(*void)(*instance.capture)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_device.capture)) == 1400, "ma_device.capture has unexpected size % instead of 1400", size_of(type_of(ma_device.capture))); + assert(size_of(ma_device) == 3312, "ma_device has size % instead of 3312", size_of(ma_device)); + } + + { + instance: ma_file_info; + assert(((cast(*void)(*instance.sizeInBytes)) - cast(*void)(*instance)) == 0, "ma_file_info.sizeInBytes has unexpected offset % instead of 0", ((cast(*void)(*instance.sizeInBytes)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_file_info.sizeInBytes)) == 8, "ma_file_info.sizeInBytes has unexpected size % instead of 8", size_of(type_of(ma_file_info.sizeInBytes))); + assert(size_of(ma_file_info) == 8, "ma_file_info has size % instead of 8", size_of(ma_file_info)); + } + + { + instance: ma_vfs_callbacks; + assert(((cast(*void)(*instance.onOpen)) - cast(*void)(*instance)) == 0, "ma_vfs_callbacks.onOpen has unexpected offset % instead of 0", ((cast(*void)(*instance.onOpen)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_vfs_callbacks.onOpen)) == 8, "ma_vfs_callbacks.onOpen has unexpected size % instead of 8", size_of(type_of(ma_vfs_callbacks.onOpen))); + assert(((cast(*void)(*instance.onOpenW)) - cast(*void)(*instance)) == 8, "ma_vfs_callbacks.onOpenW has unexpected offset % instead of 8", ((cast(*void)(*instance.onOpenW)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_vfs_callbacks.onOpenW)) == 8, "ma_vfs_callbacks.onOpenW has unexpected size % instead of 8", size_of(type_of(ma_vfs_callbacks.onOpenW))); + assert(((cast(*void)(*instance.onClose)) - cast(*void)(*instance)) == 16, "ma_vfs_callbacks.onClose has unexpected offset % instead of 16", ((cast(*void)(*instance.onClose)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_vfs_callbacks.onClose)) == 8, "ma_vfs_callbacks.onClose has unexpected size % instead of 8", size_of(type_of(ma_vfs_callbacks.onClose))); + assert(((cast(*void)(*instance.onRead)) - cast(*void)(*instance)) == 24, "ma_vfs_callbacks.onRead has unexpected offset % instead of 24", ((cast(*void)(*instance.onRead)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_vfs_callbacks.onRead)) == 8, "ma_vfs_callbacks.onRead has unexpected size % instead of 8", size_of(type_of(ma_vfs_callbacks.onRead))); + assert(((cast(*void)(*instance.onWrite)) - cast(*void)(*instance)) == 32, "ma_vfs_callbacks.onWrite has unexpected offset % instead of 32", ((cast(*void)(*instance.onWrite)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_vfs_callbacks.onWrite)) == 8, "ma_vfs_callbacks.onWrite has unexpected size % instead of 8", size_of(type_of(ma_vfs_callbacks.onWrite))); + assert(((cast(*void)(*instance.onSeek)) - cast(*void)(*instance)) == 40, "ma_vfs_callbacks.onSeek has unexpected offset % instead of 40", ((cast(*void)(*instance.onSeek)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_vfs_callbacks.onSeek)) == 8, "ma_vfs_callbacks.onSeek has unexpected size % instead of 8", size_of(type_of(ma_vfs_callbacks.onSeek))); + assert(((cast(*void)(*instance.onTell)) - cast(*void)(*instance)) == 48, "ma_vfs_callbacks.onTell has unexpected offset % instead of 48", ((cast(*void)(*instance.onTell)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_vfs_callbacks.onTell)) == 8, "ma_vfs_callbacks.onTell has unexpected size % instead of 8", size_of(type_of(ma_vfs_callbacks.onTell))); + assert(((cast(*void)(*instance.onInfo)) - cast(*void)(*instance)) == 56, "ma_vfs_callbacks.onInfo has unexpected offset % instead of 56", ((cast(*void)(*instance.onInfo)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_vfs_callbacks.onInfo)) == 8, "ma_vfs_callbacks.onInfo has unexpected size % instead of 8", size_of(type_of(ma_vfs_callbacks.onInfo))); + assert(size_of(ma_vfs_callbacks) == 64, "ma_vfs_callbacks has size % instead of 64", size_of(ma_vfs_callbacks)); + } + + { + instance: ma_default_vfs; + assert(((cast(*void)(*instance.cb)) - cast(*void)(*instance)) == 0, "ma_default_vfs.cb has unexpected offset % instead of 0", ((cast(*void)(*instance.cb)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_default_vfs.cb)) == 64, "ma_default_vfs.cb has unexpected size % instead of 64", size_of(type_of(ma_default_vfs.cb))); + assert(((cast(*void)(*instance.allocationCallbacks)) - cast(*void)(*instance)) == 64, "ma_default_vfs.allocationCallbacks has unexpected offset % instead of 64", ((cast(*void)(*instance.allocationCallbacks)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_default_vfs.allocationCallbacks)) == 32, "ma_default_vfs.allocationCallbacks has unexpected size % instead of 32", size_of(type_of(ma_default_vfs.allocationCallbacks))); + assert(size_of(ma_default_vfs) == 96, "ma_default_vfs has size % instead of 96", size_of(ma_default_vfs)); + } + + { + instance: ma_decoding_backend_config; + assert(((cast(*void)(*instance.preferredFormat)) - cast(*void)(*instance)) == 0, "ma_decoding_backend_config.preferredFormat has unexpected offset % instead of 0", ((cast(*void)(*instance.preferredFormat)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoding_backend_config.preferredFormat)) == 4, "ma_decoding_backend_config.preferredFormat has unexpected size % instead of 4", size_of(type_of(ma_decoding_backend_config.preferredFormat))); + assert(((cast(*void)(*instance.seekPointCount)) - cast(*void)(*instance)) == 4, "ma_decoding_backend_config.seekPointCount has unexpected offset % instead of 4", ((cast(*void)(*instance.seekPointCount)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoding_backend_config.seekPointCount)) == 4, "ma_decoding_backend_config.seekPointCount has unexpected size % instead of 4", size_of(type_of(ma_decoding_backend_config.seekPointCount))); + assert(size_of(ma_decoding_backend_config) == 8, "ma_decoding_backend_config has size % instead of 8", size_of(ma_decoding_backend_config)); + } + + { + instance: ma_decoding_backend_vtable; + assert(((cast(*void)(*instance.onInit)) - cast(*void)(*instance)) == 0, "ma_decoding_backend_vtable.onInit has unexpected offset % instead of 0", ((cast(*void)(*instance.onInit)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoding_backend_vtable.onInit)) == 8, "ma_decoding_backend_vtable.onInit has unexpected size % instead of 8", size_of(type_of(ma_decoding_backend_vtable.onInit))); + assert(((cast(*void)(*instance.onInitFile)) - cast(*void)(*instance)) == 8, "ma_decoding_backend_vtable.onInitFile has unexpected offset % instead of 8", ((cast(*void)(*instance.onInitFile)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoding_backend_vtable.onInitFile)) == 8, "ma_decoding_backend_vtable.onInitFile has unexpected size % instead of 8", size_of(type_of(ma_decoding_backend_vtable.onInitFile))); + assert(((cast(*void)(*instance.onInitFileW)) - cast(*void)(*instance)) == 16, "ma_decoding_backend_vtable.onInitFileW has unexpected offset % instead of 16", ((cast(*void)(*instance.onInitFileW)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoding_backend_vtable.onInitFileW)) == 8, "ma_decoding_backend_vtable.onInitFileW has unexpected size % instead of 8", size_of(type_of(ma_decoding_backend_vtable.onInitFileW))); + assert(((cast(*void)(*instance.onInitMemory)) - cast(*void)(*instance)) == 24, "ma_decoding_backend_vtable.onInitMemory has unexpected offset % instead of 24", ((cast(*void)(*instance.onInitMemory)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoding_backend_vtable.onInitMemory)) == 8, "ma_decoding_backend_vtable.onInitMemory has unexpected size % instead of 8", size_of(type_of(ma_decoding_backend_vtable.onInitMemory))); + assert(((cast(*void)(*instance.onUninit)) - cast(*void)(*instance)) == 32, "ma_decoding_backend_vtable.onUninit has unexpected offset % instead of 32", ((cast(*void)(*instance.onUninit)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoding_backend_vtable.onUninit)) == 8, "ma_decoding_backend_vtable.onUninit has unexpected size % instead of 8", size_of(type_of(ma_decoding_backend_vtable.onUninit))); + assert(size_of(ma_decoding_backend_vtable) == 40, "ma_decoding_backend_vtable has size % instead of 40", size_of(ma_decoding_backend_vtable)); + } + + { + instance: ma_decoder_config; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_decoder_config.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder_config.format)) == 4, "ma_decoder_config.format has unexpected size % instead of 4", size_of(type_of(ma_decoder_config.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_decoder_config.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder_config.channels)) == 4, "ma_decoder_config.channels has unexpected size % instead of 4", size_of(type_of(ma_decoder_config.channels))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 8, "ma_decoder_config.sampleRate has unexpected offset % instead of 8", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder_config.sampleRate)) == 4, "ma_decoder_config.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_decoder_config.sampleRate))); + assert(((cast(*void)(*instance.pChannelMap)) - cast(*void)(*instance)) == 16, "ma_decoder_config.pChannelMap has unexpected offset % instead of 16", ((cast(*void)(*instance.pChannelMap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder_config.pChannelMap)) == 8, "ma_decoder_config.pChannelMap has unexpected size % instead of 8", size_of(type_of(ma_decoder_config.pChannelMap))); + assert(((cast(*void)(*instance.channelMixMode)) - cast(*void)(*instance)) == 24, "ma_decoder_config.channelMixMode has unexpected offset % instead of 24", ((cast(*void)(*instance.channelMixMode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder_config.channelMixMode)) == 4, "ma_decoder_config.channelMixMode has unexpected size % instead of 4", size_of(type_of(ma_decoder_config.channelMixMode))); + assert(((cast(*void)(*instance.ditherMode)) - cast(*void)(*instance)) == 28, "ma_decoder_config.ditherMode has unexpected offset % instead of 28", ((cast(*void)(*instance.ditherMode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder_config.ditherMode)) == 4, "ma_decoder_config.ditherMode has unexpected size % instead of 4", size_of(type_of(ma_decoder_config.ditherMode))); + assert(((cast(*void)(*instance.resampling)) - cast(*void)(*instance)) == 32, "ma_decoder_config.resampling has unexpected offset % instead of 32", ((cast(*void)(*instance.resampling)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder_config.resampling)) == 48, "ma_decoder_config.resampling has unexpected size % instead of 48", size_of(type_of(ma_decoder_config.resampling))); + assert(((cast(*void)(*instance.allocationCallbacks)) - cast(*void)(*instance)) == 80, "ma_decoder_config.allocationCallbacks has unexpected offset % instead of 80", ((cast(*void)(*instance.allocationCallbacks)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder_config.allocationCallbacks)) == 32, "ma_decoder_config.allocationCallbacks has unexpected size % instead of 32", size_of(type_of(ma_decoder_config.allocationCallbacks))); + assert(((cast(*void)(*instance.encodingFormat)) - cast(*void)(*instance)) == 112, "ma_decoder_config.encodingFormat has unexpected offset % instead of 112", ((cast(*void)(*instance.encodingFormat)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder_config.encodingFormat)) == 4, "ma_decoder_config.encodingFormat has unexpected size % instead of 4", size_of(type_of(ma_decoder_config.encodingFormat))); + assert(((cast(*void)(*instance.seekPointCount)) - cast(*void)(*instance)) == 116, "ma_decoder_config.seekPointCount has unexpected offset % instead of 116", ((cast(*void)(*instance.seekPointCount)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder_config.seekPointCount)) == 4, "ma_decoder_config.seekPointCount has unexpected size % instead of 4", size_of(type_of(ma_decoder_config.seekPointCount))); + assert(((cast(*void)(*instance.ppCustomBackendVTables)) - cast(*void)(*instance)) == 120, "ma_decoder_config.ppCustomBackendVTables has unexpected offset % instead of 120", ((cast(*void)(*instance.ppCustomBackendVTables)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder_config.ppCustomBackendVTables)) == 8, "ma_decoder_config.ppCustomBackendVTables has unexpected size % instead of 8", size_of(type_of(ma_decoder_config.ppCustomBackendVTables))); + assert(((cast(*void)(*instance.customBackendCount)) - cast(*void)(*instance)) == 128, "ma_decoder_config.customBackendCount has unexpected offset % instead of 128", ((cast(*void)(*instance.customBackendCount)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder_config.customBackendCount)) == 4, "ma_decoder_config.customBackendCount has unexpected size % instead of 4", size_of(type_of(ma_decoder_config.customBackendCount))); + assert(((cast(*void)(*instance.pCustomBackendUserData)) - cast(*void)(*instance)) == 136, "ma_decoder_config.pCustomBackendUserData has unexpected offset % instead of 136", ((cast(*void)(*instance.pCustomBackendUserData)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder_config.pCustomBackendUserData)) == 8, "ma_decoder_config.pCustomBackendUserData has unexpected size % instead of 8", size_of(type_of(ma_decoder_config.pCustomBackendUserData))); + assert(size_of(ma_decoder_config) == 144, "ma_decoder_config has size % instead of 144", size_of(ma_decoder_config)); + } + + { + instance: ma_decoder; + assert(((cast(*void)(*instance.ds)) - cast(*void)(*instance)) == 0, "ma_decoder.ds has unexpected offset % instead of 0", ((cast(*void)(*instance.ds)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder.ds)) == 72, "ma_decoder.ds has unexpected size % instead of 72", size_of(type_of(ma_decoder.ds))); + assert(((cast(*void)(*instance.pBackend)) - cast(*void)(*instance)) == 72, "ma_decoder.pBackend has unexpected offset % instead of 72", ((cast(*void)(*instance.pBackend)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder.pBackend)) == 8, "ma_decoder.pBackend has unexpected size % instead of 8", size_of(type_of(ma_decoder.pBackend))); + assert(((cast(*void)(*instance.pBackendVTable)) - cast(*void)(*instance)) == 80, "ma_decoder.pBackendVTable has unexpected offset % instead of 80", ((cast(*void)(*instance.pBackendVTable)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder.pBackendVTable)) == 8, "ma_decoder.pBackendVTable has unexpected size % instead of 8", size_of(type_of(ma_decoder.pBackendVTable))); + assert(((cast(*void)(*instance.pBackendUserData)) - cast(*void)(*instance)) == 88, "ma_decoder.pBackendUserData has unexpected offset % instead of 88", ((cast(*void)(*instance.pBackendUserData)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder.pBackendUserData)) == 8, "ma_decoder.pBackendUserData has unexpected size % instead of 8", size_of(type_of(ma_decoder.pBackendUserData))); + assert(((cast(*void)(*instance.onRead)) - cast(*void)(*instance)) == 96, "ma_decoder.onRead has unexpected offset % instead of 96", ((cast(*void)(*instance.onRead)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder.onRead)) == 8, "ma_decoder.onRead has unexpected size % instead of 8", size_of(type_of(ma_decoder.onRead))); + assert(((cast(*void)(*instance.onSeek)) - cast(*void)(*instance)) == 104, "ma_decoder.onSeek has unexpected offset % instead of 104", ((cast(*void)(*instance.onSeek)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder.onSeek)) == 8, "ma_decoder.onSeek has unexpected size % instead of 8", size_of(type_of(ma_decoder.onSeek))); + assert(((cast(*void)(*instance.onTell)) - cast(*void)(*instance)) == 112, "ma_decoder.onTell has unexpected offset % instead of 112", ((cast(*void)(*instance.onTell)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder.onTell)) == 8, "ma_decoder.onTell has unexpected size % instead of 8", size_of(type_of(ma_decoder.onTell))); + assert(((cast(*void)(*instance.pUserData)) - cast(*void)(*instance)) == 120, "ma_decoder.pUserData has unexpected offset % instead of 120", ((cast(*void)(*instance.pUserData)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder.pUserData)) == 8, "ma_decoder.pUserData has unexpected size % instead of 8", size_of(type_of(ma_decoder.pUserData))); + assert(((cast(*void)(*instance.readPointerInPCMFrames)) - cast(*void)(*instance)) == 128, "ma_decoder.readPointerInPCMFrames has unexpected offset % instead of 128", ((cast(*void)(*instance.readPointerInPCMFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder.readPointerInPCMFrames)) == 8, "ma_decoder.readPointerInPCMFrames has unexpected size % instead of 8", size_of(type_of(ma_decoder.readPointerInPCMFrames))); + assert(((cast(*void)(*instance.outputFormat)) - cast(*void)(*instance)) == 136, "ma_decoder.outputFormat has unexpected offset % instead of 136", ((cast(*void)(*instance.outputFormat)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder.outputFormat)) == 4, "ma_decoder.outputFormat has unexpected size % instead of 4", size_of(type_of(ma_decoder.outputFormat))); + assert(((cast(*void)(*instance.outputChannels)) - cast(*void)(*instance)) == 140, "ma_decoder.outputChannels has unexpected offset % instead of 140", ((cast(*void)(*instance.outputChannels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder.outputChannels)) == 4, "ma_decoder.outputChannels has unexpected size % instead of 4", size_of(type_of(ma_decoder.outputChannels))); + assert(((cast(*void)(*instance.outputSampleRate)) - cast(*void)(*instance)) == 144, "ma_decoder.outputSampleRate has unexpected offset % instead of 144", ((cast(*void)(*instance.outputSampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder.outputSampleRate)) == 4, "ma_decoder.outputSampleRate has unexpected size % instead of 4", size_of(type_of(ma_decoder.outputSampleRate))); + assert(((cast(*void)(*instance.converter)) - cast(*void)(*instance)) == 152, "ma_decoder.converter has unexpected offset % instead of 152", ((cast(*void)(*instance.converter)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder.converter)) == 312, "ma_decoder.converter has unexpected size % instead of 312", size_of(type_of(ma_decoder.converter))); + assert(((cast(*void)(*instance.pInputCache)) - cast(*void)(*instance)) == 464, "ma_decoder.pInputCache has unexpected offset % instead of 464", ((cast(*void)(*instance.pInputCache)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder.pInputCache)) == 8, "ma_decoder.pInputCache has unexpected size % instead of 8", size_of(type_of(ma_decoder.pInputCache))); + assert(((cast(*void)(*instance.inputCacheCap)) - cast(*void)(*instance)) == 472, "ma_decoder.inputCacheCap has unexpected offset % instead of 472", ((cast(*void)(*instance.inputCacheCap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder.inputCacheCap)) == 8, "ma_decoder.inputCacheCap has unexpected size % instead of 8", size_of(type_of(ma_decoder.inputCacheCap))); + assert(((cast(*void)(*instance.inputCacheConsumed)) - cast(*void)(*instance)) == 480, "ma_decoder.inputCacheConsumed has unexpected offset % instead of 480", ((cast(*void)(*instance.inputCacheConsumed)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder.inputCacheConsumed)) == 8, "ma_decoder.inputCacheConsumed has unexpected size % instead of 8", size_of(type_of(ma_decoder.inputCacheConsumed))); + assert(((cast(*void)(*instance.inputCacheRemaining)) - cast(*void)(*instance)) == 488, "ma_decoder.inputCacheRemaining has unexpected offset % instead of 488", ((cast(*void)(*instance.inputCacheRemaining)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder.inputCacheRemaining)) == 8, "ma_decoder.inputCacheRemaining has unexpected size % instead of 8", size_of(type_of(ma_decoder.inputCacheRemaining))); + assert(((cast(*void)(*instance.allocationCallbacks)) - cast(*void)(*instance)) == 496, "ma_decoder.allocationCallbacks has unexpected offset % instead of 496", ((cast(*void)(*instance.allocationCallbacks)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder.allocationCallbacks)) == 32, "ma_decoder.allocationCallbacks has unexpected size % instead of 32", size_of(type_of(ma_decoder.allocationCallbacks))); + assert(((cast(*void)(*instance.data)) - cast(*void)(*instance)) == 528, "ma_decoder.data has unexpected offset % instead of 528", ((cast(*void)(*instance.data)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_decoder.data)) == 24, "ma_decoder.data has unexpected size % instead of 24", size_of(type_of(ma_decoder.data))); + assert(size_of(ma_decoder) == 552, "ma_decoder has size % instead of 552", size_of(ma_decoder)); + } + + { + instance: ma_encoder_config; + assert(((cast(*void)(*instance.encodingFormat)) - cast(*void)(*instance)) == 0, "ma_encoder_config.encodingFormat has unexpected offset % instead of 0", ((cast(*void)(*instance.encodingFormat)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_encoder_config.encodingFormat)) == 4, "ma_encoder_config.encodingFormat has unexpected size % instead of 4", size_of(type_of(ma_encoder_config.encodingFormat))); + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 4, "ma_encoder_config.format has unexpected offset % instead of 4", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_encoder_config.format)) == 4, "ma_encoder_config.format has unexpected size % instead of 4", size_of(type_of(ma_encoder_config.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 8, "ma_encoder_config.channels has unexpected offset % instead of 8", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_encoder_config.channels)) == 4, "ma_encoder_config.channels has unexpected size % instead of 4", size_of(type_of(ma_encoder_config.channels))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 12, "ma_encoder_config.sampleRate has unexpected offset % instead of 12", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_encoder_config.sampleRate)) == 4, "ma_encoder_config.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_encoder_config.sampleRate))); + assert(((cast(*void)(*instance.allocationCallbacks)) - cast(*void)(*instance)) == 16, "ma_encoder_config.allocationCallbacks has unexpected offset % instead of 16", ((cast(*void)(*instance.allocationCallbacks)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_encoder_config.allocationCallbacks)) == 32, "ma_encoder_config.allocationCallbacks has unexpected size % instead of 32", size_of(type_of(ma_encoder_config.allocationCallbacks))); + assert(size_of(ma_encoder_config) == 48, "ma_encoder_config has size % instead of 48", size_of(ma_encoder_config)); + } + + { + instance: ma_encoder; + assert(((cast(*void)(*instance.config)) - cast(*void)(*instance)) == 0, "ma_encoder.config has unexpected offset % instead of 0", ((cast(*void)(*instance.config)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_encoder.config)) == 48, "ma_encoder.config has unexpected size % instead of 48", size_of(type_of(ma_encoder.config))); + assert(((cast(*void)(*instance.onWrite)) - cast(*void)(*instance)) == 48, "ma_encoder.onWrite has unexpected offset % instead of 48", ((cast(*void)(*instance.onWrite)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_encoder.onWrite)) == 8, "ma_encoder.onWrite has unexpected size % instead of 8", size_of(type_of(ma_encoder.onWrite))); + assert(((cast(*void)(*instance.onSeek)) - cast(*void)(*instance)) == 56, "ma_encoder.onSeek has unexpected offset % instead of 56", ((cast(*void)(*instance.onSeek)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_encoder.onSeek)) == 8, "ma_encoder.onSeek has unexpected size % instead of 8", size_of(type_of(ma_encoder.onSeek))); + assert(((cast(*void)(*instance.onInit)) - cast(*void)(*instance)) == 64, "ma_encoder.onInit has unexpected offset % instead of 64", ((cast(*void)(*instance.onInit)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_encoder.onInit)) == 8, "ma_encoder.onInit has unexpected size % instead of 8", size_of(type_of(ma_encoder.onInit))); + assert(((cast(*void)(*instance.onUninit)) - cast(*void)(*instance)) == 72, "ma_encoder.onUninit has unexpected offset % instead of 72", ((cast(*void)(*instance.onUninit)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_encoder.onUninit)) == 8, "ma_encoder.onUninit has unexpected size % instead of 8", size_of(type_of(ma_encoder.onUninit))); + assert(((cast(*void)(*instance.onWritePCMFrames)) - cast(*void)(*instance)) == 80, "ma_encoder.onWritePCMFrames has unexpected offset % instead of 80", ((cast(*void)(*instance.onWritePCMFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_encoder.onWritePCMFrames)) == 8, "ma_encoder.onWritePCMFrames has unexpected size % instead of 8", size_of(type_of(ma_encoder.onWritePCMFrames))); + assert(((cast(*void)(*instance.pUserData)) - cast(*void)(*instance)) == 88, "ma_encoder.pUserData has unexpected offset % instead of 88", ((cast(*void)(*instance.pUserData)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_encoder.pUserData)) == 8, "ma_encoder.pUserData has unexpected size % instead of 8", size_of(type_of(ma_encoder.pUserData))); + assert(((cast(*void)(*instance.pInternalEncoder)) - cast(*void)(*instance)) == 96, "ma_encoder.pInternalEncoder has unexpected offset % instead of 96", ((cast(*void)(*instance.pInternalEncoder)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_encoder.pInternalEncoder)) == 8, "ma_encoder.pInternalEncoder has unexpected size % instead of 8", size_of(type_of(ma_encoder.pInternalEncoder))); + assert(((cast(*void)(*instance.data)) - cast(*void)(*instance)) == 104, "ma_encoder.data has unexpected offset % instead of 104", ((cast(*void)(*instance.data)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_encoder.data)) == 16, "ma_encoder.data has unexpected size % instead of 16", size_of(type_of(ma_encoder.data))); + assert(size_of(ma_encoder) == 120, "ma_encoder has size % instead of 120", size_of(ma_encoder)); + } + + { + instance: ma_waveform_config; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_waveform_config.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_waveform_config.format)) == 4, "ma_waveform_config.format has unexpected size % instead of 4", size_of(type_of(ma_waveform_config.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_waveform_config.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_waveform_config.channels)) == 4, "ma_waveform_config.channels has unexpected size % instead of 4", size_of(type_of(ma_waveform_config.channels))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 8, "ma_waveform_config.sampleRate has unexpected offset % instead of 8", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_waveform_config.sampleRate)) == 4, "ma_waveform_config.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_waveform_config.sampleRate))); + assert(((cast(*void)(*instance.type)) - cast(*void)(*instance)) == 12, "ma_waveform_config.type has unexpected offset % instead of 12", ((cast(*void)(*instance.type)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_waveform_config.type)) == 4, "ma_waveform_config.type has unexpected size % instead of 4", size_of(type_of(ma_waveform_config.type))); + assert(((cast(*void)(*instance.amplitude)) - cast(*void)(*instance)) == 16, "ma_waveform_config.amplitude has unexpected offset % instead of 16", ((cast(*void)(*instance.amplitude)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_waveform_config.amplitude)) == 8, "ma_waveform_config.amplitude has unexpected size % instead of 8", size_of(type_of(ma_waveform_config.amplitude))); + assert(((cast(*void)(*instance.frequency)) - cast(*void)(*instance)) == 24, "ma_waveform_config.frequency has unexpected offset % instead of 24", ((cast(*void)(*instance.frequency)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_waveform_config.frequency)) == 8, "ma_waveform_config.frequency has unexpected size % instead of 8", size_of(type_of(ma_waveform_config.frequency))); + assert(size_of(ma_waveform_config) == 32, "ma_waveform_config has size % instead of 32", size_of(ma_waveform_config)); + } + + { + instance: ma_waveform; + assert(((cast(*void)(*instance.ds)) - cast(*void)(*instance)) == 0, "ma_waveform.ds has unexpected offset % instead of 0", ((cast(*void)(*instance.ds)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_waveform.ds)) == 72, "ma_waveform.ds has unexpected size % instead of 72", size_of(type_of(ma_waveform.ds))); + assert(((cast(*void)(*instance.config)) - cast(*void)(*instance)) == 72, "ma_waveform.config has unexpected offset % instead of 72", ((cast(*void)(*instance.config)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_waveform.config)) == 32, "ma_waveform.config has unexpected size % instead of 32", size_of(type_of(ma_waveform.config))); + assert(((cast(*void)(*instance.advance)) - cast(*void)(*instance)) == 104, "ma_waveform.advance has unexpected offset % instead of 104", ((cast(*void)(*instance.advance)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_waveform.advance)) == 8, "ma_waveform.advance has unexpected size % instead of 8", size_of(type_of(ma_waveform.advance))); + assert(((cast(*void)(*instance.time)) - cast(*void)(*instance)) == 112, "ma_waveform.time has unexpected offset % instead of 112", ((cast(*void)(*instance.time)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_waveform.time)) == 8, "ma_waveform.time has unexpected size % instead of 8", size_of(type_of(ma_waveform.time))); + assert(size_of(ma_waveform) == 120, "ma_waveform has size % instead of 120", size_of(ma_waveform)); + } + + { + instance: ma_pulsewave_config; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_pulsewave_config.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_pulsewave_config.format)) == 4, "ma_pulsewave_config.format has unexpected size % instead of 4", size_of(type_of(ma_pulsewave_config.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_pulsewave_config.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_pulsewave_config.channels)) == 4, "ma_pulsewave_config.channels has unexpected size % instead of 4", size_of(type_of(ma_pulsewave_config.channels))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 8, "ma_pulsewave_config.sampleRate has unexpected offset % instead of 8", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_pulsewave_config.sampleRate)) == 4, "ma_pulsewave_config.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_pulsewave_config.sampleRate))); + assert(((cast(*void)(*instance.dutyCycle)) - cast(*void)(*instance)) == 16, "ma_pulsewave_config.dutyCycle has unexpected offset % instead of 16", ((cast(*void)(*instance.dutyCycle)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_pulsewave_config.dutyCycle)) == 8, "ma_pulsewave_config.dutyCycle has unexpected size % instead of 8", size_of(type_of(ma_pulsewave_config.dutyCycle))); + assert(((cast(*void)(*instance.amplitude)) - cast(*void)(*instance)) == 24, "ma_pulsewave_config.amplitude has unexpected offset % instead of 24", ((cast(*void)(*instance.amplitude)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_pulsewave_config.amplitude)) == 8, "ma_pulsewave_config.amplitude has unexpected size % instead of 8", size_of(type_of(ma_pulsewave_config.amplitude))); + assert(((cast(*void)(*instance.frequency)) - cast(*void)(*instance)) == 32, "ma_pulsewave_config.frequency has unexpected offset % instead of 32", ((cast(*void)(*instance.frequency)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_pulsewave_config.frequency)) == 8, "ma_pulsewave_config.frequency has unexpected size % instead of 8", size_of(type_of(ma_pulsewave_config.frequency))); + assert(size_of(ma_pulsewave_config) == 40, "ma_pulsewave_config has size % instead of 40", size_of(ma_pulsewave_config)); + } + + { + instance: ma_pulsewave; + assert(((cast(*void)(*instance.waveform)) - cast(*void)(*instance)) == 0, "ma_pulsewave.waveform has unexpected offset % instead of 0", ((cast(*void)(*instance.waveform)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_pulsewave.waveform)) == 120, "ma_pulsewave.waveform has unexpected size % instead of 120", size_of(type_of(ma_pulsewave.waveform))); + assert(((cast(*void)(*instance.config)) - cast(*void)(*instance)) == 120, "ma_pulsewave.config has unexpected offset % instead of 120", ((cast(*void)(*instance.config)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_pulsewave.config)) == 40, "ma_pulsewave.config has unexpected size % instead of 40", size_of(type_of(ma_pulsewave.config))); + assert(size_of(ma_pulsewave) == 160, "ma_pulsewave has size % instead of 160", size_of(ma_pulsewave)); + } + + { + instance: ma_noise_config; + assert(((cast(*void)(*instance.format)) - cast(*void)(*instance)) == 0, "ma_noise_config.format has unexpected offset % instead of 0", ((cast(*void)(*instance.format)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_noise_config.format)) == 4, "ma_noise_config.format has unexpected size % instead of 4", size_of(type_of(ma_noise_config.format))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 4, "ma_noise_config.channels has unexpected offset % instead of 4", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_noise_config.channels)) == 4, "ma_noise_config.channels has unexpected size % instead of 4", size_of(type_of(ma_noise_config.channels))); + assert(((cast(*void)(*instance.type)) - cast(*void)(*instance)) == 8, "ma_noise_config.type has unexpected offset % instead of 8", ((cast(*void)(*instance.type)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_noise_config.type)) == 4, "ma_noise_config.type has unexpected size % instead of 4", size_of(type_of(ma_noise_config.type))); + assert(((cast(*void)(*instance.seed)) - cast(*void)(*instance)) == 12, "ma_noise_config.seed has unexpected offset % instead of 12", ((cast(*void)(*instance.seed)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_noise_config.seed)) == 4, "ma_noise_config.seed has unexpected size % instead of 4", size_of(type_of(ma_noise_config.seed))); + assert(((cast(*void)(*instance.amplitude)) - cast(*void)(*instance)) == 16, "ma_noise_config.amplitude has unexpected offset % instead of 16", ((cast(*void)(*instance.amplitude)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_noise_config.amplitude)) == 8, "ma_noise_config.amplitude has unexpected size % instead of 8", size_of(type_of(ma_noise_config.amplitude))); + assert(((cast(*void)(*instance.duplicateChannels)) - cast(*void)(*instance)) == 24, "ma_noise_config.duplicateChannels has unexpected offset % instead of 24", ((cast(*void)(*instance.duplicateChannels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_noise_config.duplicateChannels)) == 4, "ma_noise_config.duplicateChannels has unexpected size % instead of 4", size_of(type_of(ma_noise_config.duplicateChannels))); + assert(size_of(ma_noise_config) == 32, "ma_noise_config has size % instead of 32", size_of(ma_noise_config)); + } + + { + instance: ma_noise; + assert(((cast(*void)(*instance.ds)) - cast(*void)(*instance)) == 0, "ma_noise.ds has unexpected offset % instead of 0", ((cast(*void)(*instance.ds)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_noise.ds)) == 56, "ma_noise.ds has unexpected size % instead of 56", size_of(type_of(ma_noise.ds))); + assert(((cast(*void)(*instance.config)) - cast(*void)(*instance)) == 56, "ma_noise.config has unexpected offset % instead of 56", ((cast(*void)(*instance.config)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_noise.config)) == 32, "ma_noise.config has unexpected size % instead of 32", size_of(type_of(ma_noise.config))); + assert(((cast(*void)(*instance.lcg)) - cast(*void)(*instance)) == 88, "ma_noise.lcg has unexpected offset % instead of 88", ((cast(*void)(*instance.lcg)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_noise.lcg)) == 4, "ma_noise.lcg has unexpected size % instead of 4", size_of(type_of(ma_noise.lcg))); + assert(((cast(*void)(*instance.state)) - cast(*void)(*instance)) == 96, "ma_noise.state has unexpected offset % instead of 96", ((cast(*void)(*instance.state)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_noise.state)) == 24, "ma_noise.state has unexpected size % instead of 24", size_of(type_of(ma_noise.state))); + assert(((cast(*void)(*instance._pHeap)) - cast(*void)(*instance)) == 120, "ma_noise._pHeap has unexpected offset % instead of 120", ((cast(*void)(*instance._pHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_noise._pHeap)) == 8, "ma_noise._pHeap has unexpected size % instead of 8", size_of(type_of(ma_noise._pHeap))); + assert(((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance)) == 128, "ma_noise._ownsHeap has unexpected offset % instead of 128", ((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_noise._ownsHeap)) == 4, "ma_noise._ownsHeap has unexpected size % instead of 4", size_of(type_of(ma_noise._ownsHeap))); + assert(size_of(ma_noise) == 136, "ma_noise has size % instead of 136", size_of(ma_noise)); + } + + { + instance: ma_resource_manager_pipeline_stage_notification; + assert(((cast(*void)(*instance.pNotification)) - cast(*void)(*instance)) == 0, "ma_resource_manager_pipeline_stage_notification.pNotification has unexpected offset % instead of 0", ((cast(*void)(*instance.pNotification)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_pipeline_stage_notification.pNotification)) == 8, "ma_resource_manager_pipeline_stage_notification.pNotification has unexpected size % instead of 8", size_of(type_of(ma_resource_manager_pipeline_stage_notification.pNotification))); + assert(((cast(*void)(*instance.pFence)) - cast(*void)(*instance)) == 8, "ma_resource_manager_pipeline_stage_notification.pFence has unexpected offset % instead of 8", ((cast(*void)(*instance.pFence)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_pipeline_stage_notification.pFence)) == 8, "ma_resource_manager_pipeline_stage_notification.pFence has unexpected size % instead of 8", size_of(type_of(ma_resource_manager_pipeline_stage_notification.pFence))); + assert(size_of(ma_resource_manager_pipeline_stage_notification) == 16, "ma_resource_manager_pipeline_stage_notification has size % instead of 16", size_of(ma_resource_manager_pipeline_stage_notification)); + } + + { + instance: ma_resource_manager_pipeline_notifications; + assert(((cast(*void)(*instance.init)) - cast(*void)(*instance)) == 0, "ma_resource_manager_pipeline_notifications.init has unexpected offset % instead of 0", ((cast(*void)(*instance.init)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_pipeline_notifications.init)) == 16, "ma_resource_manager_pipeline_notifications.init has unexpected size % instead of 16", size_of(type_of(ma_resource_manager_pipeline_notifications.init))); + assert(((cast(*void)(*instance.done)) - cast(*void)(*instance)) == 16, "ma_resource_manager_pipeline_notifications.done has unexpected offset % instead of 16", ((cast(*void)(*instance.done)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_pipeline_notifications.done)) == 16, "ma_resource_manager_pipeline_notifications.done has unexpected size % instead of 16", size_of(type_of(ma_resource_manager_pipeline_notifications.done))); + assert(size_of(ma_resource_manager_pipeline_notifications) == 32, "ma_resource_manager_pipeline_notifications has size % instead of 32", size_of(ma_resource_manager_pipeline_notifications)); + } + + { + instance: ma_resource_manager_data_source_config; + assert(((cast(*void)(*instance.pFilePath)) - cast(*void)(*instance)) == 0, "ma_resource_manager_data_source_config.pFilePath has unexpected offset % instead of 0", ((cast(*void)(*instance.pFilePath)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_source_config.pFilePath)) == 8, "ma_resource_manager_data_source_config.pFilePath has unexpected size % instead of 8", size_of(type_of(ma_resource_manager_data_source_config.pFilePath))); + assert(((cast(*void)(*instance.pFilePathW)) - cast(*void)(*instance)) == 8, "ma_resource_manager_data_source_config.pFilePathW has unexpected offset % instead of 8", ((cast(*void)(*instance.pFilePathW)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_source_config.pFilePathW)) == 8, "ma_resource_manager_data_source_config.pFilePathW has unexpected size % instead of 8", size_of(type_of(ma_resource_manager_data_source_config.pFilePathW))); + assert(((cast(*void)(*instance.pNotifications)) - cast(*void)(*instance)) == 16, "ma_resource_manager_data_source_config.pNotifications has unexpected offset % instead of 16", ((cast(*void)(*instance.pNotifications)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_source_config.pNotifications)) == 8, "ma_resource_manager_data_source_config.pNotifications has unexpected size % instead of 8", size_of(type_of(ma_resource_manager_data_source_config.pNotifications))); + assert(((cast(*void)(*instance.initialSeekPointInPCMFrames)) - cast(*void)(*instance)) == 24, "ma_resource_manager_data_source_config.initialSeekPointInPCMFrames has unexpected offset % instead of 24", ((cast(*void)(*instance.initialSeekPointInPCMFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_source_config.initialSeekPointInPCMFrames)) == 8, "ma_resource_manager_data_source_config.initialSeekPointInPCMFrames has unexpected size % instead of 8", size_of(type_of(ma_resource_manager_data_source_config.initialSeekPointInPCMFrames))); + assert(((cast(*void)(*instance.rangeBegInPCMFrames)) - cast(*void)(*instance)) == 32, "ma_resource_manager_data_source_config.rangeBegInPCMFrames has unexpected offset % instead of 32", ((cast(*void)(*instance.rangeBegInPCMFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_source_config.rangeBegInPCMFrames)) == 8, "ma_resource_manager_data_source_config.rangeBegInPCMFrames has unexpected size % instead of 8", size_of(type_of(ma_resource_manager_data_source_config.rangeBegInPCMFrames))); + assert(((cast(*void)(*instance.rangeEndInPCMFrames)) - cast(*void)(*instance)) == 40, "ma_resource_manager_data_source_config.rangeEndInPCMFrames has unexpected offset % instead of 40", ((cast(*void)(*instance.rangeEndInPCMFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_source_config.rangeEndInPCMFrames)) == 8, "ma_resource_manager_data_source_config.rangeEndInPCMFrames has unexpected size % instead of 8", size_of(type_of(ma_resource_manager_data_source_config.rangeEndInPCMFrames))); + assert(((cast(*void)(*instance.loopPointBegInPCMFrames)) - cast(*void)(*instance)) == 48, "ma_resource_manager_data_source_config.loopPointBegInPCMFrames has unexpected offset % instead of 48", ((cast(*void)(*instance.loopPointBegInPCMFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_source_config.loopPointBegInPCMFrames)) == 8, "ma_resource_manager_data_source_config.loopPointBegInPCMFrames has unexpected size % instead of 8", size_of(type_of(ma_resource_manager_data_source_config.loopPointBegInPCMFrames))); + assert(((cast(*void)(*instance.loopPointEndInPCMFrames)) - cast(*void)(*instance)) == 56, "ma_resource_manager_data_source_config.loopPointEndInPCMFrames has unexpected offset % instead of 56", ((cast(*void)(*instance.loopPointEndInPCMFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_source_config.loopPointEndInPCMFrames)) == 8, "ma_resource_manager_data_source_config.loopPointEndInPCMFrames has unexpected size % instead of 8", size_of(type_of(ma_resource_manager_data_source_config.loopPointEndInPCMFrames))); + assert(((cast(*void)(*instance.isLooping)) - cast(*void)(*instance)) == 64, "ma_resource_manager_data_source_config.isLooping has unexpected offset % instead of 64", ((cast(*void)(*instance.isLooping)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_source_config.isLooping)) == 4, "ma_resource_manager_data_source_config.isLooping has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_source_config.isLooping))); + assert(((cast(*void)(*instance.flags)) - cast(*void)(*instance)) == 68, "ma_resource_manager_data_source_config.flags has unexpected offset % instead of 68", ((cast(*void)(*instance.flags)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_source_config.flags)) == 4, "ma_resource_manager_data_source_config.flags has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_source_config.flags))); + assert(size_of(ma_resource_manager_data_source_config) == 72, "ma_resource_manager_data_source_config has size % instead of 72", size_of(ma_resource_manager_data_source_config)); + } + + { + instance: ma_resource_manager_data_supply; + assert(((cast(*void)(*instance.type)) - cast(*void)(*instance)) == 0, "ma_resource_manager_data_supply.type has unexpected offset % instead of 0", ((cast(*void)(*instance.type)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_supply.type)) == 4, "ma_resource_manager_data_supply.type has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_supply.type))); + assert(((cast(*void)(*instance.backend)) - cast(*void)(*instance)) == 8, "ma_resource_manager_data_supply.backend has unexpected offset % instead of 8", ((cast(*void)(*instance.backend)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_supply.backend)) == 56, "ma_resource_manager_data_supply.backend has unexpected size % instead of 56", size_of(type_of(ma_resource_manager_data_supply.backend))); + assert(size_of(ma_resource_manager_data_supply) == 64, "ma_resource_manager_data_supply has size % instead of 64", size_of(ma_resource_manager_data_supply)); + } + + { + instance: ma_resource_manager_data_buffer_node; + assert(((cast(*void)(*instance.hashedName32)) - cast(*void)(*instance)) == 0, "ma_resource_manager_data_buffer_node.hashedName32 has unexpected offset % instead of 0", ((cast(*void)(*instance.hashedName32)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_buffer_node.hashedName32)) == 4, "ma_resource_manager_data_buffer_node.hashedName32 has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_buffer_node.hashedName32))); + assert(((cast(*void)(*instance.refCount)) - cast(*void)(*instance)) == 4, "ma_resource_manager_data_buffer_node.refCount has unexpected offset % instead of 4", ((cast(*void)(*instance.refCount)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_buffer_node.refCount)) == 4, "ma_resource_manager_data_buffer_node.refCount has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_buffer_node.refCount))); + assert(((cast(*void)(*instance.result)) - cast(*void)(*instance)) == 8, "ma_resource_manager_data_buffer_node.result has unexpected offset % instead of 8", ((cast(*void)(*instance.result)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_buffer_node.result)) == 4, "ma_resource_manager_data_buffer_node.result has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_buffer_node.result))); + assert(((cast(*void)(*instance.executionCounter)) - cast(*void)(*instance)) == 12, "ma_resource_manager_data_buffer_node.executionCounter has unexpected offset % instead of 12", ((cast(*void)(*instance.executionCounter)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_buffer_node.executionCounter)) == 4, "ma_resource_manager_data_buffer_node.executionCounter has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_buffer_node.executionCounter))); + assert(((cast(*void)(*instance.executionPointer)) - cast(*void)(*instance)) == 16, "ma_resource_manager_data_buffer_node.executionPointer has unexpected offset % instead of 16", ((cast(*void)(*instance.executionPointer)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_buffer_node.executionPointer)) == 4, "ma_resource_manager_data_buffer_node.executionPointer has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_buffer_node.executionPointer))); + assert(((cast(*void)(*instance.isDataOwnedByResourceManager)) - cast(*void)(*instance)) == 20, "ma_resource_manager_data_buffer_node.isDataOwnedByResourceManager has unexpected offset % instead of 20", ((cast(*void)(*instance.isDataOwnedByResourceManager)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_buffer_node.isDataOwnedByResourceManager)) == 4, "ma_resource_manager_data_buffer_node.isDataOwnedByResourceManager has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_buffer_node.isDataOwnedByResourceManager))); + assert(((cast(*void)(*instance.data)) - cast(*void)(*instance)) == 24, "ma_resource_manager_data_buffer_node.data has unexpected offset % instead of 24", ((cast(*void)(*instance.data)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_buffer_node.data)) == 64, "ma_resource_manager_data_buffer_node.data has unexpected size % instead of 64", size_of(type_of(ma_resource_manager_data_buffer_node.data))); + assert(((cast(*void)(*instance.pParent)) - cast(*void)(*instance)) == 88, "ma_resource_manager_data_buffer_node.pParent has unexpected offset % instead of 88", ((cast(*void)(*instance.pParent)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_buffer_node.pParent)) == 8, "ma_resource_manager_data_buffer_node.pParent has unexpected size % instead of 8", size_of(type_of(ma_resource_manager_data_buffer_node.pParent))); + assert(((cast(*void)(*instance.pChildLo)) - cast(*void)(*instance)) == 96, "ma_resource_manager_data_buffer_node.pChildLo has unexpected offset % instead of 96", ((cast(*void)(*instance.pChildLo)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_buffer_node.pChildLo)) == 8, "ma_resource_manager_data_buffer_node.pChildLo has unexpected size % instead of 8", size_of(type_of(ma_resource_manager_data_buffer_node.pChildLo))); + assert(((cast(*void)(*instance.pChildHi)) - cast(*void)(*instance)) == 104, "ma_resource_manager_data_buffer_node.pChildHi has unexpected offset % instead of 104", ((cast(*void)(*instance.pChildHi)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_buffer_node.pChildHi)) == 8, "ma_resource_manager_data_buffer_node.pChildHi has unexpected size % instead of 8", size_of(type_of(ma_resource_manager_data_buffer_node.pChildHi))); + assert(size_of(ma_resource_manager_data_buffer_node) == 112, "ma_resource_manager_data_buffer_node has size % instead of 112", size_of(ma_resource_manager_data_buffer_node)); + } + + { + instance: ma_resource_manager_data_buffer; + assert(((cast(*void)(*instance.ds)) - cast(*void)(*instance)) == 0, "ma_resource_manager_data_buffer.ds has unexpected offset % instead of 0", ((cast(*void)(*instance.ds)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_buffer.ds)) == 72, "ma_resource_manager_data_buffer.ds has unexpected size % instead of 72", size_of(type_of(ma_resource_manager_data_buffer.ds))); + assert(((cast(*void)(*instance.pResourceManager)) - cast(*void)(*instance)) == 72, "ma_resource_manager_data_buffer.pResourceManager has unexpected offset % instead of 72", ((cast(*void)(*instance.pResourceManager)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_buffer.pResourceManager)) == 8, "ma_resource_manager_data_buffer.pResourceManager has unexpected size % instead of 8", size_of(type_of(ma_resource_manager_data_buffer.pResourceManager))); + assert(((cast(*void)(*instance.pNode)) - cast(*void)(*instance)) == 80, "ma_resource_manager_data_buffer.pNode has unexpected offset % instead of 80", ((cast(*void)(*instance.pNode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_buffer.pNode)) == 8, "ma_resource_manager_data_buffer.pNode has unexpected size % instead of 8", size_of(type_of(ma_resource_manager_data_buffer.pNode))); + assert(((cast(*void)(*instance.flags)) - cast(*void)(*instance)) == 88, "ma_resource_manager_data_buffer.flags has unexpected offset % instead of 88", ((cast(*void)(*instance.flags)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_buffer.flags)) == 4, "ma_resource_manager_data_buffer.flags has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_buffer.flags))); + assert(((cast(*void)(*instance.executionCounter)) - cast(*void)(*instance)) == 92, "ma_resource_manager_data_buffer.executionCounter has unexpected offset % instead of 92", ((cast(*void)(*instance.executionCounter)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_buffer.executionCounter)) == 4, "ma_resource_manager_data_buffer.executionCounter has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_buffer.executionCounter))); + assert(((cast(*void)(*instance.executionPointer)) - cast(*void)(*instance)) == 96, "ma_resource_manager_data_buffer.executionPointer has unexpected offset % instead of 96", ((cast(*void)(*instance.executionPointer)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_buffer.executionPointer)) == 4, "ma_resource_manager_data_buffer.executionPointer has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_buffer.executionPointer))); + assert(((cast(*void)(*instance.seekTargetInPCMFrames)) - cast(*void)(*instance)) == 104, "ma_resource_manager_data_buffer.seekTargetInPCMFrames has unexpected offset % instead of 104", ((cast(*void)(*instance.seekTargetInPCMFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_buffer.seekTargetInPCMFrames)) == 8, "ma_resource_manager_data_buffer.seekTargetInPCMFrames has unexpected size % instead of 8", size_of(type_of(ma_resource_manager_data_buffer.seekTargetInPCMFrames))); + assert(((cast(*void)(*instance.seekToCursorOnNextRead)) - cast(*void)(*instance)) == 112, "ma_resource_manager_data_buffer.seekToCursorOnNextRead has unexpected offset % instead of 112", ((cast(*void)(*instance.seekToCursorOnNextRead)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_buffer.seekToCursorOnNextRead)) == 4, "ma_resource_manager_data_buffer.seekToCursorOnNextRead has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_buffer.seekToCursorOnNextRead))); + assert(((cast(*void)(*instance.result)) - cast(*void)(*instance)) == 116, "ma_resource_manager_data_buffer.result has unexpected offset % instead of 116", ((cast(*void)(*instance.result)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_buffer.result)) == 4, "ma_resource_manager_data_buffer.result has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_buffer.result))); + assert(((cast(*void)(*instance.isLooping)) - cast(*void)(*instance)) == 120, "ma_resource_manager_data_buffer.isLooping has unexpected offset % instead of 120", ((cast(*void)(*instance.isLooping)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_buffer.isLooping)) == 4, "ma_resource_manager_data_buffer.isLooping has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_buffer.isLooping))); + assert(((cast(*void)(*instance.isConnectorInitialized)) - cast(*void)(*instance)) == 124, "ma_resource_manager_data_buffer.isConnectorInitialized has unexpected offset % instead of 124", ((cast(*void)(*instance.isConnectorInitialized)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_buffer.isConnectorInitialized)) == 4, "ma_resource_manager_data_buffer.isConnectorInitialized has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_buffer.isConnectorInitialized))); + assert(((cast(*void)(*instance.connector)) - cast(*void)(*instance)) == 128, "ma_resource_manager_data_buffer.connector has unexpected offset % instead of 128", ((cast(*void)(*instance.connector)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_buffer.connector)) == 552, "ma_resource_manager_data_buffer.connector has unexpected size % instead of 552", size_of(type_of(ma_resource_manager_data_buffer.connector))); + assert(size_of(ma_resource_manager_data_buffer) == 680, "ma_resource_manager_data_buffer has size % instead of 680", size_of(ma_resource_manager_data_buffer)); + } + + { + instance: ma_resource_manager_data_stream; + assert(((cast(*void)(*instance.ds)) - cast(*void)(*instance)) == 0, "ma_resource_manager_data_stream.ds has unexpected offset % instead of 0", ((cast(*void)(*instance.ds)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_stream.ds)) == 72, "ma_resource_manager_data_stream.ds has unexpected size % instead of 72", size_of(type_of(ma_resource_manager_data_stream.ds))); + assert(((cast(*void)(*instance.pResourceManager)) - cast(*void)(*instance)) == 72, "ma_resource_manager_data_stream.pResourceManager has unexpected offset % instead of 72", ((cast(*void)(*instance.pResourceManager)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_stream.pResourceManager)) == 8, "ma_resource_manager_data_stream.pResourceManager has unexpected size % instead of 8", size_of(type_of(ma_resource_manager_data_stream.pResourceManager))); + assert(((cast(*void)(*instance.flags)) - cast(*void)(*instance)) == 80, "ma_resource_manager_data_stream.flags has unexpected offset % instead of 80", ((cast(*void)(*instance.flags)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_stream.flags)) == 4, "ma_resource_manager_data_stream.flags has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_stream.flags))); + assert(((cast(*void)(*instance.decoder)) - cast(*void)(*instance)) == 88, "ma_resource_manager_data_stream.decoder has unexpected offset % instead of 88", ((cast(*void)(*instance.decoder)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_stream.decoder)) == 552, "ma_resource_manager_data_stream.decoder has unexpected size % instead of 552", size_of(type_of(ma_resource_manager_data_stream.decoder))); + assert(((cast(*void)(*instance.isDecoderInitialized)) - cast(*void)(*instance)) == 640, "ma_resource_manager_data_stream.isDecoderInitialized has unexpected offset % instead of 640", ((cast(*void)(*instance.isDecoderInitialized)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_stream.isDecoderInitialized)) == 4, "ma_resource_manager_data_stream.isDecoderInitialized has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_stream.isDecoderInitialized))); + assert(((cast(*void)(*instance.totalLengthInPCMFrames)) - cast(*void)(*instance)) == 648, "ma_resource_manager_data_stream.totalLengthInPCMFrames has unexpected offset % instead of 648", ((cast(*void)(*instance.totalLengthInPCMFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_stream.totalLengthInPCMFrames)) == 8, "ma_resource_manager_data_stream.totalLengthInPCMFrames has unexpected size % instead of 8", size_of(type_of(ma_resource_manager_data_stream.totalLengthInPCMFrames))); + assert(((cast(*void)(*instance.relativeCursor)) - cast(*void)(*instance)) == 656, "ma_resource_manager_data_stream.relativeCursor has unexpected offset % instead of 656", ((cast(*void)(*instance.relativeCursor)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_stream.relativeCursor)) == 4, "ma_resource_manager_data_stream.relativeCursor has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_stream.relativeCursor))); + assert(((cast(*void)(*instance.absoluteCursor)) - cast(*void)(*instance)) == 664, "ma_resource_manager_data_stream.absoluteCursor has unexpected offset % instead of 664", ((cast(*void)(*instance.absoluteCursor)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_stream.absoluteCursor)) == 8, "ma_resource_manager_data_stream.absoluteCursor has unexpected size % instead of 8", size_of(type_of(ma_resource_manager_data_stream.absoluteCursor))); + assert(((cast(*void)(*instance.currentPageIndex)) - cast(*void)(*instance)) == 672, "ma_resource_manager_data_stream.currentPageIndex has unexpected offset % instead of 672", ((cast(*void)(*instance.currentPageIndex)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_stream.currentPageIndex)) == 4, "ma_resource_manager_data_stream.currentPageIndex has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_stream.currentPageIndex))); + assert(((cast(*void)(*instance.executionCounter)) - cast(*void)(*instance)) == 676, "ma_resource_manager_data_stream.executionCounter has unexpected offset % instead of 676", ((cast(*void)(*instance.executionCounter)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_stream.executionCounter)) == 4, "ma_resource_manager_data_stream.executionCounter has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_stream.executionCounter))); + assert(((cast(*void)(*instance.executionPointer)) - cast(*void)(*instance)) == 680, "ma_resource_manager_data_stream.executionPointer has unexpected offset % instead of 680", ((cast(*void)(*instance.executionPointer)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_stream.executionPointer)) == 4, "ma_resource_manager_data_stream.executionPointer has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_stream.executionPointer))); + assert(((cast(*void)(*instance.isLooping)) - cast(*void)(*instance)) == 684, "ma_resource_manager_data_stream.isLooping has unexpected offset % instead of 684", ((cast(*void)(*instance.isLooping)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_stream.isLooping)) == 4, "ma_resource_manager_data_stream.isLooping has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_stream.isLooping))); + assert(((cast(*void)(*instance.pPageData)) - cast(*void)(*instance)) == 688, "ma_resource_manager_data_stream.pPageData has unexpected offset % instead of 688", ((cast(*void)(*instance.pPageData)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_stream.pPageData)) == 8, "ma_resource_manager_data_stream.pPageData has unexpected size % instead of 8", size_of(type_of(ma_resource_manager_data_stream.pPageData))); + assert(((cast(*void)(*instance.pageFrameCount)) - cast(*void)(*instance)) == 696, "ma_resource_manager_data_stream.pageFrameCount has unexpected offset % instead of 696", ((cast(*void)(*instance.pageFrameCount)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_stream.pageFrameCount)) == 8, "ma_resource_manager_data_stream.pageFrameCount has unexpected size % instead of 8", size_of(type_of(ma_resource_manager_data_stream.pageFrameCount))); + assert(((cast(*void)(*instance.result)) - cast(*void)(*instance)) == 704, "ma_resource_manager_data_stream.result has unexpected offset % instead of 704", ((cast(*void)(*instance.result)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_stream.result)) == 4, "ma_resource_manager_data_stream.result has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_stream.result))); + assert(((cast(*void)(*instance.isDecoderAtEnd)) - cast(*void)(*instance)) == 708, "ma_resource_manager_data_stream.isDecoderAtEnd has unexpected offset % instead of 708", ((cast(*void)(*instance.isDecoderAtEnd)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_stream.isDecoderAtEnd)) == 4, "ma_resource_manager_data_stream.isDecoderAtEnd has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_stream.isDecoderAtEnd))); + assert(((cast(*void)(*instance.isPageValid)) - cast(*void)(*instance)) == 712, "ma_resource_manager_data_stream.isPageValid has unexpected offset % instead of 712", ((cast(*void)(*instance.isPageValid)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_stream.isPageValid)) == 8, "ma_resource_manager_data_stream.isPageValid has unexpected size % instead of 8", size_of(type_of(ma_resource_manager_data_stream.isPageValid))); + assert(((cast(*void)(*instance.seekCounter)) - cast(*void)(*instance)) == 720, "ma_resource_manager_data_stream.seekCounter has unexpected offset % instead of 720", ((cast(*void)(*instance.seekCounter)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_stream.seekCounter)) == 4, "ma_resource_manager_data_stream.seekCounter has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_stream.seekCounter))); + assert(size_of(ma_resource_manager_data_stream) == 728, "ma_resource_manager_data_stream has size % instead of 728", size_of(ma_resource_manager_data_stream)); + } + + { + instance: ma_resource_manager_data_source; + assert(((cast(*void)(*instance.backend)) - cast(*void)(*instance)) == 0, "ma_resource_manager_data_source.backend has unexpected offset % instead of 0", ((cast(*void)(*instance.backend)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_source.backend)) == 728, "ma_resource_manager_data_source.backend has unexpected size % instead of 728", size_of(type_of(ma_resource_manager_data_source.backend))); + assert(((cast(*void)(*instance.flags)) - cast(*void)(*instance)) == 728, "ma_resource_manager_data_source.flags has unexpected offset % instead of 728", ((cast(*void)(*instance.flags)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_source.flags)) == 4, "ma_resource_manager_data_source.flags has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_source.flags))); + assert(((cast(*void)(*instance.executionCounter)) - cast(*void)(*instance)) == 732, "ma_resource_manager_data_source.executionCounter has unexpected offset % instead of 732", ((cast(*void)(*instance.executionCounter)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_source.executionCounter)) == 4, "ma_resource_manager_data_source.executionCounter has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_source.executionCounter))); + assert(((cast(*void)(*instance.executionPointer)) - cast(*void)(*instance)) == 736, "ma_resource_manager_data_source.executionPointer has unexpected offset % instead of 736", ((cast(*void)(*instance.executionPointer)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_data_source.executionPointer)) == 4, "ma_resource_manager_data_source.executionPointer has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_data_source.executionPointer))); + assert(size_of(ma_resource_manager_data_source) == 744, "ma_resource_manager_data_source has size % instead of 744", size_of(ma_resource_manager_data_source)); + } + + { + instance: ma_resource_manager_config; + assert(((cast(*void)(*instance.allocationCallbacks)) - cast(*void)(*instance)) == 0, "ma_resource_manager_config.allocationCallbacks has unexpected offset % instead of 0", ((cast(*void)(*instance.allocationCallbacks)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_config.allocationCallbacks)) == 32, "ma_resource_manager_config.allocationCallbacks has unexpected size % instead of 32", size_of(type_of(ma_resource_manager_config.allocationCallbacks))); + assert(((cast(*void)(*instance.pLog)) - cast(*void)(*instance)) == 32, "ma_resource_manager_config.pLog has unexpected offset % instead of 32", ((cast(*void)(*instance.pLog)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_config.pLog)) == 8, "ma_resource_manager_config.pLog has unexpected size % instead of 8", size_of(type_of(ma_resource_manager_config.pLog))); + assert(((cast(*void)(*instance.decodedFormat)) - cast(*void)(*instance)) == 40, "ma_resource_manager_config.decodedFormat has unexpected offset % instead of 40", ((cast(*void)(*instance.decodedFormat)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_config.decodedFormat)) == 4, "ma_resource_manager_config.decodedFormat has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_config.decodedFormat))); + assert(((cast(*void)(*instance.decodedChannels)) - cast(*void)(*instance)) == 44, "ma_resource_manager_config.decodedChannels has unexpected offset % instead of 44", ((cast(*void)(*instance.decodedChannels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_config.decodedChannels)) == 4, "ma_resource_manager_config.decodedChannels has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_config.decodedChannels))); + assert(((cast(*void)(*instance.decodedSampleRate)) - cast(*void)(*instance)) == 48, "ma_resource_manager_config.decodedSampleRate has unexpected offset % instead of 48", ((cast(*void)(*instance.decodedSampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_config.decodedSampleRate)) == 4, "ma_resource_manager_config.decodedSampleRate has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_config.decodedSampleRate))); + assert(((cast(*void)(*instance.jobThreadCount)) - cast(*void)(*instance)) == 52, "ma_resource_manager_config.jobThreadCount has unexpected offset % instead of 52", ((cast(*void)(*instance.jobThreadCount)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_config.jobThreadCount)) == 4, "ma_resource_manager_config.jobThreadCount has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_config.jobThreadCount))); + assert(((cast(*void)(*instance.jobThreadStackSize)) - cast(*void)(*instance)) == 56, "ma_resource_manager_config.jobThreadStackSize has unexpected offset % instead of 56", ((cast(*void)(*instance.jobThreadStackSize)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_config.jobThreadStackSize)) == 8, "ma_resource_manager_config.jobThreadStackSize has unexpected size % instead of 8", size_of(type_of(ma_resource_manager_config.jobThreadStackSize))); + assert(((cast(*void)(*instance.jobQueueCapacity)) - cast(*void)(*instance)) == 64, "ma_resource_manager_config.jobQueueCapacity has unexpected offset % instead of 64", ((cast(*void)(*instance.jobQueueCapacity)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_config.jobQueueCapacity)) == 4, "ma_resource_manager_config.jobQueueCapacity has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_config.jobQueueCapacity))); + assert(((cast(*void)(*instance.flags)) - cast(*void)(*instance)) == 68, "ma_resource_manager_config.flags has unexpected offset % instead of 68", ((cast(*void)(*instance.flags)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_config.flags)) == 4, "ma_resource_manager_config.flags has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_config.flags))); + assert(((cast(*void)(*instance.pVFS)) - cast(*void)(*instance)) == 72, "ma_resource_manager_config.pVFS has unexpected offset % instead of 72", ((cast(*void)(*instance.pVFS)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_config.pVFS)) == 8, "ma_resource_manager_config.pVFS has unexpected size % instead of 8", size_of(type_of(ma_resource_manager_config.pVFS))); + assert(((cast(*void)(*instance.ppCustomDecodingBackendVTables)) - cast(*void)(*instance)) == 80, "ma_resource_manager_config.ppCustomDecodingBackendVTables has unexpected offset % instead of 80", ((cast(*void)(*instance.ppCustomDecodingBackendVTables)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_config.ppCustomDecodingBackendVTables)) == 8, "ma_resource_manager_config.ppCustomDecodingBackendVTables has unexpected size % instead of 8", size_of(type_of(ma_resource_manager_config.ppCustomDecodingBackendVTables))); + assert(((cast(*void)(*instance.customDecodingBackendCount)) - cast(*void)(*instance)) == 88, "ma_resource_manager_config.customDecodingBackendCount has unexpected offset % instead of 88", ((cast(*void)(*instance.customDecodingBackendCount)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_config.customDecodingBackendCount)) == 4, "ma_resource_manager_config.customDecodingBackendCount has unexpected size % instead of 4", size_of(type_of(ma_resource_manager_config.customDecodingBackendCount))); + assert(((cast(*void)(*instance.pCustomDecodingBackendUserData)) - cast(*void)(*instance)) == 96, "ma_resource_manager_config.pCustomDecodingBackendUserData has unexpected offset % instead of 96", ((cast(*void)(*instance.pCustomDecodingBackendUserData)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager_config.pCustomDecodingBackendUserData)) == 8, "ma_resource_manager_config.pCustomDecodingBackendUserData has unexpected size % instead of 8", size_of(type_of(ma_resource_manager_config.pCustomDecodingBackendUserData))); + assert(size_of(ma_resource_manager_config) == 104, "ma_resource_manager_config has size % instead of 104", size_of(ma_resource_manager_config)); + } + + { + instance: ma_resource_manager; + assert(((cast(*void)(*instance.config)) - cast(*void)(*instance)) == 0, "ma_resource_manager.config has unexpected offset % instead of 0", ((cast(*void)(*instance.config)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager.config)) == 104, "ma_resource_manager.config has unexpected size % instead of 104", size_of(type_of(ma_resource_manager.config))); + assert(((cast(*void)(*instance.pRootDataBufferNode)) - cast(*void)(*instance)) == 104, "ma_resource_manager.pRootDataBufferNode has unexpected offset % instead of 104", ((cast(*void)(*instance.pRootDataBufferNode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager.pRootDataBufferNode)) == 8, "ma_resource_manager.pRootDataBufferNode has unexpected size % instead of 8", size_of(type_of(ma_resource_manager.pRootDataBufferNode))); + assert(((cast(*void)(*instance.dataBufferBSTLock)) - cast(*void)(*instance)) == 112, "ma_resource_manager.dataBufferBSTLock has unexpected offset % instead of 112", ((cast(*void)(*instance.dataBufferBSTLock)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager.dataBufferBSTLock)) == 8, "ma_resource_manager.dataBufferBSTLock has unexpected size % instead of 8", size_of(type_of(ma_resource_manager.dataBufferBSTLock))); + assert(((cast(*void)(*instance.jobThreads)) - cast(*void)(*instance)) == 120, "ma_resource_manager.jobThreads has unexpected offset % instead of 120", ((cast(*void)(*instance.jobThreads)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager.jobThreads)) == 512, "ma_resource_manager.jobThreads has unexpected size % instead of 512", size_of(type_of(ma_resource_manager.jobThreads))); + assert(((cast(*void)(*instance.jobQueue)) - cast(*void)(*instance)) == 632, "ma_resource_manager.jobQueue has unexpected offset % instead of 632", ((cast(*void)(*instance.jobQueue)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager.jobQueue)) == 104, "ma_resource_manager.jobQueue has unexpected size % instead of 104", size_of(type_of(ma_resource_manager.jobQueue))); + assert(((cast(*void)(*instance.defaultVFS)) - cast(*void)(*instance)) == 736, "ma_resource_manager.defaultVFS has unexpected offset % instead of 736", ((cast(*void)(*instance.defaultVFS)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager.defaultVFS)) == 96, "ma_resource_manager.defaultVFS has unexpected size % instead of 96", size_of(type_of(ma_resource_manager.defaultVFS))); + assert(((cast(*void)(*instance.log)) - cast(*void)(*instance)) == 832, "ma_resource_manager.log has unexpected offset % instead of 832", ((cast(*void)(*instance.log)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_resource_manager.log)) == 112, "ma_resource_manager.log has unexpected size % instead of 112", size_of(type_of(ma_resource_manager.log))); + assert(size_of(ma_resource_manager) == 944, "ma_resource_manager has size % instead of 944", size_of(ma_resource_manager)); + } + + { + instance: ma_node_vtable; + assert(((cast(*void)(*instance.onProcess)) - cast(*void)(*instance)) == 0, "ma_node_vtable.onProcess has unexpected offset % instead of 0", ((cast(*void)(*instance.onProcess)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_vtable.onProcess)) == 8, "ma_node_vtable.onProcess has unexpected size % instead of 8", size_of(type_of(ma_node_vtable.onProcess))); + assert(((cast(*void)(*instance.onGetRequiredInputFrameCount)) - cast(*void)(*instance)) == 8, "ma_node_vtable.onGetRequiredInputFrameCount has unexpected offset % instead of 8", ((cast(*void)(*instance.onGetRequiredInputFrameCount)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_vtable.onGetRequiredInputFrameCount)) == 8, "ma_node_vtable.onGetRequiredInputFrameCount has unexpected size % instead of 8", size_of(type_of(ma_node_vtable.onGetRequiredInputFrameCount))); + assert(((cast(*void)(*instance.inputBusCount)) - cast(*void)(*instance)) == 16, "ma_node_vtable.inputBusCount has unexpected offset % instead of 16", ((cast(*void)(*instance.inputBusCount)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_vtable.inputBusCount)) == 1, "ma_node_vtable.inputBusCount has unexpected size % instead of 1", size_of(type_of(ma_node_vtable.inputBusCount))); + assert(((cast(*void)(*instance.outputBusCount)) - cast(*void)(*instance)) == 17, "ma_node_vtable.outputBusCount has unexpected offset % instead of 17", ((cast(*void)(*instance.outputBusCount)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_vtable.outputBusCount)) == 1, "ma_node_vtable.outputBusCount has unexpected size % instead of 1", size_of(type_of(ma_node_vtable.outputBusCount))); + assert(((cast(*void)(*instance.flags)) - cast(*void)(*instance)) == 20, "ma_node_vtable.flags has unexpected offset % instead of 20", ((cast(*void)(*instance.flags)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_vtable.flags)) == 4, "ma_node_vtable.flags has unexpected size % instead of 4", size_of(type_of(ma_node_vtable.flags))); + assert(size_of(ma_node_vtable) == 24, "ma_node_vtable has size % instead of 24", size_of(ma_node_vtable)); + } + + { + instance: ma_node_config; + assert(((cast(*void)(*instance.vtable)) - cast(*void)(*instance)) == 0, "ma_node_config.vtable has unexpected offset % instead of 0", ((cast(*void)(*instance.vtable)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_config.vtable)) == 8, "ma_node_config.vtable has unexpected size % instead of 8", size_of(type_of(ma_node_config.vtable))); + assert(((cast(*void)(*instance.initialState)) - cast(*void)(*instance)) == 8, "ma_node_config.initialState has unexpected offset % instead of 8", ((cast(*void)(*instance.initialState)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_config.initialState)) == 4, "ma_node_config.initialState has unexpected size % instead of 4", size_of(type_of(ma_node_config.initialState))); + assert(((cast(*void)(*instance.inputBusCount)) - cast(*void)(*instance)) == 12, "ma_node_config.inputBusCount has unexpected offset % instead of 12", ((cast(*void)(*instance.inputBusCount)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_config.inputBusCount)) == 4, "ma_node_config.inputBusCount has unexpected size % instead of 4", size_of(type_of(ma_node_config.inputBusCount))); + assert(((cast(*void)(*instance.outputBusCount)) - cast(*void)(*instance)) == 16, "ma_node_config.outputBusCount has unexpected offset % instead of 16", ((cast(*void)(*instance.outputBusCount)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_config.outputBusCount)) == 4, "ma_node_config.outputBusCount has unexpected size % instead of 4", size_of(type_of(ma_node_config.outputBusCount))); + assert(((cast(*void)(*instance.pInputChannels)) - cast(*void)(*instance)) == 24, "ma_node_config.pInputChannels has unexpected offset % instead of 24", ((cast(*void)(*instance.pInputChannels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_config.pInputChannels)) == 8, "ma_node_config.pInputChannels has unexpected size % instead of 8", size_of(type_of(ma_node_config.pInputChannels))); + assert(((cast(*void)(*instance.pOutputChannels)) - cast(*void)(*instance)) == 32, "ma_node_config.pOutputChannels has unexpected offset % instead of 32", ((cast(*void)(*instance.pOutputChannels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_config.pOutputChannels)) == 8, "ma_node_config.pOutputChannels has unexpected size % instead of 8", size_of(type_of(ma_node_config.pOutputChannels))); + assert(size_of(ma_node_config) == 40, "ma_node_config has size % instead of 40", size_of(ma_node_config)); + } + + { + instance: ma_node_output_bus; + assert(((cast(*void)(*instance.pNode)) - cast(*void)(*instance)) == 0, "ma_node_output_bus.pNode has unexpected offset % instead of 0", ((cast(*void)(*instance.pNode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_output_bus.pNode)) == 8, "ma_node_output_bus.pNode has unexpected size % instead of 8", size_of(type_of(ma_node_output_bus.pNode))); + assert(((cast(*void)(*instance.outputBusIndex)) - cast(*void)(*instance)) == 8, "ma_node_output_bus.outputBusIndex has unexpected offset % instead of 8", ((cast(*void)(*instance.outputBusIndex)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_output_bus.outputBusIndex)) == 1, "ma_node_output_bus.outputBusIndex has unexpected size % instead of 1", size_of(type_of(ma_node_output_bus.outputBusIndex))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 9, "ma_node_output_bus.channels has unexpected offset % instead of 9", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_output_bus.channels)) == 1, "ma_node_output_bus.channels has unexpected size % instead of 1", size_of(type_of(ma_node_output_bus.channels))); + assert(((cast(*void)(*instance.inputNodeInputBusIndex)) - cast(*void)(*instance)) == 10, "ma_node_output_bus.inputNodeInputBusIndex has unexpected offset % instead of 10", ((cast(*void)(*instance.inputNodeInputBusIndex)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_output_bus.inputNodeInputBusIndex)) == 1, "ma_node_output_bus.inputNodeInputBusIndex has unexpected size % instead of 1", size_of(type_of(ma_node_output_bus.inputNodeInputBusIndex))); + assert(((cast(*void)(*instance.flags)) - cast(*void)(*instance)) == 12, "ma_node_output_bus.flags has unexpected offset % instead of 12", ((cast(*void)(*instance.flags)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_output_bus.flags)) == 4, "ma_node_output_bus.flags has unexpected size % instead of 4", size_of(type_of(ma_node_output_bus.flags))); + assert(((cast(*void)(*instance.refCount)) - cast(*void)(*instance)) == 16, "ma_node_output_bus.refCount has unexpected offset % instead of 16", ((cast(*void)(*instance.refCount)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_output_bus.refCount)) == 4, "ma_node_output_bus.refCount has unexpected size % instead of 4", size_of(type_of(ma_node_output_bus.refCount))); + assert(((cast(*void)(*instance.isAttached)) - cast(*void)(*instance)) == 20, "ma_node_output_bus.isAttached has unexpected offset % instead of 20", ((cast(*void)(*instance.isAttached)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_output_bus.isAttached)) == 4, "ma_node_output_bus.isAttached has unexpected size % instead of 4", size_of(type_of(ma_node_output_bus.isAttached))); + assert(((cast(*void)(*instance.lock)) - cast(*void)(*instance)) == 24, "ma_node_output_bus.lock has unexpected offset % instead of 24", ((cast(*void)(*instance.lock)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_output_bus.lock)) == 4, "ma_node_output_bus.lock has unexpected size % instead of 4", size_of(type_of(ma_node_output_bus.lock))); + assert(((cast(*void)(*instance.volume)) - cast(*void)(*instance)) == 28, "ma_node_output_bus.volume has unexpected offset % instead of 28", ((cast(*void)(*instance.volume)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_output_bus.volume)) == 4, "ma_node_output_bus.volume has unexpected size % instead of 4", size_of(type_of(ma_node_output_bus.volume))); + assert(((cast(*void)(*instance.pNext)) - cast(*void)(*instance)) == 32, "ma_node_output_bus.pNext has unexpected offset % instead of 32", ((cast(*void)(*instance.pNext)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_output_bus.pNext)) == 8, "ma_node_output_bus.pNext has unexpected size % instead of 8", size_of(type_of(ma_node_output_bus.pNext))); + assert(((cast(*void)(*instance.pPrev)) - cast(*void)(*instance)) == 40, "ma_node_output_bus.pPrev has unexpected offset % instead of 40", ((cast(*void)(*instance.pPrev)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_output_bus.pPrev)) == 8, "ma_node_output_bus.pPrev has unexpected size % instead of 8", size_of(type_of(ma_node_output_bus.pPrev))); + assert(((cast(*void)(*instance.pInputNode)) - cast(*void)(*instance)) == 48, "ma_node_output_bus.pInputNode has unexpected offset % instead of 48", ((cast(*void)(*instance.pInputNode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_output_bus.pInputNode)) == 8, "ma_node_output_bus.pInputNode has unexpected size % instead of 8", size_of(type_of(ma_node_output_bus.pInputNode))); + assert(size_of(ma_node_output_bus) == 56, "ma_node_output_bus has size % instead of 56", size_of(ma_node_output_bus)); + } + + { + instance: ma_node_input_bus; + assert(((cast(*void)(*instance.head)) - cast(*void)(*instance)) == 0, "ma_node_input_bus.head has unexpected offset % instead of 0", ((cast(*void)(*instance.head)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_input_bus.head)) == 56, "ma_node_input_bus.head has unexpected size % instead of 56", size_of(type_of(ma_node_input_bus.head))); + assert(((cast(*void)(*instance.nextCounter)) - cast(*void)(*instance)) == 56, "ma_node_input_bus.nextCounter has unexpected offset % instead of 56", ((cast(*void)(*instance.nextCounter)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_input_bus.nextCounter)) == 4, "ma_node_input_bus.nextCounter has unexpected size % instead of 4", size_of(type_of(ma_node_input_bus.nextCounter))); + assert(((cast(*void)(*instance.lock)) - cast(*void)(*instance)) == 60, "ma_node_input_bus.lock has unexpected offset % instead of 60", ((cast(*void)(*instance.lock)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_input_bus.lock)) == 4, "ma_node_input_bus.lock has unexpected size % instead of 4", size_of(type_of(ma_node_input_bus.lock))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 64, "ma_node_input_bus.channels has unexpected offset % instead of 64", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_input_bus.channels)) == 1, "ma_node_input_bus.channels has unexpected size % instead of 1", size_of(type_of(ma_node_input_bus.channels))); + assert(size_of(ma_node_input_bus) == 72, "ma_node_input_bus has size % instead of 72", size_of(ma_node_input_bus)); + } + + { + instance: ma_node_base; + assert(((cast(*void)(*instance.pNodeGraph)) - cast(*void)(*instance)) == 0, "ma_node_base.pNodeGraph has unexpected offset % instead of 0", ((cast(*void)(*instance.pNodeGraph)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_base.pNodeGraph)) == 8, "ma_node_base.pNodeGraph has unexpected size % instead of 8", size_of(type_of(ma_node_base.pNodeGraph))); + assert(((cast(*void)(*instance.vtable)) - cast(*void)(*instance)) == 8, "ma_node_base.vtable has unexpected offset % instead of 8", ((cast(*void)(*instance.vtable)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_base.vtable)) == 8, "ma_node_base.vtable has unexpected size % instead of 8", size_of(type_of(ma_node_base.vtable))); + assert(((cast(*void)(*instance.pCachedData)) - cast(*void)(*instance)) == 16, "ma_node_base.pCachedData has unexpected offset % instead of 16", ((cast(*void)(*instance.pCachedData)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_base.pCachedData)) == 8, "ma_node_base.pCachedData has unexpected size % instead of 8", size_of(type_of(ma_node_base.pCachedData))); + assert(((cast(*void)(*instance.cachedDataCapInFramesPerBus)) - cast(*void)(*instance)) == 24, "ma_node_base.cachedDataCapInFramesPerBus has unexpected offset % instead of 24", ((cast(*void)(*instance.cachedDataCapInFramesPerBus)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_base.cachedDataCapInFramesPerBus)) == 2, "ma_node_base.cachedDataCapInFramesPerBus has unexpected size % instead of 2", size_of(type_of(ma_node_base.cachedDataCapInFramesPerBus))); + assert(((cast(*void)(*instance.cachedFrameCountOut)) - cast(*void)(*instance)) == 26, "ma_node_base.cachedFrameCountOut has unexpected offset % instead of 26", ((cast(*void)(*instance.cachedFrameCountOut)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_base.cachedFrameCountOut)) == 2, "ma_node_base.cachedFrameCountOut has unexpected size % instead of 2", size_of(type_of(ma_node_base.cachedFrameCountOut))); + assert(((cast(*void)(*instance.cachedFrameCountIn)) - cast(*void)(*instance)) == 28, "ma_node_base.cachedFrameCountIn has unexpected offset % instead of 28", ((cast(*void)(*instance.cachedFrameCountIn)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_base.cachedFrameCountIn)) == 2, "ma_node_base.cachedFrameCountIn has unexpected size % instead of 2", size_of(type_of(ma_node_base.cachedFrameCountIn))); + assert(((cast(*void)(*instance.consumedFrameCountIn)) - cast(*void)(*instance)) == 30, "ma_node_base.consumedFrameCountIn has unexpected offset % instead of 30", ((cast(*void)(*instance.consumedFrameCountIn)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_base.consumedFrameCountIn)) == 2, "ma_node_base.consumedFrameCountIn has unexpected size % instead of 2", size_of(type_of(ma_node_base.consumedFrameCountIn))); + assert(((cast(*void)(*instance.state)) - cast(*void)(*instance)) == 32, "ma_node_base.state has unexpected offset % instead of 32", ((cast(*void)(*instance.state)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_base.state)) == 4, "ma_node_base.state has unexpected size % instead of 4", size_of(type_of(ma_node_base.state))); + assert(((cast(*void)(*instance.stateTimes)) - cast(*void)(*instance)) == 40, "ma_node_base.stateTimes has unexpected offset % instead of 40", ((cast(*void)(*instance.stateTimes)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_base.stateTimes)) == 16, "ma_node_base.stateTimes has unexpected size % instead of 16", size_of(type_of(ma_node_base.stateTimes))); + assert(((cast(*void)(*instance.localTime)) - cast(*void)(*instance)) == 56, "ma_node_base.localTime has unexpected offset % instead of 56", ((cast(*void)(*instance.localTime)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_base.localTime)) == 8, "ma_node_base.localTime has unexpected size % instead of 8", size_of(type_of(ma_node_base.localTime))); + assert(((cast(*void)(*instance.inputBusCount)) - cast(*void)(*instance)) == 64, "ma_node_base.inputBusCount has unexpected offset % instead of 64", ((cast(*void)(*instance.inputBusCount)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_base.inputBusCount)) == 4, "ma_node_base.inputBusCount has unexpected size % instead of 4", size_of(type_of(ma_node_base.inputBusCount))); + assert(((cast(*void)(*instance.outputBusCount)) - cast(*void)(*instance)) == 68, "ma_node_base.outputBusCount has unexpected offset % instead of 68", ((cast(*void)(*instance.outputBusCount)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_base.outputBusCount)) == 4, "ma_node_base.outputBusCount has unexpected size % instead of 4", size_of(type_of(ma_node_base.outputBusCount))); + assert(((cast(*void)(*instance.pInputBuses)) - cast(*void)(*instance)) == 72, "ma_node_base.pInputBuses has unexpected offset % instead of 72", ((cast(*void)(*instance.pInputBuses)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_base.pInputBuses)) == 8, "ma_node_base.pInputBuses has unexpected size % instead of 8", size_of(type_of(ma_node_base.pInputBuses))); + assert(((cast(*void)(*instance.pOutputBuses)) - cast(*void)(*instance)) == 80, "ma_node_base.pOutputBuses has unexpected offset % instead of 80", ((cast(*void)(*instance.pOutputBuses)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_base.pOutputBuses)) == 8, "ma_node_base.pOutputBuses has unexpected size % instead of 8", size_of(type_of(ma_node_base.pOutputBuses))); + assert(((cast(*void)(*instance._inputBuses)) - cast(*void)(*instance)) == 88, "ma_node_base._inputBuses has unexpected offset % instead of 88", ((cast(*void)(*instance._inputBuses)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_base._inputBuses)) == 144, "ma_node_base._inputBuses has unexpected size % instead of 144", size_of(type_of(ma_node_base._inputBuses))); + assert(((cast(*void)(*instance._outputBuses)) - cast(*void)(*instance)) == 232, "ma_node_base._outputBuses has unexpected offset % instead of 232", ((cast(*void)(*instance._outputBuses)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_base._outputBuses)) == 112, "ma_node_base._outputBuses has unexpected size % instead of 112", size_of(type_of(ma_node_base._outputBuses))); + assert(((cast(*void)(*instance._pHeap)) - cast(*void)(*instance)) == 344, "ma_node_base._pHeap has unexpected offset % instead of 344", ((cast(*void)(*instance._pHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_base._pHeap)) == 8, "ma_node_base._pHeap has unexpected size % instead of 8", size_of(type_of(ma_node_base._pHeap))); + assert(((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance)) == 352, "ma_node_base._ownsHeap has unexpected offset % instead of 352", ((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_base._ownsHeap)) == 4, "ma_node_base._ownsHeap has unexpected size % instead of 4", size_of(type_of(ma_node_base._ownsHeap))); + assert(size_of(ma_node_base) == 360, "ma_node_base has size % instead of 360", size_of(ma_node_base)); + } + + { + instance: ma_node_graph_config; + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 0, "ma_node_graph_config.channels has unexpected offset % instead of 0", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_graph_config.channels)) == 4, "ma_node_graph_config.channels has unexpected size % instead of 4", size_of(type_of(ma_node_graph_config.channels))); + assert(((cast(*void)(*instance.nodeCacheCapInFrames)) - cast(*void)(*instance)) == 4, "ma_node_graph_config.nodeCacheCapInFrames has unexpected offset % instead of 4", ((cast(*void)(*instance.nodeCacheCapInFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_graph_config.nodeCacheCapInFrames)) == 2, "ma_node_graph_config.nodeCacheCapInFrames has unexpected size % instead of 2", size_of(type_of(ma_node_graph_config.nodeCacheCapInFrames))); + assert(size_of(ma_node_graph_config) == 8, "ma_node_graph_config has size % instead of 8", size_of(ma_node_graph_config)); + } + + { + instance: ma_node_graph; + assert(((cast(*void)(*instance.base)) - cast(*void)(*instance)) == 0, "ma_node_graph.base has unexpected offset % instead of 0", ((cast(*void)(*instance.base)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_graph.base)) == 360, "ma_node_graph.base has unexpected size % instead of 360", size_of(type_of(ma_node_graph.base))); + assert(((cast(*void)(*instance.endpoint)) - cast(*void)(*instance)) == 360, "ma_node_graph.endpoint has unexpected offset % instead of 360", ((cast(*void)(*instance.endpoint)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_graph.endpoint)) == 360, "ma_node_graph.endpoint has unexpected size % instead of 360", size_of(type_of(ma_node_graph.endpoint))); + assert(((cast(*void)(*instance.nodeCacheCapInFrames)) - cast(*void)(*instance)) == 720, "ma_node_graph.nodeCacheCapInFrames has unexpected offset % instead of 720", ((cast(*void)(*instance.nodeCacheCapInFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_graph.nodeCacheCapInFrames)) == 2, "ma_node_graph.nodeCacheCapInFrames has unexpected size % instead of 2", size_of(type_of(ma_node_graph.nodeCacheCapInFrames))); + assert(((cast(*void)(*instance.isReading)) - cast(*void)(*instance)) == 724, "ma_node_graph.isReading has unexpected offset % instead of 724", ((cast(*void)(*instance.isReading)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_node_graph.isReading)) == 4, "ma_node_graph.isReading has unexpected size % instead of 4", size_of(type_of(ma_node_graph.isReading))); + assert(size_of(ma_node_graph) == 728, "ma_node_graph has size % instead of 728", size_of(ma_node_graph)); + } + + { + instance: ma_data_source_node_config; + assert(((cast(*void)(*instance.nodeConfig)) - cast(*void)(*instance)) == 0, "ma_data_source_node_config.nodeConfig has unexpected offset % instead of 0", ((cast(*void)(*instance.nodeConfig)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_source_node_config.nodeConfig)) == 40, "ma_data_source_node_config.nodeConfig has unexpected size % instead of 40", size_of(type_of(ma_data_source_node_config.nodeConfig))); + assert(((cast(*void)(*instance.pDataSource)) - cast(*void)(*instance)) == 40, "ma_data_source_node_config.pDataSource has unexpected offset % instead of 40", ((cast(*void)(*instance.pDataSource)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_source_node_config.pDataSource)) == 8, "ma_data_source_node_config.pDataSource has unexpected size % instead of 8", size_of(type_of(ma_data_source_node_config.pDataSource))); + assert(size_of(ma_data_source_node_config) == 48, "ma_data_source_node_config has size % instead of 48", size_of(ma_data_source_node_config)); + } + + { + instance: ma_data_source_node; + assert(((cast(*void)(*instance.base)) - cast(*void)(*instance)) == 0, "ma_data_source_node.base has unexpected offset % instead of 0", ((cast(*void)(*instance.base)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_source_node.base)) == 360, "ma_data_source_node.base has unexpected size % instead of 360", size_of(type_of(ma_data_source_node.base))); + assert(((cast(*void)(*instance.pDataSource)) - cast(*void)(*instance)) == 360, "ma_data_source_node.pDataSource has unexpected offset % instead of 360", ((cast(*void)(*instance.pDataSource)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_data_source_node.pDataSource)) == 8, "ma_data_source_node.pDataSource has unexpected size % instead of 8", size_of(type_of(ma_data_source_node.pDataSource))); + assert(size_of(ma_data_source_node) == 368, "ma_data_source_node has size % instead of 368", size_of(ma_data_source_node)); + } + + { + instance: ma_splitter_node_config; + assert(((cast(*void)(*instance.nodeConfig)) - cast(*void)(*instance)) == 0, "ma_splitter_node_config.nodeConfig has unexpected offset % instead of 0", ((cast(*void)(*instance.nodeConfig)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_splitter_node_config.nodeConfig)) == 40, "ma_splitter_node_config.nodeConfig has unexpected size % instead of 40", size_of(type_of(ma_splitter_node_config.nodeConfig))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 40, "ma_splitter_node_config.channels has unexpected offset % instead of 40", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_splitter_node_config.channels)) == 4, "ma_splitter_node_config.channels has unexpected size % instead of 4", size_of(type_of(ma_splitter_node_config.channels))); + assert(((cast(*void)(*instance.outputBusCount)) - cast(*void)(*instance)) == 44, "ma_splitter_node_config.outputBusCount has unexpected offset % instead of 44", ((cast(*void)(*instance.outputBusCount)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_splitter_node_config.outputBusCount)) == 4, "ma_splitter_node_config.outputBusCount has unexpected size % instead of 4", size_of(type_of(ma_splitter_node_config.outputBusCount))); + assert(size_of(ma_splitter_node_config) == 48, "ma_splitter_node_config has size % instead of 48", size_of(ma_splitter_node_config)); + } + + { + instance: ma_splitter_node; + assert(((cast(*void)(*instance.base)) - cast(*void)(*instance)) == 0, "ma_splitter_node.base has unexpected offset % instead of 0", ((cast(*void)(*instance.base)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_splitter_node.base)) == 360, "ma_splitter_node.base has unexpected size % instead of 360", size_of(type_of(ma_splitter_node.base))); + assert(size_of(ma_splitter_node) == 360, "ma_splitter_node has size % instead of 360", size_of(ma_splitter_node)); + } + + { + instance: ma_biquad_node_config; + assert(((cast(*void)(*instance.nodeConfig)) - cast(*void)(*instance)) == 0, "ma_biquad_node_config.nodeConfig has unexpected offset % instead of 0", ((cast(*void)(*instance.nodeConfig)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_biquad_node_config.nodeConfig)) == 40, "ma_biquad_node_config.nodeConfig has unexpected size % instead of 40", size_of(type_of(ma_biquad_node_config.nodeConfig))); + assert(((cast(*void)(*instance.biquad)) - cast(*void)(*instance)) == 40, "ma_biquad_node_config.biquad has unexpected offset % instead of 40", ((cast(*void)(*instance.biquad)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_biquad_node_config.biquad)) == 56, "ma_biquad_node_config.biquad has unexpected size % instead of 56", size_of(type_of(ma_biquad_node_config.biquad))); + assert(size_of(ma_biquad_node_config) == 96, "ma_biquad_node_config has size % instead of 96", size_of(ma_biquad_node_config)); + } + + { + instance: ma_biquad_node; + assert(((cast(*void)(*instance.baseNode)) - cast(*void)(*instance)) == 0, "ma_biquad_node.baseNode has unexpected offset % instead of 0", ((cast(*void)(*instance.baseNode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_biquad_node.baseNode)) == 360, "ma_biquad_node.baseNode has unexpected size % instead of 360", size_of(type_of(ma_biquad_node.baseNode))); + assert(((cast(*void)(*instance.biquad)) - cast(*void)(*instance)) == 360, "ma_biquad_node.biquad has unexpected offset % instead of 360", ((cast(*void)(*instance.biquad)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_biquad_node.biquad)) == 64, "ma_biquad_node.biquad has unexpected size % instead of 64", size_of(type_of(ma_biquad_node.biquad))); + assert(size_of(ma_biquad_node) == 424, "ma_biquad_node has size % instead of 424", size_of(ma_biquad_node)); + } + + { + instance: ma_lpf_node_config; + assert(((cast(*void)(*instance.nodeConfig)) - cast(*void)(*instance)) == 0, "ma_lpf_node_config.nodeConfig has unexpected offset % instead of 0", ((cast(*void)(*instance.nodeConfig)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf_node_config.nodeConfig)) == 40, "ma_lpf_node_config.nodeConfig has unexpected size % instead of 40", size_of(type_of(ma_lpf_node_config.nodeConfig))); + assert(((cast(*void)(*instance.lpf)) - cast(*void)(*instance)) == 40, "ma_lpf_node_config.lpf has unexpected offset % instead of 40", ((cast(*void)(*instance.lpf)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf_node_config.lpf)) == 32, "ma_lpf_node_config.lpf has unexpected size % instead of 32", size_of(type_of(ma_lpf_node_config.lpf))); + assert(size_of(ma_lpf_node_config) == 72, "ma_lpf_node_config has size % instead of 72", size_of(ma_lpf_node_config)); + } + + { + instance: ma_lpf_node; + assert(((cast(*void)(*instance.baseNode)) - cast(*void)(*instance)) == 0, "ma_lpf_node.baseNode has unexpected offset % instead of 0", ((cast(*void)(*instance.baseNode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf_node.baseNode)) == 360, "ma_lpf_node.baseNode has unexpected size % instead of 360", size_of(type_of(ma_lpf_node.baseNode))); + assert(((cast(*void)(*instance.lpf)) - cast(*void)(*instance)) == 360, "ma_lpf_node.lpf has unexpected offset % instead of 360", ((cast(*void)(*instance.lpf)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_lpf_node.lpf)) == 56, "ma_lpf_node.lpf has unexpected size % instead of 56", size_of(type_of(ma_lpf_node.lpf))); + assert(size_of(ma_lpf_node) == 416, "ma_lpf_node has size % instead of 416", size_of(ma_lpf_node)); + } + + { + instance: ma_hpf_node_config; + assert(((cast(*void)(*instance.nodeConfig)) - cast(*void)(*instance)) == 0, "ma_hpf_node_config.nodeConfig has unexpected offset % instead of 0", ((cast(*void)(*instance.nodeConfig)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf_node_config.nodeConfig)) == 40, "ma_hpf_node_config.nodeConfig has unexpected size % instead of 40", size_of(type_of(ma_hpf_node_config.nodeConfig))); + assert(((cast(*void)(*instance.hpf)) - cast(*void)(*instance)) == 40, "ma_hpf_node_config.hpf has unexpected offset % instead of 40", ((cast(*void)(*instance.hpf)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf_node_config.hpf)) == 32, "ma_hpf_node_config.hpf has unexpected size % instead of 32", size_of(type_of(ma_hpf_node_config.hpf))); + assert(size_of(ma_hpf_node_config) == 72, "ma_hpf_node_config has size % instead of 72", size_of(ma_hpf_node_config)); + } + + { + instance: ma_hpf_node; + assert(((cast(*void)(*instance.baseNode)) - cast(*void)(*instance)) == 0, "ma_hpf_node.baseNode has unexpected offset % instead of 0", ((cast(*void)(*instance.baseNode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf_node.baseNode)) == 360, "ma_hpf_node.baseNode has unexpected size % instead of 360", size_of(type_of(ma_hpf_node.baseNode))); + assert(((cast(*void)(*instance.hpf)) - cast(*void)(*instance)) == 360, "ma_hpf_node.hpf has unexpected offset % instead of 360", ((cast(*void)(*instance.hpf)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hpf_node.hpf)) == 56, "ma_hpf_node.hpf has unexpected size % instead of 56", size_of(type_of(ma_hpf_node.hpf))); + assert(size_of(ma_hpf_node) == 416, "ma_hpf_node has size % instead of 416", size_of(ma_hpf_node)); + } + + { + instance: ma_bpf_node_config; + assert(((cast(*void)(*instance.nodeConfig)) - cast(*void)(*instance)) == 0, "ma_bpf_node_config.nodeConfig has unexpected offset % instead of 0", ((cast(*void)(*instance.nodeConfig)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_bpf_node_config.nodeConfig)) == 40, "ma_bpf_node_config.nodeConfig has unexpected size % instead of 40", size_of(type_of(ma_bpf_node_config.nodeConfig))); + assert(((cast(*void)(*instance.bpf)) - cast(*void)(*instance)) == 40, "ma_bpf_node_config.bpf has unexpected offset % instead of 40", ((cast(*void)(*instance.bpf)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_bpf_node_config.bpf)) == 32, "ma_bpf_node_config.bpf has unexpected size % instead of 32", size_of(type_of(ma_bpf_node_config.bpf))); + assert(size_of(ma_bpf_node_config) == 72, "ma_bpf_node_config has size % instead of 72", size_of(ma_bpf_node_config)); + } + + { + instance: ma_bpf_node; + assert(((cast(*void)(*instance.baseNode)) - cast(*void)(*instance)) == 0, "ma_bpf_node.baseNode has unexpected offset % instead of 0", ((cast(*void)(*instance.baseNode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_bpf_node.baseNode)) == 360, "ma_bpf_node.baseNode has unexpected size % instead of 360", size_of(type_of(ma_bpf_node.baseNode))); + assert(((cast(*void)(*instance.bpf)) - cast(*void)(*instance)) == 360, "ma_bpf_node.bpf has unexpected offset % instead of 360", ((cast(*void)(*instance.bpf)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_bpf_node.bpf)) == 40, "ma_bpf_node.bpf has unexpected size % instead of 40", size_of(type_of(ma_bpf_node.bpf))); + assert(size_of(ma_bpf_node) == 400, "ma_bpf_node has size % instead of 400", size_of(ma_bpf_node)); + } + + { + instance: ma_notch_node_config; + assert(((cast(*void)(*instance.nodeConfig)) - cast(*void)(*instance)) == 0, "ma_notch_node_config.nodeConfig has unexpected offset % instead of 0", ((cast(*void)(*instance.nodeConfig)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_notch_node_config.nodeConfig)) == 40, "ma_notch_node_config.nodeConfig has unexpected size % instead of 40", size_of(type_of(ma_notch_node_config.nodeConfig))); + assert(((cast(*void)(*instance.notch)) - cast(*void)(*instance)) == 40, "ma_notch_node_config.notch has unexpected offset % instead of 40", ((cast(*void)(*instance.notch)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_notch_node_config.notch)) == 32, "ma_notch_node_config.notch has unexpected size % instead of 32", size_of(type_of(ma_notch_node_config.notch))); + assert(size_of(ma_notch_node_config) == 72, "ma_notch_node_config has size % instead of 72", size_of(ma_notch_node_config)); + } + + { + instance: ma_notch_node; + assert(((cast(*void)(*instance.baseNode)) - cast(*void)(*instance)) == 0, "ma_notch_node.baseNode has unexpected offset % instead of 0", ((cast(*void)(*instance.baseNode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_notch_node.baseNode)) == 360, "ma_notch_node.baseNode has unexpected size % instead of 360", size_of(type_of(ma_notch_node.baseNode))); + assert(((cast(*void)(*instance.notch)) - cast(*void)(*instance)) == 360, "ma_notch_node.notch has unexpected offset % instead of 360", ((cast(*void)(*instance.notch)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_notch_node.notch)) == 64, "ma_notch_node.notch has unexpected size % instead of 64", size_of(type_of(ma_notch_node.notch))); + assert(size_of(ma_notch_node) == 424, "ma_notch_node has size % instead of 424", size_of(ma_notch_node)); + } + + { + instance: ma_peak_node_config; + assert(((cast(*void)(*instance.nodeConfig)) - cast(*void)(*instance)) == 0, "ma_peak_node_config.nodeConfig has unexpected offset % instead of 0", ((cast(*void)(*instance.nodeConfig)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_peak_node_config.nodeConfig)) == 40, "ma_peak_node_config.nodeConfig has unexpected size % instead of 40", size_of(type_of(ma_peak_node_config.nodeConfig))); + assert(((cast(*void)(*instance.peak)) - cast(*void)(*instance)) == 40, "ma_peak_node_config.peak has unexpected offset % instead of 40", ((cast(*void)(*instance.peak)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_peak_node_config.peak)) == 40, "ma_peak_node_config.peak has unexpected size % instead of 40", size_of(type_of(ma_peak_node_config.peak))); + assert(size_of(ma_peak_node_config) == 80, "ma_peak_node_config has size % instead of 80", size_of(ma_peak_node_config)); + } + + { + instance: ma_peak_node; + assert(((cast(*void)(*instance.baseNode)) - cast(*void)(*instance)) == 0, "ma_peak_node.baseNode has unexpected offset % instead of 0", ((cast(*void)(*instance.baseNode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_peak_node.baseNode)) == 360, "ma_peak_node.baseNode has unexpected size % instead of 360", size_of(type_of(ma_peak_node.baseNode))); + assert(((cast(*void)(*instance.peak)) - cast(*void)(*instance)) == 360, "ma_peak_node.peak has unexpected offset % instead of 360", ((cast(*void)(*instance.peak)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_peak_node.peak)) == 64, "ma_peak_node.peak has unexpected size % instead of 64", size_of(type_of(ma_peak_node.peak))); + assert(size_of(ma_peak_node) == 424, "ma_peak_node has size % instead of 424", size_of(ma_peak_node)); + } + + { + instance: ma_loshelf_node_config; + assert(((cast(*void)(*instance.nodeConfig)) - cast(*void)(*instance)) == 0, "ma_loshelf_node_config.nodeConfig has unexpected offset % instead of 0", ((cast(*void)(*instance.nodeConfig)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_loshelf_node_config.nodeConfig)) == 40, "ma_loshelf_node_config.nodeConfig has unexpected size % instead of 40", size_of(type_of(ma_loshelf_node_config.nodeConfig))); + assert(((cast(*void)(*instance.loshelf)) - cast(*void)(*instance)) == 40, "ma_loshelf_node_config.loshelf has unexpected offset % instead of 40", ((cast(*void)(*instance.loshelf)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_loshelf_node_config.loshelf)) == 40, "ma_loshelf_node_config.loshelf has unexpected size % instead of 40", size_of(type_of(ma_loshelf_node_config.loshelf))); + assert(size_of(ma_loshelf_node_config) == 80, "ma_loshelf_node_config has size % instead of 80", size_of(ma_loshelf_node_config)); + } + + { + instance: ma_loshelf_node; + assert(((cast(*void)(*instance.baseNode)) - cast(*void)(*instance)) == 0, "ma_loshelf_node.baseNode has unexpected offset % instead of 0", ((cast(*void)(*instance.baseNode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_loshelf_node.baseNode)) == 360, "ma_loshelf_node.baseNode has unexpected size % instead of 360", size_of(type_of(ma_loshelf_node.baseNode))); + assert(((cast(*void)(*instance.loshelf)) - cast(*void)(*instance)) == 360, "ma_loshelf_node.loshelf has unexpected offset % instead of 360", ((cast(*void)(*instance.loshelf)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_loshelf_node.loshelf)) == 64, "ma_loshelf_node.loshelf has unexpected size % instead of 64", size_of(type_of(ma_loshelf_node.loshelf))); + assert(size_of(ma_loshelf_node) == 424, "ma_loshelf_node has size % instead of 424", size_of(ma_loshelf_node)); + } + + { + instance: ma_hishelf_node_config; + assert(((cast(*void)(*instance.nodeConfig)) - cast(*void)(*instance)) == 0, "ma_hishelf_node_config.nodeConfig has unexpected offset % instead of 0", ((cast(*void)(*instance.nodeConfig)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hishelf_node_config.nodeConfig)) == 40, "ma_hishelf_node_config.nodeConfig has unexpected size % instead of 40", size_of(type_of(ma_hishelf_node_config.nodeConfig))); + assert(((cast(*void)(*instance.hishelf)) - cast(*void)(*instance)) == 40, "ma_hishelf_node_config.hishelf has unexpected offset % instead of 40", ((cast(*void)(*instance.hishelf)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hishelf_node_config.hishelf)) == 40, "ma_hishelf_node_config.hishelf has unexpected size % instead of 40", size_of(type_of(ma_hishelf_node_config.hishelf))); + assert(size_of(ma_hishelf_node_config) == 80, "ma_hishelf_node_config has size % instead of 80", size_of(ma_hishelf_node_config)); + } + + { + instance: ma_hishelf_node; + assert(((cast(*void)(*instance.baseNode)) - cast(*void)(*instance)) == 0, "ma_hishelf_node.baseNode has unexpected offset % instead of 0", ((cast(*void)(*instance.baseNode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hishelf_node.baseNode)) == 360, "ma_hishelf_node.baseNode has unexpected size % instead of 360", size_of(type_of(ma_hishelf_node.baseNode))); + assert(((cast(*void)(*instance.hishelf)) - cast(*void)(*instance)) == 360, "ma_hishelf_node.hishelf has unexpected offset % instead of 360", ((cast(*void)(*instance.hishelf)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_hishelf_node.hishelf)) == 64, "ma_hishelf_node.hishelf has unexpected size % instead of 64", size_of(type_of(ma_hishelf_node.hishelf))); + assert(size_of(ma_hishelf_node) == 424, "ma_hishelf_node has size % instead of 424", size_of(ma_hishelf_node)); + } + + { + instance: ma_delay_node_config; + assert(((cast(*void)(*instance.nodeConfig)) - cast(*void)(*instance)) == 0, "ma_delay_node_config.nodeConfig has unexpected offset % instead of 0", ((cast(*void)(*instance.nodeConfig)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_delay_node_config.nodeConfig)) == 40, "ma_delay_node_config.nodeConfig has unexpected size % instead of 40", size_of(type_of(ma_delay_node_config.nodeConfig))); + assert(((cast(*void)(*instance.delay)) - cast(*void)(*instance)) == 40, "ma_delay_node_config.delay has unexpected offset % instead of 40", ((cast(*void)(*instance.delay)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_delay_node_config.delay)) == 28, "ma_delay_node_config.delay has unexpected size % instead of 28", size_of(type_of(ma_delay_node_config.delay))); + assert(size_of(ma_delay_node_config) == 72, "ma_delay_node_config has size % instead of 72", size_of(ma_delay_node_config)); + } + + { + instance: ma_delay_node; + assert(((cast(*void)(*instance.baseNode)) - cast(*void)(*instance)) == 0, "ma_delay_node.baseNode has unexpected offset % instead of 0", ((cast(*void)(*instance.baseNode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_delay_node.baseNode)) == 360, "ma_delay_node.baseNode has unexpected size % instead of 360", size_of(type_of(ma_delay_node.baseNode))); + assert(((cast(*void)(*instance.delay)) - cast(*void)(*instance)) == 360, "ma_delay_node.delay has unexpected offset % instead of 360", ((cast(*void)(*instance.delay)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_delay_node.delay)) == 48, "ma_delay_node.delay has unexpected size % instead of 48", size_of(type_of(ma_delay_node.delay))); + assert(size_of(ma_delay_node) == 408, "ma_delay_node has size % instead of 408", size_of(ma_delay_node)); + } + + { + instance: ma_engine_node_config; + assert(((cast(*void)(*instance.pEngine)) - cast(*void)(*instance)) == 0, "ma_engine_node_config.pEngine has unexpected offset % instead of 0", ((cast(*void)(*instance.pEngine)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node_config.pEngine)) == 8, "ma_engine_node_config.pEngine has unexpected size % instead of 8", size_of(type_of(ma_engine_node_config.pEngine))); + assert(((cast(*void)(*instance.type)) - cast(*void)(*instance)) == 8, "ma_engine_node_config.type has unexpected offset % instead of 8", ((cast(*void)(*instance.type)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node_config.type)) == 4, "ma_engine_node_config.type has unexpected size % instead of 4", size_of(type_of(ma_engine_node_config.type))); + assert(((cast(*void)(*instance.channelsIn)) - cast(*void)(*instance)) == 12, "ma_engine_node_config.channelsIn has unexpected offset % instead of 12", ((cast(*void)(*instance.channelsIn)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node_config.channelsIn)) == 4, "ma_engine_node_config.channelsIn has unexpected size % instead of 4", size_of(type_of(ma_engine_node_config.channelsIn))); + assert(((cast(*void)(*instance.channelsOut)) - cast(*void)(*instance)) == 16, "ma_engine_node_config.channelsOut has unexpected offset % instead of 16", ((cast(*void)(*instance.channelsOut)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node_config.channelsOut)) == 4, "ma_engine_node_config.channelsOut has unexpected size % instead of 4", size_of(type_of(ma_engine_node_config.channelsOut))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 20, "ma_engine_node_config.sampleRate has unexpected offset % instead of 20", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node_config.sampleRate)) == 4, "ma_engine_node_config.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_engine_node_config.sampleRate))); + assert(((cast(*void)(*instance.volumeSmoothTimeInPCMFrames)) - cast(*void)(*instance)) == 24, "ma_engine_node_config.volumeSmoothTimeInPCMFrames has unexpected offset % instead of 24", ((cast(*void)(*instance.volumeSmoothTimeInPCMFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node_config.volumeSmoothTimeInPCMFrames)) == 4, "ma_engine_node_config.volumeSmoothTimeInPCMFrames has unexpected size % instead of 4", size_of(type_of(ma_engine_node_config.volumeSmoothTimeInPCMFrames))); + assert(((cast(*void)(*instance.monoExpansionMode)) - cast(*void)(*instance)) == 28, "ma_engine_node_config.monoExpansionMode has unexpected offset % instead of 28", ((cast(*void)(*instance.monoExpansionMode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node_config.monoExpansionMode)) == 4, "ma_engine_node_config.monoExpansionMode has unexpected size % instead of 4", size_of(type_of(ma_engine_node_config.monoExpansionMode))); + assert(((cast(*void)(*instance.isPitchDisabled)) - cast(*void)(*instance)) == 32, "ma_engine_node_config.isPitchDisabled has unexpected offset % instead of 32", ((cast(*void)(*instance.isPitchDisabled)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node_config.isPitchDisabled)) == 1, "ma_engine_node_config.isPitchDisabled has unexpected size % instead of 1", size_of(type_of(ma_engine_node_config.isPitchDisabled))); + assert(((cast(*void)(*instance.isSpatializationDisabled)) - cast(*void)(*instance)) == 33, "ma_engine_node_config.isSpatializationDisabled has unexpected offset % instead of 33", ((cast(*void)(*instance.isSpatializationDisabled)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node_config.isSpatializationDisabled)) == 1, "ma_engine_node_config.isSpatializationDisabled has unexpected size % instead of 1", size_of(type_of(ma_engine_node_config.isSpatializationDisabled))); + assert(((cast(*void)(*instance.pinnedListenerIndex)) - cast(*void)(*instance)) == 34, "ma_engine_node_config.pinnedListenerIndex has unexpected offset % instead of 34", ((cast(*void)(*instance.pinnedListenerIndex)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node_config.pinnedListenerIndex)) == 1, "ma_engine_node_config.pinnedListenerIndex has unexpected size % instead of 1", size_of(type_of(ma_engine_node_config.pinnedListenerIndex))); + assert(size_of(ma_engine_node_config) == 40, "ma_engine_node_config has size % instead of 40", size_of(ma_engine_node_config)); + } + + { + instance: ma_engine_node; + assert(((cast(*void)(*instance.baseNode)) - cast(*void)(*instance)) == 0, "ma_engine_node.baseNode has unexpected offset % instead of 0", ((cast(*void)(*instance.baseNode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node.baseNode)) == 360, "ma_engine_node.baseNode has unexpected size % instead of 360", size_of(type_of(ma_engine_node.baseNode))); + assert(((cast(*void)(*instance.pEngine)) - cast(*void)(*instance)) == 360, "ma_engine_node.pEngine has unexpected offset % instead of 360", ((cast(*void)(*instance.pEngine)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node.pEngine)) == 8, "ma_engine_node.pEngine has unexpected size % instead of 8", size_of(type_of(ma_engine_node.pEngine))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 368, "ma_engine_node.sampleRate has unexpected offset % instead of 368", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node.sampleRate)) == 4, "ma_engine_node.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_engine_node.sampleRate))); + assert(((cast(*void)(*instance.volumeSmoothTimeInPCMFrames)) - cast(*void)(*instance)) == 372, "ma_engine_node.volumeSmoothTimeInPCMFrames has unexpected offset % instead of 372", ((cast(*void)(*instance.volumeSmoothTimeInPCMFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node.volumeSmoothTimeInPCMFrames)) == 4, "ma_engine_node.volumeSmoothTimeInPCMFrames has unexpected size % instead of 4", size_of(type_of(ma_engine_node.volumeSmoothTimeInPCMFrames))); + assert(((cast(*void)(*instance.monoExpansionMode)) - cast(*void)(*instance)) == 376, "ma_engine_node.monoExpansionMode has unexpected offset % instead of 376", ((cast(*void)(*instance.monoExpansionMode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node.monoExpansionMode)) == 4, "ma_engine_node.monoExpansionMode has unexpected size % instead of 4", size_of(type_of(ma_engine_node.monoExpansionMode))); + assert(((cast(*void)(*instance.fader)) - cast(*void)(*instance)) == 384, "ma_engine_node.fader has unexpected offset % instead of 384", ((cast(*void)(*instance.fader)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node.fader)) == 40, "ma_engine_node.fader has unexpected size % instead of 40", size_of(type_of(ma_engine_node.fader))); + assert(((cast(*void)(*instance.resampler)) - cast(*void)(*instance)) == 424, "ma_engine_node.resampler has unexpected offset % instead of 424", ((cast(*void)(*instance.resampler)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node.resampler)) == 136, "ma_engine_node.resampler has unexpected size % instead of 136", size_of(type_of(ma_engine_node.resampler))); + assert(((cast(*void)(*instance.spatializer)) - cast(*void)(*instance)) == 560, "ma_engine_node.spatializer has unexpected offset % instead of 560", ((cast(*void)(*instance.spatializer)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node.spatializer)) == 200, "ma_engine_node.spatializer has unexpected size % instead of 200", size_of(type_of(ma_engine_node.spatializer))); + assert(((cast(*void)(*instance.panner)) - cast(*void)(*instance)) == 760, "ma_engine_node.panner has unexpected offset % instead of 760", ((cast(*void)(*instance.panner)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node.panner)) == 16, "ma_engine_node.panner has unexpected size % instead of 16", size_of(type_of(ma_engine_node.panner))); + assert(((cast(*void)(*instance.volumeGainer)) - cast(*void)(*instance)) == 776, "ma_engine_node.volumeGainer has unexpected offset % instead of 776", ((cast(*void)(*instance.volumeGainer)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node.volumeGainer)) == 48, "ma_engine_node.volumeGainer has unexpected size % instead of 48", size_of(type_of(ma_engine_node.volumeGainer))); + assert(((cast(*void)(*instance.volume)) - cast(*void)(*instance)) == 824, "ma_engine_node.volume has unexpected offset % instead of 824", ((cast(*void)(*instance.volume)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node.volume)) == 4, "ma_engine_node.volume has unexpected size % instead of 4", size_of(type_of(ma_engine_node.volume))); + assert(((cast(*void)(*instance.pitch)) - cast(*void)(*instance)) == 828, "ma_engine_node.pitch has unexpected offset % instead of 828", ((cast(*void)(*instance.pitch)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node.pitch)) == 4, "ma_engine_node.pitch has unexpected size % instead of 4", size_of(type_of(ma_engine_node.pitch))); + assert(((cast(*void)(*instance.oldPitch)) - cast(*void)(*instance)) == 832, "ma_engine_node.oldPitch has unexpected offset % instead of 832", ((cast(*void)(*instance.oldPitch)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node.oldPitch)) == 4, "ma_engine_node.oldPitch has unexpected size % instead of 4", size_of(type_of(ma_engine_node.oldPitch))); + assert(((cast(*void)(*instance.oldDopplerPitch)) - cast(*void)(*instance)) == 836, "ma_engine_node.oldDopplerPitch has unexpected offset % instead of 836", ((cast(*void)(*instance.oldDopplerPitch)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node.oldDopplerPitch)) == 4, "ma_engine_node.oldDopplerPitch has unexpected size % instead of 4", size_of(type_of(ma_engine_node.oldDopplerPitch))); + assert(((cast(*void)(*instance.isPitchDisabled)) - cast(*void)(*instance)) == 840, "ma_engine_node.isPitchDisabled has unexpected offset % instead of 840", ((cast(*void)(*instance.isPitchDisabled)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node.isPitchDisabled)) == 4, "ma_engine_node.isPitchDisabled has unexpected size % instead of 4", size_of(type_of(ma_engine_node.isPitchDisabled))); + assert(((cast(*void)(*instance.isSpatializationDisabled)) - cast(*void)(*instance)) == 844, "ma_engine_node.isSpatializationDisabled has unexpected offset % instead of 844", ((cast(*void)(*instance.isSpatializationDisabled)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node.isSpatializationDisabled)) == 4, "ma_engine_node.isSpatializationDisabled has unexpected size % instead of 4", size_of(type_of(ma_engine_node.isSpatializationDisabled))); + assert(((cast(*void)(*instance.pinnedListenerIndex)) - cast(*void)(*instance)) == 848, "ma_engine_node.pinnedListenerIndex has unexpected offset % instead of 848", ((cast(*void)(*instance.pinnedListenerIndex)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node.pinnedListenerIndex)) == 4, "ma_engine_node.pinnedListenerIndex has unexpected size % instead of 4", size_of(type_of(ma_engine_node.pinnedListenerIndex))); + assert(((cast(*void)(*instance.fadeSettings)) - cast(*void)(*instance)) == 856, "ma_engine_node.fadeSettings has unexpected offset % instead of 856", ((cast(*void)(*instance.fadeSettings)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node.fadeSettings)) == 24, "ma_engine_node.fadeSettings has unexpected size % instead of 24", size_of(type_of(ma_engine_node.fadeSettings))); + assert(((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance)) == 880, "ma_engine_node._ownsHeap has unexpected offset % instead of 880", ((cast(*void)(*instance._ownsHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node._ownsHeap)) == 1, "ma_engine_node._ownsHeap has unexpected size % instead of 1", size_of(type_of(ma_engine_node._ownsHeap))); + assert(((cast(*void)(*instance._pHeap)) - cast(*void)(*instance)) == 888, "ma_engine_node._pHeap has unexpected offset % instead of 888", ((cast(*void)(*instance._pHeap)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_node._pHeap)) == 8, "ma_engine_node._pHeap has unexpected size % instead of 8", size_of(type_of(ma_engine_node._pHeap))); + assert(size_of(ma_engine_node) == 896, "ma_engine_node has size % instead of 896", size_of(ma_engine_node)); + } + + { + instance: ma_sound_config; + assert(((cast(*void)(*instance.pFilePath)) - cast(*void)(*instance)) == 0, "ma_sound_config.pFilePath has unexpected offset % instead of 0", ((cast(*void)(*instance.pFilePath)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound_config.pFilePath)) == 8, "ma_sound_config.pFilePath has unexpected size % instead of 8", size_of(type_of(ma_sound_config.pFilePath))); + assert(((cast(*void)(*instance.pFilePathW)) - cast(*void)(*instance)) == 8, "ma_sound_config.pFilePathW has unexpected offset % instead of 8", ((cast(*void)(*instance.pFilePathW)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound_config.pFilePathW)) == 8, "ma_sound_config.pFilePathW has unexpected size % instead of 8", size_of(type_of(ma_sound_config.pFilePathW))); + assert(((cast(*void)(*instance.pDataSource)) - cast(*void)(*instance)) == 16, "ma_sound_config.pDataSource has unexpected offset % instead of 16", ((cast(*void)(*instance.pDataSource)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound_config.pDataSource)) == 8, "ma_sound_config.pDataSource has unexpected size % instead of 8", size_of(type_of(ma_sound_config.pDataSource))); + assert(((cast(*void)(*instance.pInitialAttachment)) - cast(*void)(*instance)) == 24, "ma_sound_config.pInitialAttachment has unexpected offset % instead of 24", ((cast(*void)(*instance.pInitialAttachment)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound_config.pInitialAttachment)) == 8, "ma_sound_config.pInitialAttachment has unexpected size % instead of 8", size_of(type_of(ma_sound_config.pInitialAttachment))); + assert(((cast(*void)(*instance.initialAttachmentInputBusIndex)) - cast(*void)(*instance)) == 32, "ma_sound_config.initialAttachmentInputBusIndex has unexpected offset % instead of 32", ((cast(*void)(*instance.initialAttachmentInputBusIndex)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound_config.initialAttachmentInputBusIndex)) == 4, "ma_sound_config.initialAttachmentInputBusIndex has unexpected size % instead of 4", size_of(type_of(ma_sound_config.initialAttachmentInputBusIndex))); + assert(((cast(*void)(*instance.channelsIn)) - cast(*void)(*instance)) == 36, "ma_sound_config.channelsIn has unexpected offset % instead of 36", ((cast(*void)(*instance.channelsIn)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound_config.channelsIn)) == 4, "ma_sound_config.channelsIn has unexpected size % instead of 4", size_of(type_of(ma_sound_config.channelsIn))); + assert(((cast(*void)(*instance.channelsOut)) - cast(*void)(*instance)) == 40, "ma_sound_config.channelsOut has unexpected offset % instead of 40", ((cast(*void)(*instance.channelsOut)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound_config.channelsOut)) == 4, "ma_sound_config.channelsOut has unexpected size % instead of 4", size_of(type_of(ma_sound_config.channelsOut))); + assert(((cast(*void)(*instance.monoExpansionMode)) - cast(*void)(*instance)) == 44, "ma_sound_config.monoExpansionMode has unexpected offset % instead of 44", ((cast(*void)(*instance.monoExpansionMode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound_config.monoExpansionMode)) == 4, "ma_sound_config.monoExpansionMode has unexpected size % instead of 4", size_of(type_of(ma_sound_config.monoExpansionMode))); + assert(((cast(*void)(*instance.flags)) - cast(*void)(*instance)) == 48, "ma_sound_config.flags has unexpected offset % instead of 48", ((cast(*void)(*instance.flags)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound_config.flags)) == 4, "ma_sound_config.flags has unexpected size % instead of 4", size_of(type_of(ma_sound_config.flags))); + assert(((cast(*void)(*instance.volumeSmoothTimeInPCMFrames)) - cast(*void)(*instance)) == 52, "ma_sound_config.volumeSmoothTimeInPCMFrames has unexpected offset % instead of 52", ((cast(*void)(*instance.volumeSmoothTimeInPCMFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound_config.volumeSmoothTimeInPCMFrames)) == 4, "ma_sound_config.volumeSmoothTimeInPCMFrames has unexpected size % instead of 4", size_of(type_of(ma_sound_config.volumeSmoothTimeInPCMFrames))); + assert(((cast(*void)(*instance.initialSeekPointInPCMFrames)) - cast(*void)(*instance)) == 56, "ma_sound_config.initialSeekPointInPCMFrames has unexpected offset % instead of 56", ((cast(*void)(*instance.initialSeekPointInPCMFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound_config.initialSeekPointInPCMFrames)) == 8, "ma_sound_config.initialSeekPointInPCMFrames has unexpected size % instead of 8", size_of(type_of(ma_sound_config.initialSeekPointInPCMFrames))); + assert(((cast(*void)(*instance.rangeBegInPCMFrames)) - cast(*void)(*instance)) == 64, "ma_sound_config.rangeBegInPCMFrames has unexpected offset % instead of 64", ((cast(*void)(*instance.rangeBegInPCMFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound_config.rangeBegInPCMFrames)) == 8, "ma_sound_config.rangeBegInPCMFrames has unexpected size % instead of 8", size_of(type_of(ma_sound_config.rangeBegInPCMFrames))); + assert(((cast(*void)(*instance.rangeEndInPCMFrames)) - cast(*void)(*instance)) == 72, "ma_sound_config.rangeEndInPCMFrames has unexpected offset % instead of 72", ((cast(*void)(*instance.rangeEndInPCMFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound_config.rangeEndInPCMFrames)) == 8, "ma_sound_config.rangeEndInPCMFrames has unexpected size % instead of 8", size_of(type_of(ma_sound_config.rangeEndInPCMFrames))); + assert(((cast(*void)(*instance.loopPointBegInPCMFrames)) - cast(*void)(*instance)) == 80, "ma_sound_config.loopPointBegInPCMFrames has unexpected offset % instead of 80", ((cast(*void)(*instance.loopPointBegInPCMFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound_config.loopPointBegInPCMFrames)) == 8, "ma_sound_config.loopPointBegInPCMFrames has unexpected size % instead of 8", size_of(type_of(ma_sound_config.loopPointBegInPCMFrames))); + assert(((cast(*void)(*instance.loopPointEndInPCMFrames)) - cast(*void)(*instance)) == 88, "ma_sound_config.loopPointEndInPCMFrames has unexpected offset % instead of 88", ((cast(*void)(*instance.loopPointEndInPCMFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound_config.loopPointEndInPCMFrames)) == 8, "ma_sound_config.loopPointEndInPCMFrames has unexpected size % instead of 8", size_of(type_of(ma_sound_config.loopPointEndInPCMFrames))); + assert(((cast(*void)(*instance.isLooping)) - cast(*void)(*instance)) == 96, "ma_sound_config.isLooping has unexpected offset % instead of 96", ((cast(*void)(*instance.isLooping)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound_config.isLooping)) == 4, "ma_sound_config.isLooping has unexpected size % instead of 4", size_of(type_of(ma_sound_config.isLooping))); + assert(((cast(*void)(*instance.endCallback)) - cast(*void)(*instance)) == 104, "ma_sound_config.endCallback has unexpected offset % instead of 104", ((cast(*void)(*instance.endCallback)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound_config.endCallback)) == 8, "ma_sound_config.endCallback has unexpected size % instead of 8", size_of(type_of(ma_sound_config.endCallback))); + assert(((cast(*void)(*instance.pEndCallbackUserData)) - cast(*void)(*instance)) == 112, "ma_sound_config.pEndCallbackUserData has unexpected offset % instead of 112", ((cast(*void)(*instance.pEndCallbackUserData)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound_config.pEndCallbackUserData)) == 8, "ma_sound_config.pEndCallbackUserData has unexpected size % instead of 8", size_of(type_of(ma_sound_config.pEndCallbackUserData))); + assert(((cast(*void)(*instance.initNotifications)) - cast(*void)(*instance)) == 120, "ma_sound_config.initNotifications has unexpected offset % instead of 120", ((cast(*void)(*instance.initNotifications)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound_config.initNotifications)) == 32, "ma_sound_config.initNotifications has unexpected size % instead of 32", size_of(type_of(ma_sound_config.initNotifications))); + assert(((cast(*void)(*instance.pDoneFence)) - cast(*void)(*instance)) == 152, "ma_sound_config.pDoneFence has unexpected offset % instead of 152", ((cast(*void)(*instance.pDoneFence)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound_config.pDoneFence)) == 8, "ma_sound_config.pDoneFence has unexpected size % instead of 8", size_of(type_of(ma_sound_config.pDoneFence))); + assert(size_of(ma_sound_config) == 160, "ma_sound_config has size % instead of 160", size_of(ma_sound_config)); + } + + { + instance: ma_sound; + assert(((cast(*void)(*instance.engineNode)) - cast(*void)(*instance)) == 0, "ma_sound.engineNode has unexpected offset % instead of 0", ((cast(*void)(*instance.engineNode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound.engineNode)) == 896, "ma_sound.engineNode has unexpected size % instead of 896", size_of(type_of(ma_sound.engineNode))); + assert(((cast(*void)(*instance.pDataSource)) - cast(*void)(*instance)) == 896, "ma_sound.pDataSource has unexpected offset % instead of 896", ((cast(*void)(*instance.pDataSource)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound.pDataSource)) == 8, "ma_sound.pDataSource has unexpected size % instead of 8", size_of(type_of(ma_sound.pDataSource))); + assert(((cast(*void)(*instance.seekTarget)) - cast(*void)(*instance)) == 904, "ma_sound.seekTarget has unexpected offset % instead of 904", ((cast(*void)(*instance.seekTarget)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound.seekTarget)) == 8, "ma_sound.seekTarget has unexpected size % instead of 8", size_of(type_of(ma_sound.seekTarget))); + assert(((cast(*void)(*instance.atEnd)) - cast(*void)(*instance)) == 912, "ma_sound.atEnd has unexpected offset % instead of 912", ((cast(*void)(*instance.atEnd)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound.atEnd)) == 4, "ma_sound.atEnd has unexpected size % instead of 4", size_of(type_of(ma_sound.atEnd))); + assert(((cast(*void)(*instance.endCallback)) - cast(*void)(*instance)) == 920, "ma_sound.endCallback has unexpected offset % instead of 920", ((cast(*void)(*instance.endCallback)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound.endCallback)) == 8, "ma_sound.endCallback has unexpected size % instead of 8", size_of(type_of(ma_sound.endCallback))); + assert(((cast(*void)(*instance.pEndCallbackUserData)) - cast(*void)(*instance)) == 928, "ma_sound.pEndCallbackUserData has unexpected offset % instead of 928", ((cast(*void)(*instance.pEndCallbackUserData)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound.pEndCallbackUserData)) == 8, "ma_sound.pEndCallbackUserData has unexpected size % instead of 8", size_of(type_of(ma_sound.pEndCallbackUserData))); + assert(((cast(*void)(*instance.ownsDataSource)) - cast(*void)(*instance)) == 936, "ma_sound.ownsDataSource has unexpected offset % instead of 936", ((cast(*void)(*instance.ownsDataSource)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound.ownsDataSource)) == 1, "ma_sound.ownsDataSource has unexpected size % instead of 1", size_of(type_of(ma_sound.ownsDataSource))); + assert(((cast(*void)(*instance.pResourceManagerDataSource)) - cast(*void)(*instance)) == 944, "ma_sound.pResourceManagerDataSource has unexpected offset % instead of 944", ((cast(*void)(*instance.pResourceManagerDataSource)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound.pResourceManagerDataSource)) == 8, "ma_sound.pResourceManagerDataSource has unexpected size % instead of 8", size_of(type_of(ma_sound.pResourceManagerDataSource))); + assert(size_of(ma_sound) == 952, "ma_sound has size % instead of 952", size_of(ma_sound)); + } + + { + instance: ma_sound_inlined; + assert(((cast(*void)(*instance.sound)) - cast(*void)(*instance)) == 0, "ma_sound_inlined.sound has unexpected offset % instead of 0", ((cast(*void)(*instance.sound)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound_inlined.sound)) == 952, "ma_sound_inlined.sound has unexpected size % instead of 952", size_of(type_of(ma_sound_inlined.sound))); + assert(((cast(*void)(*instance.pNext)) - cast(*void)(*instance)) == 952, "ma_sound_inlined.pNext has unexpected offset % instead of 952", ((cast(*void)(*instance.pNext)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound_inlined.pNext)) == 8, "ma_sound_inlined.pNext has unexpected size % instead of 8", size_of(type_of(ma_sound_inlined.pNext))); + assert(((cast(*void)(*instance.pPrev)) - cast(*void)(*instance)) == 960, "ma_sound_inlined.pPrev has unexpected offset % instead of 960", ((cast(*void)(*instance.pPrev)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_sound_inlined.pPrev)) == 8, "ma_sound_inlined.pPrev has unexpected size % instead of 8", size_of(type_of(ma_sound_inlined.pPrev))); + assert(size_of(ma_sound_inlined) == 968, "ma_sound_inlined has size % instead of 968", size_of(ma_sound_inlined)); + } + + { + instance: ma_engine_config; + assert(((cast(*void)(*instance.pResourceManager)) - cast(*void)(*instance)) == 0, "ma_engine_config.pResourceManager has unexpected offset % instead of 0", ((cast(*void)(*instance.pResourceManager)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_config.pResourceManager)) == 8, "ma_engine_config.pResourceManager has unexpected size % instead of 8", size_of(type_of(ma_engine_config.pResourceManager))); + assert(((cast(*void)(*instance.pContext)) - cast(*void)(*instance)) == 8, "ma_engine_config.pContext has unexpected offset % instead of 8", ((cast(*void)(*instance.pContext)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_config.pContext)) == 8, "ma_engine_config.pContext has unexpected size % instead of 8", size_of(type_of(ma_engine_config.pContext))); + assert(((cast(*void)(*instance.pDevice)) - cast(*void)(*instance)) == 16, "ma_engine_config.pDevice has unexpected offset % instead of 16", ((cast(*void)(*instance.pDevice)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_config.pDevice)) == 8, "ma_engine_config.pDevice has unexpected size % instead of 8", size_of(type_of(ma_engine_config.pDevice))); + assert(((cast(*void)(*instance.pPlaybackDeviceID)) - cast(*void)(*instance)) == 24, "ma_engine_config.pPlaybackDeviceID has unexpected offset % instead of 24", ((cast(*void)(*instance.pPlaybackDeviceID)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_config.pPlaybackDeviceID)) == 8, "ma_engine_config.pPlaybackDeviceID has unexpected size % instead of 8", size_of(type_of(ma_engine_config.pPlaybackDeviceID))); + assert(((cast(*void)(*instance.dataCallback)) - cast(*void)(*instance)) == 32, "ma_engine_config.dataCallback has unexpected offset % instead of 32", ((cast(*void)(*instance.dataCallback)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_config.dataCallback)) == 8, "ma_engine_config.dataCallback has unexpected size % instead of 8", size_of(type_of(ma_engine_config.dataCallback))); + assert(((cast(*void)(*instance.notificationCallback)) - cast(*void)(*instance)) == 40, "ma_engine_config.notificationCallback has unexpected offset % instead of 40", ((cast(*void)(*instance.notificationCallback)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_config.notificationCallback)) == 8, "ma_engine_config.notificationCallback has unexpected size % instead of 8", size_of(type_of(ma_engine_config.notificationCallback))); + assert(((cast(*void)(*instance.pLog)) - cast(*void)(*instance)) == 48, "ma_engine_config.pLog has unexpected offset % instead of 48", ((cast(*void)(*instance.pLog)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_config.pLog)) == 8, "ma_engine_config.pLog has unexpected size % instead of 8", size_of(type_of(ma_engine_config.pLog))); + assert(((cast(*void)(*instance.listenerCount)) - cast(*void)(*instance)) == 56, "ma_engine_config.listenerCount has unexpected offset % instead of 56", ((cast(*void)(*instance.listenerCount)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_config.listenerCount)) == 4, "ma_engine_config.listenerCount has unexpected size % instead of 4", size_of(type_of(ma_engine_config.listenerCount))); + assert(((cast(*void)(*instance.channels)) - cast(*void)(*instance)) == 60, "ma_engine_config.channels has unexpected offset % instead of 60", ((cast(*void)(*instance.channels)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_config.channels)) == 4, "ma_engine_config.channels has unexpected size % instead of 4", size_of(type_of(ma_engine_config.channels))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 64, "ma_engine_config.sampleRate has unexpected offset % instead of 64", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_config.sampleRate)) == 4, "ma_engine_config.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_engine_config.sampleRate))); + assert(((cast(*void)(*instance.periodSizeInFrames)) - cast(*void)(*instance)) == 68, "ma_engine_config.periodSizeInFrames has unexpected offset % instead of 68", ((cast(*void)(*instance.periodSizeInFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_config.periodSizeInFrames)) == 4, "ma_engine_config.periodSizeInFrames has unexpected size % instead of 4", size_of(type_of(ma_engine_config.periodSizeInFrames))); + assert(((cast(*void)(*instance.periodSizeInMilliseconds)) - cast(*void)(*instance)) == 72, "ma_engine_config.periodSizeInMilliseconds has unexpected offset % instead of 72", ((cast(*void)(*instance.periodSizeInMilliseconds)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_config.periodSizeInMilliseconds)) == 4, "ma_engine_config.periodSizeInMilliseconds has unexpected size % instead of 4", size_of(type_of(ma_engine_config.periodSizeInMilliseconds))); + assert(((cast(*void)(*instance.gainSmoothTimeInFrames)) - cast(*void)(*instance)) == 76, "ma_engine_config.gainSmoothTimeInFrames has unexpected offset % instead of 76", ((cast(*void)(*instance.gainSmoothTimeInFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_config.gainSmoothTimeInFrames)) == 4, "ma_engine_config.gainSmoothTimeInFrames has unexpected size % instead of 4", size_of(type_of(ma_engine_config.gainSmoothTimeInFrames))); + assert(((cast(*void)(*instance.gainSmoothTimeInMilliseconds)) - cast(*void)(*instance)) == 80, "ma_engine_config.gainSmoothTimeInMilliseconds has unexpected offset % instead of 80", ((cast(*void)(*instance.gainSmoothTimeInMilliseconds)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_config.gainSmoothTimeInMilliseconds)) == 4, "ma_engine_config.gainSmoothTimeInMilliseconds has unexpected size % instead of 4", size_of(type_of(ma_engine_config.gainSmoothTimeInMilliseconds))); + assert(((cast(*void)(*instance.defaultVolumeSmoothTimeInPCMFrames)) - cast(*void)(*instance)) == 84, "ma_engine_config.defaultVolumeSmoothTimeInPCMFrames has unexpected offset % instead of 84", ((cast(*void)(*instance.defaultVolumeSmoothTimeInPCMFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_config.defaultVolumeSmoothTimeInPCMFrames)) == 4, "ma_engine_config.defaultVolumeSmoothTimeInPCMFrames has unexpected size % instead of 4", size_of(type_of(ma_engine_config.defaultVolumeSmoothTimeInPCMFrames))); + assert(((cast(*void)(*instance.allocationCallbacks)) - cast(*void)(*instance)) == 88, "ma_engine_config.allocationCallbacks has unexpected offset % instead of 88", ((cast(*void)(*instance.allocationCallbacks)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_config.allocationCallbacks)) == 32, "ma_engine_config.allocationCallbacks has unexpected size % instead of 32", size_of(type_of(ma_engine_config.allocationCallbacks))); + assert(((cast(*void)(*instance.noAutoStart)) - cast(*void)(*instance)) == 120, "ma_engine_config.noAutoStart has unexpected offset % instead of 120", ((cast(*void)(*instance.noAutoStart)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_config.noAutoStart)) == 4, "ma_engine_config.noAutoStart has unexpected size % instead of 4", size_of(type_of(ma_engine_config.noAutoStart))); + assert(((cast(*void)(*instance.noDevice)) - cast(*void)(*instance)) == 124, "ma_engine_config.noDevice has unexpected offset % instead of 124", ((cast(*void)(*instance.noDevice)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_config.noDevice)) == 4, "ma_engine_config.noDevice has unexpected size % instead of 4", size_of(type_of(ma_engine_config.noDevice))); + assert(((cast(*void)(*instance.monoExpansionMode)) - cast(*void)(*instance)) == 128, "ma_engine_config.monoExpansionMode has unexpected offset % instead of 128", ((cast(*void)(*instance.monoExpansionMode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_config.monoExpansionMode)) == 4, "ma_engine_config.monoExpansionMode has unexpected size % instead of 4", size_of(type_of(ma_engine_config.monoExpansionMode))); + assert(((cast(*void)(*instance.pResourceManagerVFS)) - cast(*void)(*instance)) == 136, "ma_engine_config.pResourceManagerVFS has unexpected offset % instead of 136", ((cast(*void)(*instance.pResourceManagerVFS)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_config.pResourceManagerVFS)) == 8, "ma_engine_config.pResourceManagerVFS has unexpected size % instead of 8", size_of(type_of(ma_engine_config.pResourceManagerVFS))); + assert(((cast(*void)(*instance.onProcess)) - cast(*void)(*instance)) == 144, "ma_engine_config.onProcess has unexpected offset % instead of 144", ((cast(*void)(*instance.onProcess)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_config.onProcess)) == 8, "ma_engine_config.onProcess has unexpected size % instead of 8", size_of(type_of(ma_engine_config.onProcess))); + assert(((cast(*void)(*instance.pProcessUserData)) - cast(*void)(*instance)) == 152, "ma_engine_config.pProcessUserData has unexpected offset % instead of 152", ((cast(*void)(*instance.pProcessUserData)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine_config.pProcessUserData)) == 8, "ma_engine_config.pProcessUserData has unexpected size % instead of 8", size_of(type_of(ma_engine_config.pProcessUserData))); + assert(size_of(ma_engine_config) == 160, "ma_engine_config has size % instead of 160", size_of(ma_engine_config)); + } + + { + instance: ma_engine; + assert(((cast(*void)(*instance.nodeGraph)) - cast(*void)(*instance)) == 0, "ma_engine.nodeGraph has unexpected offset % instead of 0", ((cast(*void)(*instance.nodeGraph)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine.nodeGraph)) == 728, "ma_engine.nodeGraph has unexpected size % instead of 728", size_of(type_of(ma_engine.nodeGraph))); + assert(((cast(*void)(*instance.pResourceManager)) - cast(*void)(*instance)) == 728, "ma_engine.pResourceManager has unexpected offset % instead of 728", ((cast(*void)(*instance.pResourceManager)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine.pResourceManager)) == 8, "ma_engine.pResourceManager has unexpected size % instead of 8", size_of(type_of(ma_engine.pResourceManager))); + assert(((cast(*void)(*instance.pDevice)) - cast(*void)(*instance)) == 736, "ma_engine.pDevice has unexpected offset % instead of 736", ((cast(*void)(*instance.pDevice)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine.pDevice)) == 8, "ma_engine.pDevice has unexpected size % instead of 8", size_of(type_of(ma_engine.pDevice))); + assert(((cast(*void)(*instance.pLog)) - cast(*void)(*instance)) == 744, "ma_engine.pLog has unexpected offset % instead of 744", ((cast(*void)(*instance.pLog)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine.pLog)) == 8, "ma_engine.pLog has unexpected size % instead of 8", size_of(type_of(ma_engine.pLog))); + assert(((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance)) == 752, "ma_engine.sampleRate has unexpected offset % instead of 752", ((cast(*void)(*instance.sampleRate)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine.sampleRate)) == 4, "ma_engine.sampleRate has unexpected size % instead of 4", size_of(type_of(ma_engine.sampleRate))); + assert(((cast(*void)(*instance.listenerCount)) - cast(*void)(*instance)) == 756, "ma_engine.listenerCount has unexpected offset % instead of 756", ((cast(*void)(*instance.listenerCount)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine.listenerCount)) == 4, "ma_engine.listenerCount has unexpected size % instead of 4", size_of(type_of(ma_engine.listenerCount))); + assert(((cast(*void)(*instance.listeners)) - cast(*void)(*instance)) == 760, "ma_engine.listeners has unexpected offset % instead of 760", ((cast(*void)(*instance.listeners)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine.listeners)) == 448, "ma_engine.listeners has unexpected size % instead of 448", size_of(type_of(ma_engine.listeners))); + assert(((cast(*void)(*instance.allocationCallbacks)) - cast(*void)(*instance)) == 1208, "ma_engine.allocationCallbacks has unexpected offset % instead of 1208", ((cast(*void)(*instance.allocationCallbacks)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine.allocationCallbacks)) == 32, "ma_engine.allocationCallbacks has unexpected size % instead of 32", size_of(type_of(ma_engine.allocationCallbacks))); + assert(((cast(*void)(*instance.ownsResourceManager)) - cast(*void)(*instance)) == 1240, "ma_engine.ownsResourceManager has unexpected offset % instead of 1240", ((cast(*void)(*instance.ownsResourceManager)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine.ownsResourceManager)) == 1, "ma_engine.ownsResourceManager has unexpected size % instead of 1", size_of(type_of(ma_engine.ownsResourceManager))); + assert(((cast(*void)(*instance.ownsDevice)) - cast(*void)(*instance)) == 1241, "ma_engine.ownsDevice has unexpected offset % instead of 1241", ((cast(*void)(*instance.ownsDevice)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine.ownsDevice)) == 1, "ma_engine.ownsDevice has unexpected size % instead of 1", size_of(type_of(ma_engine.ownsDevice))); + assert(((cast(*void)(*instance.inlinedSoundLock)) - cast(*void)(*instance)) == 1244, "ma_engine.inlinedSoundLock has unexpected offset % instead of 1244", ((cast(*void)(*instance.inlinedSoundLock)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine.inlinedSoundLock)) == 4, "ma_engine.inlinedSoundLock has unexpected size % instead of 4", size_of(type_of(ma_engine.inlinedSoundLock))); + assert(((cast(*void)(*instance.pInlinedSoundHead)) - cast(*void)(*instance)) == 1248, "ma_engine.pInlinedSoundHead has unexpected offset % instead of 1248", ((cast(*void)(*instance.pInlinedSoundHead)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine.pInlinedSoundHead)) == 8, "ma_engine.pInlinedSoundHead has unexpected size % instead of 8", size_of(type_of(ma_engine.pInlinedSoundHead))); + assert(((cast(*void)(*instance.inlinedSoundCount)) - cast(*void)(*instance)) == 1256, "ma_engine.inlinedSoundCount has unexpected offset % instead of 1256", ((cast(*void)(*instance.inlinedSoundCount)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine.inlinedSoundCount)) == 4, "ma_engine.inlinedSoundCount has unexpected size % instead of 4", size_of(type_of(ma_engine.inlinedSoundCount))); + assert(((cast(*void)(*instance.gainSmoothTimeInFrames)) - cast(*void)(*instance)) == 1260, "ma_engine.gainSmoothTimeInFrames has unexpected offset % instead of 1260", ((cast(*void)(*instance.gainSmoothTimeInFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine.gainSmoothTimeInFrames)) == 4, "ma_engine.gainSmoothTimeInFrames has unexpected size % instead of 4", size_of(type_of(ma_engine.gainSmoothTimeInFrames))); + assert(((cast(*void)(*instance.defaultVolumeSmoothTimeInPCMFrames)) - cast(*void)(*instance)) == 1264, "ma_engine.defaultVolumeSmoothTimeInPCMFrames has unexpected offset % instead of 1264", ((cast(*void)(*instance.defaultVolumeSmoothTimeInPCMFrames)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine.defaultVolumeSmoothTimeInPCMFrames)) == 4, "ma_engine.defaultVolumeSmoothTimeInPCMFrames has unexpected size % instead of 4", size_of(type_of(ma_engine.defaultVolumeSmoothTimeInPCMFrames))); + assert(((cast(*void)(*instance.monoExpansionMode)) - cast(*void)(*instance)) == 1268, "ma_engine.monoExpansionMode has unexpected offset % instead of 1268", ((cast(*void)(*instance.monoExpansionMode)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine.monoExpansionMode)) == 4, "ma_engine.monoExpansionMode has unexpected size % instead of 4", size_of(type_of(ma_engine.monoExpansionMode))); + assert(((cast(*void)(*instance.onProcess)) - cast(*void)(*instance)) == 1272, "ma_engine.onProcess has unexpected offset % instead of 1272", ((cast(*void)(*instance.onProcess)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine.onProcess)) == 8, "ma_engine.onProcess has unexpected size % instead of 8", size_of(type_of(ma_engine.onProcess))); + assert(((cast(*void)(*instance.pProcessUserData)) - cast(*void)(*instance)) == 1280, "ma_engine.pProcessUserData has unexpected offset % instead of 1280", ((cast(*void)(*instance.pProcessUserData)) - cast(*void)(*instance))); + assert(size_of(type_of(ma_engine.pProcessUserData)) == 8, "ma_engine.pProcessUserData has unexpected size % instead of 8", size_of(type_of(ma_engine.pProcessUserData))); + assert(size_of(ma_engine) == 1288, "ma_engine has size % instead of 1288", size_of(ma_engine)); + } +} + diff --git a/windows/miniaudio.lib b/windows/miniaudio.lib new file mode 100644 index 0000000000000000000000000000000000000000..e752797404c3f7d2bfe36905ec80d0912f9f13ff GIT binary patch literal 2697456 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

dlqw@ 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%0DL?{}f!i!fddx$nM{eViVK))Jj;dKEit@ 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%0DD~Esq8P{0g9m%S4A9L^#QFQpd_8D4 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�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

!>7RXvv|+6poPA)pn=s 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

!C^K;O5#)u}H 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

jZSV`I7E3C0DDwe1f3_jJga(_l71JK96* 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

&dUYprw0 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

( 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

2BHJY@z-tgu)W5%%-}CnERe$+%~| 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

{=7E5}1`HNa5o3@m%yI6XA_ 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 z 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 b{tD?U|2DsS#q0!7#qIAwG5vb@{h$92>I