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
1874a170
Commit
1874a170
authored
Jun 07, 2023
by
Davide Beatrici
Committed by
Alexandre Julliard
Jun 07, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winecoreaudio: Use mmdevapi's AudioClient's Start.
parent
32683df5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
38 deletions
+2
-38
mmdevdrv.c
dlls/winecoreaudio.drv/mmdevdrv.c
+2
-38
No files found.
dlls/winecoreaudio.drv/mmdevdrv.c
View file @
1874a170
...
...
@@ -777,43 +777,7 @@ static HRESULT WINAPI AudioClient_GetDevicePeriod(IAudioClient3 *iface,
return
params
.
result
;
}
static
DWORD
WINAPI
ca_timer_thread
(
void
*
user
)
{
struct
timer_loop_params
params
;
ACImpl
*
This
=
user
;
params
.
stream
=
This
->
stream
;
SetThreadDescription
(
GetCurrentThread
(),
L"winecoreaudio_timer_loop"
);
UNIX_CALL
(
timer_loop
,
&
params
);
return
0
;
}
static
HRESULT
WINAPI
AudioClient_Start
(
IAudioClient3
*
iface
)
{
ACImpl
*
This
=
impl_from_IAudioClient3
(
iface
);
struct
start_params
params
;
TRACE
(
"(%p)
\n
"
,
This
);
sessions_lock
();
if
(
!
This
->
stream
)
{
sessions_unlock
();
return
AUDCLNT_E_NOT_INITIALIZED
;
}
params
.
stream
=
This
->
stream
;
UNIX_CALL
(
start
,
&
params
);
if
(
SUCCEEDED
(
params
.
result
)
&&
!
This
->
timer_thread
)
{
This
->
timer_thread
=
CreateThread
(
NULL
,
0
,
ca_timer_thread
,
This
,
0
,
NULL
);
SetThreadPriority
(
This
->
timer_thread
,
THREAD_PRIORITY_TIME_CRITICAL
);
}
sessions_unlock
();
return
params
.
result
;
}
extern
HRESULT
WINAPI
client_Start
(
IAudioClient3
*
iface
);
extern
HRESULT
WINAPI
client_Stop
(
IAudioClient3
*
iface
);
...
...
@@ -858,7 +822,7 @@ static const IAudioClient3Vtbl AudioClient3_Vtbl =
AudioClient_IsFormatSupported
,
AudioClient_GetMixFormat
,
AudioClient_GetDevicePeriod
,
AudioC
lient_Start
,
c
lient_Start
,
client_Stop
,
client_Reset
,
client_SetEventHandle
,
...
...
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