Skip to content
Snippets Groups Projects
Commit 3c18e431 authored by Volker Rümelin's avatar Volker Rümelin Committed by Gerd Hoffmann
Browse files

dsoundaudio: rename dsound_open()


Rename dsound_open() to dsound_set_cooperative_level(). The
only task of that function is to set the cooperative level for
DirectSound.

Signed-off-by: default avatarVolker Rümelin <vr_qemu@t-online.de>
Message-id: 9315afe5-5958-c0b4-ea1e-14769511a9d5@t-online.de
Message-Id: <20210110100239.27588-21-vr_qemu@t-online.de>
Signed-off-by: default avatarGerd Hoffmann <kraxel@redhat.com>
parent 401dcf05
No related branches found
No related tags found
No related merge requests found
...@@ -342,7 +342,7 @@ static void dsound_clear_sample (HWVoiceOut *hw, LPDIRECTSOUNDBUFFER dsb, ...@@ -342,7 +342,7 @@ static void dsound_clear_sample (HWVoiceOut *hw, LPDIRECTSOUNDBUFFER dsb,
dsound_unlock_out (dsb, p1, p2, blen1, blen2); dsound_unlock_out (dsb, p1, p2, blen1, blen2);
} }
static int dsound_open (dsound *s) static int dsound_set_cooperative_level(dsound *s)
{ {
HRESULT hr; HRESULT hr;
HWND hwnd; HWND hwnd;
...@@ -673,7 +673,7 @@ static void *dsound_audio_init(Audiodev *dev) ...@@ -673,7 +673,7 @@ static void *dsound_audio_init(Audiodev *dev)
} }
} }
err = dsound_open (s); err = dsound_set_cooperative_level(s);
if (err) { if (err) {
dsound_audio_fini (s); dsound_audio_fini (s);
return NULL; return NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment