Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
1e95db23
Commit
1e95db23
authored
Mar 15, 2015
by
Mark Harmstone
Committed by
Vitaly Lipatov
Jul 30, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dsound: Add EAX v1 constants and structs.
parent
5c30f2e3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
90 additions
and
0 deletions
+90
-0
dsound_eax.h
dlls/dsound/dsound_eax.h
+89
-0
dsound_private.h
dlls/dsound/dsound_private.h
+1
-0
No files found.
dlls/dsound/dsound_eax.h
0 → 100644
View file @
1e95db23
/*
* Copyright (c) 2015 Mark Harmstone
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef DSOUND_EAX_H_DEFINED
#define DSOUND_EAX_H_DEFINED
#ifdef __cplusplus
extern
"C"
{
#endif
DEFINE_GUID
(
DSPROPSETID_EAX_ReverbProperties
,
0x4a4e6fc1
,
0xc341
,
0x11d1
,
0xb7
,
0x3a
,
0x44
,
0x45
,
0x53
,
0x54
,
0x00
,
0x00
);
DEFINE_GUID
(
DSPROPSETID_EAXBUFFER_ReverbProperties
,
0x4a4e6fc0
,
0xc341
,
0x11d1
,
0xb7
,
0x3a
,
0x44
,
0x45
,
0x53
,
0x54
,
0x00
,
0x00
);
typedef
enum
{
DSPROPERTY_EAX_ALL
,
DSPROPERTY_EAX_ENVIRONMENT
,
DSPROPERTY_EAX_VOLUME
,
DSPROPERTY_EAX_DECAYTIME
,
DSPROPERTY_EAX_DAMPING
}
DSPROPERTY_EAX_REVERBPROPERTY
;
typedef
struct
{
unsigned
long
environment
;
float
fVolume
;
float
fDecayTime_sec
;
float
fDamping
;
}
EAX_REVERBPROPERTIES
;
enum
{
EAX_ENVIRONMENT_GENERIC
,
EAX_ENVIRONMENT_PADDEDCELL
,
EAX_ENVIRONMENT_ROOM
,
EAX_ENVIRONMENT_BATHROOM
,
EAX_ENVIRONMENT_LIVINGROOM
,
EAX_ENVIRONMENT_STONEROOM
,
EAX_ENVIRONMENT_AUDITORIUM
,
EAX_ENVIRONMENT_CONCERTHALL
,
EAX_ENVIRONMENT_CAVE
,
EAX_ENVIRONMENT_ARENA
,
EAX_ENVIRONMENT_HANGAR
,
EAX_ENVIRONMENT_CARPETEDHALLWAY
,
EAX_ENVIRONMENT_HALLWAY
,
EAX_ENVIRONMENT_STONECORRIDOR
,
EAX_ENVIRONMENT_ALLEY
,
EAX_ENVIRONMENT_FOREST
,
EAX_ENVIRONMENT_CITY
,
EAX_ENVIRONMENT_MOUNTAINS
,
EAX_ENVIRONMENT_QUARRY
,
EAX_ENVIRONMENT_PLAIN
,
EAX_ENVIRONMENT_PARKINGLOT
,
EAX_ENVIRONMENT_SEWERPIPE
,
EAX_ENVIRONMENT_UNDERWATER
,
EAX_ENVIRONMENT_DRUGGED
,
EAX_ENVIRONMENT_DIZZY
,
EAX_ENVIRONMENT_PSYCHOTIC
,
EAX_ENVIRONMENT_COUNT
};
typedef
enum
{
DSPROPERTY_EAXBUFFER_ALL
,
DSPROPERTY_EAXBUFFER_REVERBMIX
}
DSPROPERTY_EAXBUFFER_REVERBPROPERTY
;
typedef
struct
{
float
fMix
;
}
EAXBUFFER_REVERBPROPERTIES
;
#define EAX_REVERBMIX_USEDISTANCE -1.0f
#ifdef __cplusplus
}
#endif
#endif
dlls/dsound/dsound_private.h
View file @
1e95db23
...
...
@@ -29,6 +29,7 @@
#include "mediaobj.h"
#include "mmsystem.h"
#include "uuids.h"
#include "dsound_eax.h"
#include "wine/list.h"
...
...
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