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
cdc8d971
Commit
cdc8d971
authored
Aug 27, 2007
by
Maarten Lankhorst
Committed by
Alexandre Julliard
Aug 27, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winealsa: Make SetFormat work better with new behavior of dsound.
parent
7850caa7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
18 deletions
+21
-18
dsoutput.c
dlls/winealsa.drv/dsoutput.c
+21
-18
No files found.
dlls/winealsa.drv/dsoutput.c
View file @
cdc8d971
...
...
@@ -73,6 +73,7 @@ struct IDsDriverImpl
/* IDsDriverImpl fields */
IDsDriverBufferImpl
*
primary
;
UINT
wDevID
;
DWORD
forceformat
;
};
struct
IDsDriverBufferImpl
...
...
@@ -292,6 +293,9 @@ static HRESULT WINAPI IDsDriverBufferImpl_Lock(PIDSDRIVERBUFFER iface,
/* **** */
EnterCriticalSection
(
&
This
->
pcm_crst
);
if
(
dwFlags
&
DSBLOCK_ENTIREBUFFER
)
dwWriteLen
=
This
->
mmap_buflen_bytes
;
if
(
dwWriteLen
>
This
->
mmap_buflen_bytes
||
dwWritePosition
>=
This
->
mmap_buflen_bytes
)
{
/* **** */
...
...
@@ -368,7 +372,7 @@ static HRESULT WINAPI IDsDriverBufferImpl_Unlock(PIDSDRIVERBUFFER iface,
return
DS_OK
;
}
static
HRESULT
SetFormat
(
IDsDriverBufferImpl
*
This
,
LPWAVEFORMATEX
pwfx
,
BOOL
forced
)
static
HRESULT
SetFormat
(
IDsDriverBufferImpl
*
This
,
LPWAVEFORMATEX
pwfx
)
{
snd_pcm_t
*
pcm
=
NULL
;
snd_pcm_hw_params_t
*
hw_params
=
This
->
hw_params
;
...
...
@@ -387,11 +391,7 @@ static HRESULT SetFormat(IDsDriverBufferImpl *This, LPWAVEFORMATEX pwfx, BOOL fo
default:
FIXME
(
"Unsupported bpp: %d
\n
"
,
pwfx
->
wBitsPerSample
);
return
DSERR_GENERIC
;
}
/* **** */
EnterCriticalSection
(
&
This
->
pcm_crst
);
err
=
snd_pcm_open
(
&
pcm
,
WOutDev
[
This
->
drv
->
wDevID
].
pcmname
,
SND_PCM_STREAM_PLAYBACK
,
SND_PCM_NONBLOCK
);
if
(
err
<
0
)
{
if
(
errno
!=
EBUSY
||
!
This
->
pcm
)
...
...
@@ -427,13 +427,18 @@ static HRESULT SetFormat(IDsDriverBufferImpl *This, LPWAVEFORMATEX pwfx, BOOL fo
* side effects, which may include: Less granular pointer, changing buffer sizes, etc
*/
#if SND_LIB_VERSION >= 0x010009
snd_pcm_hw_params_set_rate_resample
(
pcm
,
hw_params
,
0
&&
forced
);
snd_pcm_hw_params_set_rate_resample
(
pcm
,
hw_params
,
0
);
#endif
err
=
snd_pcm_hw_params_set_rate_near
(
pcm
,
hw_params
,
&
rate
,
NULL
);
if
(
err
<
0
)
{
rate
=
pwfx
->
nSamplesPerSec
;
WARN
(
"Could not set rate
\n
"
);
goto
err
;
}
if
(
!
ALSA_NearMatch
(
rate
,
pwfx
->
nSamplesPerSec
))
if
(
!
ALSA_NearMatch
(
rate
,
pwfx
->
nSamplesPerSec
)
&&
(
This
->
drv
->
forceformat
++
))
{
WARN
(
"Could not set exact rate %d, instead %d, bombing out
\n
"
,
pwfx
->
nSamplesPerSec
,
rate
);
goto
err
;
}
else
if
(
!
ALSA_NearMatch
(
rate
,
pwfx
->
nSamplesPerSec
))
{
WARN
(
"Could not set sound rate to %d, but instead to %d
\n
"
,
pwfx
->
nSamplesPerSec
,
rate
);
pwfx
->
nSamplesPerSec
=
rate
;
...
...
@@ -463,12 +468,8 @@ static HRESULT SetFormat(IDsDriverBufferImpl *This, LPWAVEFORMATEX pwfx, BOOL fo
snd_pcm_close
(
This
->
pcm
);
}
This
->
pcm
=
pcm
;
snd_pcm_prepare
(
This
->
pcm
);
DSDB_CreateMMAP
(
This
);
/* **** */
LeaveCriticalSection
(
&
This
->
pcm_crst
);
return
S_OK
;
err:
...
...
@@ -483,8 +484,6 @@ static HRESULT SetFormat(IDsDriverBufferImpl *This, LPWAVEFORMATEX pwfx, BOOL fo
if
(
This
->
pcm
)
snd_pcm_hw_params_current
(
This
->
pcm
,
This
->
hw_params
);
/* **** */
LeaveCriticalSection
(
&
This
->
pcm_crst
);
return
DSERR_BADFORMAT
;
}
...
...
@@ -495,11 +494,15 @@ static HRESULT WINAPI IDsDriverBufferImpl_SetFormat(PIDSDRIVERBUFFER iface, LPWA
TRACE
(
"(%p, %p)
\n
"
,
iface
,
pwfx
);
hr
=
SetFormat
(
This
,
pwfx
,
TRUE
);
/* **** */
EnterCriticalSection
(
&
This
->
pcm_crst
);
This
->
drv
->
forceformat
=
FALSE
;
hr
=
SetFormat
(
This
,
pwfx
);
/* **** */
LeaveCriticalSection
(
&
This
->
pcm_crst
);
if
(
hr
==
S_OK
)
/* Buffer size / Location changed, so tell dsound to recreate */
return
DSERR_BUFFERLOST
;
if
(
hr
==
DS_OK
)
return
S_FALSE
;
return
hr
;
}
...
...
@@ -778,7 +781,7 @@ static HRESULT WINAPI IDsDriverImpl_CreateSoundBuffer(PIDSDRIVER iface,
(
*
ippdsdb
)
->
pcm_crst
.
DebugInfo
->
Spare
[
0
]
=
(
DWORD_PTR
)(
__FILE__
": ALSA_DSOUTPUT.pcm_crst"
);
/* SetFormat has to re-initialize pcm here anyway */
err
=
SetFormat
(
*
ippdsdb
,
pwfx
,
FALSE
);
err
=
SetFormat
(
*
ippdsdb
,
pwfx
);
if
(
FAILED
(
err
))
{
WARN
(
"Error occurred: %08x
\n
"
,
err
);
...
...
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