Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
38c21c33
Commit
38c21c33
authored
Dec 15, 2020
by
Biswapriyo Nath
Committed by
Alexandre Julliard
Dec 15, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add AMBISONICS_PARAMS structure in audioclient.idl.
Signed-off-by:
Biswapriyo Nath
<
nathbappai@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e0a2692a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
0 deletions
+28
-0
audioclient.idl
include/audioclient.idl
+28
-0
No files found.
include/audioclient.idl
View file @
38c21c33
...
...
@@ -333,6 +333,34 @@ interface IAudioStreamVolume : IUnknown
);
}
typedef enum AMBISONICS_TYPE
{
AMBISONICS_TYPE_FULL3D = 0x0,
} AMBISONICS_TYPE;
typedef enum AMBISONICS_CHANNEL_ORDERING
{
AMBISONICS_CHANNEL_ORDERING_ACN = 0x0,
} AMBISONICS_CHANNEL_ORDERING;
typedef enum AMBISONICS_NORMALIZATION
{
AMBISONICS_NORMALIZATION_SN3D = 0x0,
AMBISONICS_NORMALIZATION_N3D = 0x1,
} AMBISONICS_NORMALIZATION;
typedef struct AMBISONICS_PARAMS
{
UINT32 u32Size;
UINT32 u32Version;
AMBISONICS_TYPE u32Type;
AMBISONICS_CHANNEL_ORDERING u32ChannelOrdering;
AMBISONICS_NORMALIZATION u32Normalization;
UINT32 u32Order;
UINT32 u32NumChannels;
UINT32 *pu32ChannelMap;
} AMBISONICS_PARAMS;
[
local,
pointer_default(unique),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment