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
3ba0eed0
Commit
3ba0eed0
authored
Jan 21, 2009
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jan 21, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winenas.drv: Remove superfluous pointer casts.
parent
2724adae
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
audio.c
dlls/winenas.drv/audio.c
+7
-7
No files found.
dlls/winenas.drv/audio.c
View file @
3ba0eed0
...
...
@@ -334,8 +334,8 @@ static DWORD bytes_to_mmtime(LPMMTIME lpTime, DWORD position,
static void volume_effect16(void *bufin, void* bufout, int length, int left,
int right, int nChannels)
{
short *d_out =
(short *)
bufout;
short *d_in =
(short *)
bufin;
short *d_out = bufout;
short *d_in = bufin;
int i, v;
/*
...
...
@@ -360,8 +360,8 @@ static void volume_effect16(void *bufin, void* bufout, int length, int left,
static void volume_effect8(void *bufin, void* bufout, int length, int left,
int right, int nChannels)
{
char *d_out =
(char *)
bufout;
char *d_in =
(char *)
bufin;
char *d_out = bufout;
char *d_in = bufin;
int i, v;
/*
...
...
@@ -841,8 +841,8 @@ static void wodPlayer_ProcessMessages(WINE_WAVEOUT* wwo)
*/
static
DWORD
CALLBACK
wodPlayer
(
LPVOID
pmt
)
{
WORD
uDevID
=
(
DWORD
)
pmt
;
WINE_WAVEOUT
*
wwo
=
(
WINE_WAVEOUT
*
)
&
WOutDev
[
uDevID
];
WORD
uDevID
=
(
DWORD
)
pmt
;
WINE_WAVEOUT
*
wwo
=
&
WOutDev
[
uDevID
];
wwo
->
state
=
WINE_WS_STOPPED
;
SetEvent
(
wwo
->
hStartUpEvent
);
...
...
@@ -1337,7 +1337,7 @@ static int nas_open(WINE_WAVEOUT* wwo) {
static
AuBool
event_handler
(
AuServer
*
aud
,
AuEvent
*
ev
,
AuEventHandlerRec
*
hnd
)
{
WINE_WAVEOUT
*
wwo
=
(
WINE_WAVEOUT
*
)
hnd
->
data
;
WINE_WAVEOUT
*
wwo
=
hnd
->
data
;
switch
(
ev
->
type
)
{
case
AuEventTypeElementNotify
:
{
...
...
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