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
d8b098db
Commit
d8b098db
authored
May 09, 2023
by
Davide Beatrici
Committed by
Alexandre Julliard
May 10, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winecoreaudio: Use mmdevapi's AudioStreamVolume.
parent
844cf46d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
158 deletions
+2
-158
Makefile.in
dlls/winecoreaudio.drv/Makefile.in
+1
-0
mmdevdrv.c
dlls/winecoreaudio.drv/mmdevdrv.c
+1
-158
No files found.
dlls/winecoreaudio.drv/Makefile.in
View file @
d8b098db
...
...
@@ -6,6 +6,7 @@ DELAYIMPORTS = winmm
UNIX_LIBS
=
$(COREAUDIO_LIBS)
C_SRCS
=
\
client.c
\
coreaudio.c
\
coremidi.c
\
midi.c
\
...
...
dlls/winecoreaudio.drv/mmdevdrv.c
View file @
d8b098db
...
...
@@ -58,7 +58,7 @@ extern const IAudioSessionControl2Vtbl AudioSessionControl2_Vtbl;
extern
const
ISimpleAudioVolumeVtbl
SimpleAudioVolume_Vtbl
;
static
const
IAudioClockVtbl
AudioClock_Vtbl
;
static
const
IAudioClock2Vtbl
AudioClock2_Vtbl
;
static
const
IAudioStreamVolumeVtbl
AudioStreamVolume_Vtbl
;
extern
const
IAudioStreamVolumeVtbl
AudioStreamVolume_Vtbl
;
extern
const
IChannelAudioVolumeVtbl
ChannelAudioVolume_Vtbl
;
static
WCHAR
drv_key_devicesW
[
256
];
...
...
@@ -110,11 +110,6 @@ static inline ACImpl *impl_from_IAudioClock2(IAudioClock2 *iface)
return
CONTAINING_RECORD
(
iface
,
ACImpl
,
IAudioClock2_iface
);
}
static
inline
ACImpl
*
impl_from_IAudioStreamVolume
(
IAudioStreamVolume
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
ACImpl
,
IAudioStreamVolume_iface
);
}
BOOL
WINAPI
DllMain
(
HINSTANCE
dll
,
DWORD
reason
,
void
*
reserved
)
{
switch
(
reason
)
...
...
@@ -1450,158 +1445,6 @@ static AudioSessionWrapper *AudioSessionWrapper_Create(ACImpl *client)
return
ret
;
}
static
HRESULT
WINAPI
AudioStreamVolume_QueryInterface
(
IAudioStreamVolume
*
iface
,
REFIID
riid
,
void
**
ppv
)
{
TRACE
(
"(%p)->(%s, %p)
\n
"
,
iface
,
debugstr_guid
(
riid
),
ppv
);
if
(
!
ppv
)
return
E_POINTER
;
*
ppv
=
NULL
;
if
(
IsEqualIID
(
riid
,
&
IID_IUnknown
)
||
IsEqualIID
(
riid
,
&
IID_IAudioStreamVolume
))
*
ppv
=
iface
;
if
(
*
ppv
){
IUnknown_AddRef
((
IUnknown
*
)
*
ppv
);
return
S_OK
;
}
WARN
(
"Unknown interface %s
\n
"
,
debugstr_guid
(
riid
));
return
E_NOINTERFACE
;
}
static
ULONG
WINAPI
AudioStreamVolume_AddRef
(
IAudioStreamVolume
*
iface
)
{
ACImpl
*
This
=
impl_from_IAudioStreamVolume
(
iface
);
return
IAudioClient3_AddRef
(
&
This
->
IAudioClient3_iface
);
}
static
ULONG
WINAPI
AudioStreamVolume_Release
(
IAudioStreamVolume
*
iface
)
{
ACImpl
*
This
=
impl_from_IAudioStreamVolume
(
iface
);
return
IAudioClient3_Release
(
&
This
->
IAudioClient3_iface
);
}
static
HRESULT
WINAPI
AudioStreamVolume_GetChannelCount
(
IAudioStreamVolume
*
iface
,
UINT32
*
out
)
{
ACImpl
*
This
=
impl_from_IAudioStreamVolume
(
iface
);
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
out
);
if
(
!
out
)
return
E_POINTER
;
*
out
=
This
->
channel_count
;
return
S_OK
;
}
static
HRESULT
WINAPI
AudioStreamVolume_SetChannelVolume
(
IAudioStreamVolume
*
iface
,
UINT32
index
,
float
level
)
{
ACImpl
*
This
=
impl_from_IAudioStreamVolume
(
iface
);
TRACE
(
"(%p)->(%d, %f)
\n
"
,
This
,
index
,
level
);
if
(
level
<
0
.
f
||
level
>
1
.
f
)
return
E_INVALIDARG
;
if
(
index
>=
This
->
channel_count
)
return
E_INVALIDARG
;
sessions_lock
();
This
->
vols
[
index
]
=
level
;
set_stream_volumes
(
This
);
sessions_unlock
();
return
S_OK
;
}
static
HRESULT
WINAPI
AudioStreamVolume_GetChannelVolume
(
IAudioStreamVolume
*
iface
,
UINT32
index
,
float
*
level
)
{
ACImpl
*
This
=
impl_from_IAudioStreamVolume
(
iface
);
TRACE
(
"(%p)->(%d, %p)
\n
"
,
This
,
index
,
level
);
if
(
!
level
)
return
E_POINTER
;
if
(
index
>=
This
->
channel_count
)
return
E_INVALIDARG
;
*
level
=
This
->
vols
[
index
];
return
S_OK
;
}
static
HRESULT
WINAPI
AudioStreamVolume_SetAllVolumes
(
IAudioStreamVolume
*
iface
,
UINT32
count
,
const
float
*
levels
)
{
ACImpl
*
This
=
impl_from_IAudioStreamVolume
(
iface
);
UINT32
i
;
TRACE
(
"(%p)->(%d, %p)
\n
"
,
This
,
count
,
levels
);
if
(
!
levels
)
return
E_POINTER
;
if
(
count
!=
This
->
channel_count
)
return
E_INVALIDARG
;
sessions_lock
();
for
(
i
=
0
;
i
<
count
;
++
i
)
This
->
vols
[
i
]
=
levels
[
i
];
set_stream_volumes
(
This
);
sessions_unlock
();
return
S_OK
;
}
static
HRESULT
WINAPI
AudioStreamVolume_GetAllVolumes
(
IAudioStreamVolume
*
iface
,
UINT32
count
,
float
*
levels
)
{
ACImpl
*
This
=
impl_from_IAudioStreamVolume
(
iface
);
UINT32
i
;
TRACE
(
"(%p)->(%d, %p)
\n
"
,
This
,
count
,
levels
);
if
(
!
levels
)
return
E_POINTER
;
if
(
count
!=
This
->
channel_count
)
return
E_INVALIDARG
;
sessions_lock
();
for
(
i
=
0
;
i
<
count
;
++
i
)
levels
[
i
]
=
This
->
vols
[
i
];
sessions_unlock
();
return
S_OK
;
}
static
const
IAudioStreamVolumeVtbl
AudioStreamVolume_Vtbl
=
{
AudioStreamVolume_QueryInterface
,
AudioStreamVolume_AddRef
,
AudioStreamVolume_Release
,
AudioStreamVolume_GetChannelCount
,
AudioStreamVolume_SetChannelVolume
,
AudioStreamVolume_GetChannelVolume
,
AudioStreamVolume_SetAllVolumes
,
AudioStreamVolume_GetAllVolumes
};
HRESULT
WINAPI
AUDDRV_GetAudioSessionWrapper
(
const
GUID
*
guid
,
IMMDevice
*
device
,
AudioSessionWrapper
**
out
)
{
...
...
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