Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
69b4dfbc
Commit
69b4dfbc
authored
May 16, 2023
by
Davide Beatrici
Committed by
Alexandre Julliard
May 16, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winealsa: Use mmdevapi's AudioRenderClient.
parent
4f5913e0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
89 deletions
+1
-89
mmdevdrv.c
dlls/winealsa.drv/mmdevdrv.c
+1
-89
No files found.
dlls/winealsa.drv/mmdevdrv.c
View file @
69b4dfbc
...
@@ -70,7 +70,7 @@ static WCHAR drv_key_devicesW[256];
...
@@ -70,7 +70,7 @@ static WCHAR drv_key_devicesW[256];
static
const
WCHAR
guidW
[]
=
{
'g'
,
'u'
,
'i'
,
'd'
,
0
};
static
const
WCHAR
guidW
[]
=
{
'g'
,
'u'
,
'i'
,
'd'
,
0
};
static
const
IAudioClient3Vtbl
AudioClient3_Vtbl
;
static
const
IAudioClient3Vtbl
AudioClient3_Vtbl
;
static
const
IAudioRenderClientVtbl
AudioRenderClient_Vtbl
;
extern
const
IAudioRenderClientVtbl
AudioRenderClient_Vtbl
;
extern
const
IAudioCaptureClientVtbl
AudioCaptureClient_Vtbl
;
extern
const
IAudioCaptureClientVtbl
AudioCaptureClient_Vtbl
;
extern
const
IAudioSessionControl2Vtbl
AudioSessionControl2_Vtbl
;
extern
const
IAudioSessionControl2Vtbl
AudioSessionControl2_Vtbl
;
extern
const
ISimpleAudioVolumeVtbl
SimpleAudioVolume_Vtbl
;
extern
const
ISimpleAudioVolumeVtbl
SimpleAudioVolume_Vtbl
;
...
@@ -96,11 +96,6 @@ static inline ACImpl *impl_from_IAudioClient3(IAudioClient3 *iface)
...
@@ -96,11 +96,6 @@ static inline ACImpl *impl_from_IAudioClient3(IAudioClient3 *iface)
return
CONTAINING_RECORD
(
iface
,
ACImpl
,
IAudioClient3_iface
);
return
CONTAINING_RECORD
(
iface
,
ACImpl
,
IAudioClient3_iface
);
}
}
static
inline
ACImpl
*
impl_from_IAudioRenderClient
(
IAudioRenderClient
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
ACImpl
,
IAudioRenderClient_iface
);
}
BOOL
WINAPI
DllMain
(
HINSTANCE
dll
,
DWORD
reason
,
void
*
reserved
)
BOOL
WINAPI
DllMain
(
HINSTANCE
dll
,
DWORD
reason
,
void
*
reserved
)
{
{
switch
(
reason
)
switch
(
reason
)
...
@@ -1127,89 +1122,6 @@ static const IAudioClient3Vtbl AudioClient3_Vtbl =
...
@@ -1127,89 +1122,6 @@ static const IAudioClient3Vtbl AudioClient3_Vtbl =
AudioClient_InitializeSharedAudioStream
,
AudioClient_InitializeSharedAudioStream
,
};
};
static
HRESULT
WINAPI
AudioRenderClient_QueryInterface
(
IAudioRenderClient
*
iface
,
REFIID
riid
,
void
**
ppv
)
{
ACImpl
*
This
=
impl_from_IAudioRenderClient
(
iface
);
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_IAudioRenderClient
))
*
ppv
=
iface
;
else
if
(
IsEqualIID
(
riid
,
&
IID_IMarshal
))
return
IUnknown_QueryInterface
(
This
->
marshal
,
riid
,
ppv
);
if
(
*
ppv
){
IUnknown_AddRef
((
IUnknown
*
)
*
ppv
);
return
S_OK
;
}
WARN
(
"Unknown interface %s
\n
"
,
debugstr_guid
(
riid
));
return
E_NOINTERFACE
;
}
static
ULONG
WINAPI
AudioRenderClient_AddRef
(
IAudioRenderClient
*
iface
)
{
ACImpl
*
This
=
impl_from_IAudioRenderClient
(
iface
);
return
IAudioClient3_AddRef
(
&
This
->
IAudioClient3_iface
);
}
static
ULONG
WINAPI
AudioRenderClient_Release
(
IAudioRenderClient
*
iface
)
{
ACImpl
*
This
=
impl_from_IAudioRenderClient
(
iface
);
return
IAudioClient3_Release
(
&
This
->
IAudioClient3_iface
);
}
static
HRESULT
WINAPI
AudioRenderClient_GetBuffer
(
IAudioRenderClient
*
iface
,
UINT32
frames
,
BYTE
**
data
)
{
ACImpl
*
This
=
impl_from_IAudioRenderClient
(
iface
);
struct
get_render_buffer_params
params
;
TRACE
(
"(%p)->(%u, %p)
\n
"
,
This
,
frames
,
data
);
if
(
!
data
)
return
E_POINTER
;
*
data
=
NULL
;
params
.
stream
=
This
->
stream
;
params
.
frames
=
frames
;
params
.
data
=
data
;
ALSA_CALL
(
get_render_buffer
,
&
params
);
return
params
.
result
;
}
static
HRESULT
WINAPI
AudioRenderClient_ReleaseBuffer
(
IAudioRenderClient
*
iface
,
UINT32
written_frames
,
DWORD
flags
)
{
ACImpl
*
This
=
impl_from_IAudioRenderClient
(
iface
);
struct
release_render_buffer_params
params
;
TRACE
(
"(%p)->(%u, %lx)
\n
"
,
This
,
written_frames
,
flags
);
params
.
stream
=
This
->
stream
;
params
.
written_frames
=
written_frames
;
params
.
flags
=
flags
;
ALSA_CALL
(
release_render_buffer
,
&
params
);
return
params
.
result
;
}
static
const
IAudioRenderClientVtbl
AudioRenderClient_Vtbl
=
{
AudioRenderClient_QueryInterface
,
AudioRenderClient_AddRef
,
AudioRenderClient_Release
,
AudioRenderClient_GetBuffer
,
AudioRenderClient_ReleaseBuffer
};
static
AudioSessionWrapper
*
AudioSessionWrapper_Create
(
ACImpl
*
client
)
static
AudioSessionWrapper
*
AudioSessionWrapper_Create
(
ACImpl
*
client
)
{
{
AudioSessionWrapper
*
ret
;
AudioSessionWrapper
*
ret
;
...
...
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