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
e0dcc2cd
Commit
e0dcc2cd
authored
Mar 28, 2011
by
Jörg Höhle
Committed by
Alexandre Julliard
Mar 30, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winmm: PlaySound concurrency cleanup.
parent
a0dbd846
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
9 deletions
+13
-9
playsound.c
dlls/winmm/playsound.c
+13
-9
No files found.
dlls/winmm/playsound.c
View file @
e0dcc2cd
...
...
@@ -44,7 +44,6 @@ typedef struct tagWINE_PLAYSOUND
LPCWSTR
pszSound
;
HMODULE
hMod
;
DWORD
fdwSound
;
HANDLE
hThread
;
struct
tagWINE_PLAYSOUND
*
lpNext
;
}
WINE_PLAYSOUND
;
...
...
@@ -215,7 +214,6 @@ static void PlaySound_Free(WINE_PLAYSOUND* wps)
if
(
PlaySoundList
==
NULL
)
SetEvent
(
psLastEvent
);
LeaveCriticalSection
(
&
WINMM_cs
);
if
(
wps
->
bAlloc
)
HeapFree
(
GetProcessHeap
(),
0
,
(
void
*
)
wps
->
pszSound
);
if
(
wps
->
hThread
)
CloseHandle
(
wps
->
hThread
);
HeapFree
(
GetProcessHeap
(),
0
,
wps
);
}
...
...
@@ -258,7 +256,8 @@ static WINE_PLAYSOUND* PlaySound_Alloc(const void* pszSound, HMODULE hmod,
return
wps
;
oom_error:
PlaySound_Free
(
wps
);
if
(
wps
->
bAlloc
)
HeapFree
(
GetProcessHeap
(),
0
,
(
void
*
)
wps
->
pszSound
);
HeapFree
(
GetProcessHeap
(),
0
,
wps
);
return
NULL
;
}
...
...
@@ -377,6 +376,8 @@ static DWORD WINAPI proc_PlaySound(LPVOID arg)
(
LPSTR
)
&
mmckInfo
.
ckid
,
mmckInfo
.
fccType
,
mmckInfo
.
cksize
);
lpWaveFormat
=
HeapAlloc
(
GetProcessHeap
(),
0
,
mmckInfo
.
cksize
);
if
(
!
lpWaveFormat
)
goto
errCleanUp
;
if
(
mmioRead
(
hmmio
,
(
HPSTR
)
lpWaveFormat
,
mmckInfo
.
cksize
)
<
sizeof
(
PCMWAVEFORMAT
))
goto
errCleanUp
;
...
...
@@ -398,6 +399,8 @@ static DWORD WINAPI proc_PlaySound(LPVOID arg)
(
LPSTR
)
&
mmckInfo
.
ckid
,
mmckInfo
.
fccType
,
mmckInfo
.
cksize
);
s
.
hEvent
=
CreateEventW
(
NULL
,
FALSE
,
FALSE
,
NULL
);
if
(
!
s
.
hEvent
)
goto
errCleanUp
;
if
(
waveOutOpen
(
&
hWave
,
WAVE_MAPPER
,
lpWaveFormat
,
(
DWORD_PTR
)
PlaySound_Callback
,
(
DWORD_PTR
)
&
s
,
CALLBACK_FUNCTION
)
!=
MMSYSERR_NOERROR
)
...
...
@@ -407,6 +410,8 @@ static DWORD WINAPI proc_PlaySound(LPVOID arg)
bufsize
=
(((
lpWaveFormat
->
nAvgBytesPerSec
/
3
)
-
1
)
/
lpWaveFormat
->
nBlockAlign
+
1
)
*
lpWaveFormat
->
nBlockAlign
;
waveHdr
=
HeapAlloc
(
GetProcessHeap
(),
0
,
2
*
sizeof
(
WAVEHDR
)
+
2
*
bufsize
);
if
(
!
waveHdr
)
goto
errCleanUp
;
waveHdr
[
0
].
lpData
=
(
char
*
)
waveHdr
+
2
*
sizeof
(
WAVEHDR
);
waveHdr
[
1
].
lpData
=
(
char
*
)
waveHdr
+
2
*
sizeof
(
WAVEHDR
)
+
bufsize
;
waveHdr
[
0
].
dwUser
=
waveHdr
[
1
].
dwUser
=
0L
;
...
...
@@ -458,10 +463,10 @@ static DWORD WINAPI proc_PlaySound(LPVOID arg)
errCleanUp:
TRACE
(
"Done playing=%s => %s!
\n
"
,
debugstr_w
(
wps
->
pszSound
),
bRet
?
"ok"
:
"ko"
);
CloseHandle
(
s
.
hEvent
);
HeapFree
(
GetProcessHeap
(),
0
,
waveHdr
);
HeapFree
(
GetProcessHeap
(),
0
,
lpWaveFormat
);
if
(
hWave
)
while
(
waveOutClose
(
hWave
)
==
WAVERR_STILLPLAYING
)
Sleep
(
100
);
CloseHandle
(
s
.
hEvent
);
HeapFree
(
GetProcessHeap
(),
0
,
waveHdr
);
if
(
hmmio
)
mmioClose
(
hmmio
,
0
);
PlaySound_Free
(
wps
);
...
...
@@ -509,16 +514,15 @@ static BOOL MULTIMEDIA_PlaySound(const void* pszSound, HMODULE hmod, DWORD fdwSo
PlaySoundList
=
wps
;
LeaveCriticalSection
(
&
WINMM_cs
);
if
(
!
pszSound
||
(
fdwSound
&
SND_PURGE
)
)
return
TRUE
;
if
(
!
wps
)
return
TRUE
;
if
(
fdwSound
&
SND_ASYNC
)
{
DWORD
id
;
HANDLE
handle
;
wps
->
bLoop
=
(
fdwSound
&
SND_LOOP
)
?
TRUE
:
FALSE
;
if
((
handle
=
CreateThread
(
NULL
,
0
,
proc_PlaySound
,
wps
,
0
,
&
id
))
!=
0
)
{
wps
->
hThread
=
handle
;
if
((
handle
=
CreateThread
(
NULL
,
0
,
proc_PlaySound
,
wps
,
0
,
NULL
))
!=
0
)
{
SetThreadPriority
(
handle
,
THREAD_PRIORITY_TIME_CRITICAL
);
CloseHandle
(
handle
);
return
TRUE
;
}
}
...
...
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