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
7a742c49
Commit
7a742c49
authored
Jul 05, 2022
by
Claire Girka
Committed by
Alexandre Julliard
Jul 06, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winepulse: Return device-specific values for GetDevicePeriod.
parent
227724e0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
73 additions
and
5 deletions
+73
-5
mmdevdrv.c
dlls/winepulse.drv/mmdevdrv.c
+8
-5
pulse.c
dlls/winepulse.drv/pulse.c
+55
-0
unixlib.h
dlls/winepulse.drv/unixlib.h
+10
-0
No files found.
dlls/winepulse.drv/mmdevdrv.c
View file @
7a742c49
...
...
@@ -1165,6 +1165,7 @@ static HRESULT WINAPI AudioClient_GetMixFormat(IAudioClient3 *iface,
static
HRESULT
WINAPI
AudioClient_GetDevicePeriod
(
IAudioClient3
*
iface
,
REFERENCE_TIME
*
defperiod
,
REFERENCE_TIME
*
minperiod
)
{
struct
get_device_period_params
params
;
ACImpl
*
This
=
impl_from_IAudioClient3
(
iface
);
TRACE
(
"(%p)->(%p, %p)
\n
"
,
This
,
defperiod
,
minperiod
);
...
...
@@ -1172,12 +1173,14 @@ static HRESULT WINAPI AudioClient_GetDevicePeriod(IAudioClient3 *iface,
if
(
!
defperiod
&&
!
minperiod
)
return
E_POINTER
;
if
(
defperiod
)
*
defperiod
=
pulse_config
.
modes
[
This
->
dataflow
==
eCapture
].
def_period
;
if
(
minperiod
)
*
minperiod
=
pulse_config
.
modes
[
This
->
dataflow
==
eCapture
].
min_
period
;
params
.
flow
=
This
->
dataflow
;
params
.
pulse_name
=
This
->
pulse_name
;
params
.
def_period
=
defperiod
;
params
.
min_period
=
min
period
;
return
S_OK
;
pulse_call
(
get_device_period
,
&
params
);
return
params
.
result
;
}
static
HRESULT
WINAPI
AudioClient_Start
(
IAudioClient3
*
iface
)
...
...
dlls/winepulse.drv/pulse.c
View file @
7a742c49
...
...
@@ -1075,6 +1075,29 @@ static ULONG_PTR zero_bits(void)
#endif
}
static
HRESULT
get_device_period_helper
(
EDataFlow
flow
,
const
char
*
pulse_name
,
REFERENCE_TIME
*
def
,
REFERENCE_TIME
*
min
)
{
struct
list
*
list
=
(
flow
==
eRender
)
?
&
g_phys_speakers
:
&
g_phys_sources
;
PhysDevice
*
dev
;
if
(
!
def
&&
!
min
)
{
return
E_POINTER
;
}
LIST_FOR_EACH_ENTRY
(
dev
,
list
,
PhysDevice
,
entry
)
{
if
(
strcmp
(
pulse_name
,
dev
->
pulse_name
))
continue
;
if
(
def
)
*
def
=
dev
->
def_period
;
if
(
min
)
*
min
=
dev
->
min_period
;
return
S_OK
;
}
return
E_FAIL
;
}
static
NTSTATUS
pulse_create_stream
(
void
*
args
)
{
struct
create_stream_params
*
params
=
args
;
...
...
@@ -2052,6 +2075,14 @@ static NTSTATUS pulse_get_mix_format(void *args)
return
STATUS_SUCCESS
;
}
static
NTSTATUS
pulse_get_device_period
(
void
*
args
)
{
struct
get_device_period_params
*
params
=
args
;
params
->
result
=
get_device_period_helper
(
params
->
flow
,
params
->
pulse_name
,
params
->
def_period
,
params
->
min_period
);
return
STATUS_SUCCESS
;
}
static
NTSTATUS
pulse_get_buffer_size
(
void
*
args
)
{
struct
get_buffer_size_params
*
params
=
args
;
...
...
@@ -2332,6 +2363,7 @@ const unixlib_entry_t __wine_unix_call_funcs[] =
pulse_get_capture_buffer
,
pulse_release_capture_buffer
,
pulse_get_mix_format
,
pulse_get_device_period
,
pulse_get_buffer_size
,
pulse_get_latency
,
pulse_get_current_padding
,
...
...
@@ -2507,6 +2539,28 @@ static NTSTATUS pulse_wow64_get_mix_format(void *args)
return
STATUS_SUCCESS
;
}
static
NTSTATUS
pulse_wow64_get_device_period
(
void
*
args
)
{
struct
{
PTR32
pulse_name
;
EDataFlow
flow
;
HRESULT
result
;
PTR32
def_period
;
PTR32
min_period
;
}
*
params32
=
args
;
struct
get_device_period_params
params
=
{
.
pulse_name
=
ULongToPtr
(
params32
->
pulse_name
),
.
flow
=
params32
->
flow
,
.
def_period
=
ULongToPtr
(
params32
->
def_period
),
.
min_period
=
ULongToPtr
(
params32
->
min_period
),
};
pulse_get_device_period
(
&
params
);
params32
->
result
=
params
.
result
;
return
STATUS_SUCCESS
;
}
static
NTSTATUS
pulse_wow64_get_buffer_size
(
void
*
args
)
{
struct
...
...
@@ -2734,6 +2788,7 @@ const unixlib_entry_t __wine_unix_call_wow64_funcs[] =
pulse_wow64_get_capture_buffer
,
pulse_release_capture_buffer
,
pulse_wow64_get_mix_format
,
pulse_wow64_get_device_period
,
pulse_wow64_get_buffer_size
,
pulse_wow64_get_latency
,
pulse_wow64_get_current_padding
,
...
...
dlls/winepulse.drv/unixlib.h
View file @
7a742c49
...
...
@@ -146,6 +146,15 @@ struct get_mix_format_params
HRESULT
result
;
};
struct
get_device_period_params
{
const
char
*
pulse_name
;
EDataFlow
flow
;
HRESULT
result
;
REFERENCE_TIME
*
def_period
;
REFERENCE_TIME
*
min_period
;
};
struct
get_buffer_size_params
{
stream_handle
stream
;
...
...
@@ -250,6 +259,7 @@ enum unix_funcs
get_capture_buffer
,
release_capture_buffer
,
get_mix_format
,
get_device_period
,
get_buffer_size
,
get_latency
,
get_current_padding
,
...
...
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