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
f639c4df
Commit
f639c4df
authored
Oct 15, 2009
by
Ken Thomases
Committed by
Alexandre Julliard
Oct 16, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winecoreaudio: Quiet a noisy FIXME.
parent
fc3808e5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
audiounit.c
dlls/winecoreaudio.drv/audiounit.c
+6
-2
No files found.
dlls/winecoreaudio.drv/audiounit.c
View file @
f639c4df
...
...
@@ -133,7 +133,9 @@ int AudioUnit_InitializeWithStreamDescription(AudioUnit au, AudioStreamBasicDesc
int
AudioUnit_SetVolume
(
AudioUnit
au
,
float
left
,
float
right
)
{
OSStatus
err
=
noErr
;
FIXME
(
"independent left/right volume not implemented (%f, %f)
\n
"
,
left
,
right
);
static
int
once
;
if
(
!
once
++
)
FIXME
(
"independent left/right volume not implemented (%f, %f)
\n
"
,
left
,
right
);
err
=
AudioUnitSetParameter
(
au
,
kHALOutputParam_Volume
,
kAudioUnitParameterFlag_Output
,
0
,
left
,
0
);
...
...
@@ -148,7 +150,9 @@ int AudioUnit_SetVolume(AudioUnit au, float left, float right)
int
AudioUnit_GetVolume
(
AudioUnit
au
,
float
*
left
,
float
*
right
)
{
OSStatus
err
=
noErr
;
FIXME
(
"independent left/right volume not implemented
\n
"
);
static
int
once
;
if
(
!
once
++
)
FIXME
(
"independent left/right volume not implemented
\n
"
);
err
=
AudioUnitGetParameter
(
au
,
kHALOutputParam_Volume
,
kAudioUnitParameterFlag_Output
,
0
,
left
);
if
(
err
!=
noErr
)
...
...
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