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
546a6208
Commit
546a6208
authored
Jun 21, 2023
by
Davide Beatrici
Committed by
Alexandre Julliard
Jun 23, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winecoreaudio: Use create_stream's channel count in AudioClient's Initialize.
parent
b115d90b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
8 deletions
+9
-8
coreaudio.c
dlls/winecoreaudio.drv/coreaudio.c
+3
-1
mmdevdrv.c
dlls/winecoreaudio.drv/mmdevdrv.c
+6
-7
No files found.
dlls/winecoreaudio.drv/coreaudio.c
View file @
546a6208
...
...
@@ -776,8 +776,10 @@ end:
if
(
stream
->
unit
)
AudioComponentInstanceDispose
(
stream
->
unit
);
free
(
stream
->
fmt
);
free
(
stream
);
}
else
}
else
{
*
params
->
channel_count
=
params
->
fmt
->
nChannels
;
*
params
->
stream
=
(
stream_handle
)(
UINT_PTR
)
stream
;
}
return
STATUS_SUCCESS
;
}
...
...
dlls/winecoreaudio.drv/mmdevdrv.c
View file @
546a6208
...
...
@@ -545,7 +545,7 @@ static HRESULT WINAPI AudioClient_Initialize(IAudioClient3 *iface,
ACImpl
*
This
=
impl_from_IAudioClient3
(
iface
);
struct
create_stream_params
params
;
stream_handle
stream
;
UINT32
i
;
UINT32
i
,
channel_count
;
WCHAR
*
name
;
TRACE
(
"(%p)->(%x, %lx, %s, %s, %p, %s)
\n
"
,
This
,
mode
,
flags
,
...
...
@@ -593,7 +593,7 @@ static HRESULT WINAPI AudioClient_Initialize(IAudioClient3 *iface,
params
.
duration
=
duration
;
params
.
period
=
period
;
params
.
fmt
=
fmt
;
params
.
channel_count
=
NULL
;
params
.
channel_count
=
&
channel_count
;
params
.
stream
=
&
stream
;
UNIX_CALL
(
create_stream
,
&
params
);
...
...
@@ -605,18 +605,16 @@ static HRESULT WINAPI AudioClient_Initialize(IAudioClient3 *iface,
return
params
.
result
;
}
This
->
channel_count
=
fmt
->
nChannels
;
This
->
vols
=
HeapAlloc
(
GetProcessHeap
(),
0
,
This
->
channel_count
*
sizeof
(
float
));
This
->
vols
=
HeapAlloc
(
GetProcessHeap
(),
0
,
channel_count
*
sizeof
(
float
));
if
(
!
This
->
vols
){
params
.
result
=
E_OUTOFMEMORY
;
goto
end
;
}
for
(
i
=
0
;
i
<
This
->
channel_count
;
++
i
)
for
(
i
=
0
;
i
<
channel_count
;
++
i
)
This
->
vols
[
i
]
=
1
.
f
;
params
.
result
=
get_audio_session
(
sessionguid
,
This
->
parent
,
fmt
->
nChannels
,
&
This
->
session
);
params
.
result
=
get_audio_session
(
sessionguid
,
This
->
parent
,
channel_count
,
&
This
->
session
);
if
(
FAILED
(
params
.
result
))
goto
end
;
list_add_tail
(
&
This
->
session
->
clients
,
&
This
->
entry
);
...
...
@@ -628,6 +626,7 @@ end:
This
->
vols
=
NULL
;
}
else
{
This
->
stream
=
stream
;
This
->
channel_count
=
channel_count
;
set_stream_volumes
(
This
);
}
...
...
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