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
d5749b45
Commit
d5749b45
authored
Mar 07, 2005
by
Vincent Béron
Committed by
Alexandre Julliard
Mar 07, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make wineoss's mixer know about DST_HEADPHONES, DST_LINE and
DST_VOICEIN. Use proper constants instead of 0 and 1.
parent
01239efa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
mixer.c
dlls/winmm/wineoss/mixer.c
+5
-2
No files found.
dlls/winmm/wineoss/mixer.c
View file @
d5749b45
...
...
@@ -860,11 +860,14 @@ static DWORD MIX_GetLineInfo(WORD wDevID, LPMIXERLINEW lpMl, DWORD fdwInfo)
getComponentType
(
lpMl
->
dwComponentType
));
switch
(
lpMl
->
dwComponentType
)
{
case
MIXERLINE_COMPONENTTYPE_DST_HEADPHONES
:
case
MIXERLINE_COMPONENTTYPE_DST_SPEAKERS
:
ret
=
MIX_GetLineInfoDst
(
mix
,
lpMl
,
0
);
ret
=
MIX_GetLineInfoDst
(
mix
,
lpMl
,
LINEID_SPEAKER
);
break
;
case
MIXERLINE_COMPONENTTYPE_DST_LINE
:
case
MIXERLINE_COMPONENTTYPE_DST_VOICEIN
:
case
MIXERLINE_COMPONENTTYPE_DST_WAVEIN
:
ret
=
MIX_GetLineInfoDst
(
mix
,
lpMl
,
1
);
ret
=
MIX_GetLineInfoDst
(
mix
,
lpMl
,
LINEID_RECORD
);
break
;
case
MIXERLINE_COMPONENTTYPE_SRC_SYNTHESIZER
:
ret
=
MIX_GetLineInfoSrc
(
mix
,
lpMl
,
SOUND_MIXER_SYNTH
,
0
);
...
...
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