mirror of
https://github.com/mackron/miniaudio.git
synced 2026-04-22 00:06:59 +02:00
WASAPI: Add a missing field to ma_AudioClientProperties.
Public issue https://github.com/mackron/miniaudio/issues/1028
This commit is contained in:
+10
@@ -21811,11 +21811,21 @@ typedef enum
|
|||||||
MA_AudioCategory_Other = 0 /* <-- miniaudio is only caring about Other. */
|
MA_AudioCategory_Other = 0 /* <-- miniaudio is only caring about Other. */
|
||||||
} MA_AUDIO_STREAM_CATEGORY;
|
} MA_AUDIO_STREAM_CATEGORY;
|
||||||
|
|
||||||
|
typedef enum
|
||||||
|
{
|
||||||
|
MA_AUDCLNT_STREAMOPTIONS_NONE,
|
||||||
|
MA_AUDCLNT_STREAMOPTIONS_RAW,
|
||||||
|
MA_AUDCLNT_STREAMOPTIONS_MATCH_FORMAT,
|
||||||
|
MA_AUDCLNT_STREAMOPTIONS_AMBISONICS,
|
||||||
|
MA_AUDCLNT_STREAMOPTIONS_POST_VOLUME_LOOPBACK
|
||||||
|
} MA_AUDCLNT_STREAMOPTIONS;
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
ma_uint32 cbSize;
|
ma_uint32 cbSize;
|
||||||
BOOL bIsOffload;
|
BOOL bIsOffload;
|
||||||
MA_AUDIO_STREAM_CATEGORY eCategory;
|
MA_AUDIO_STREAM_CATEGORY eCategory;
|
||||||
|
MA_AUDCLNT_STREAMOPTIONS Options;
|
||||||
} ma_AudioClientProperties;
|
} ma_AudioClientProperties;
|
||||||
|
|
||||||
/* IUnknown */
|
/* IUnknown */
|
||||||
|
|||||||
Reference in New Issue
Block a user