Skip to content

Commit

Permalink
dsoundaudio: rename dsound_open()
Browse files Browse the repository at this point in the history
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: Volker Rümelin <[email protected]>
Message-id: [email protected]
Message-Id: <[email protected]>
Signed-off-by: Gerd Hoffmann <[email protected]>
  • Loading branch information
Volker Rümelin authored and kraxel committed Jan 15, 2021
1 parent 401dcf0 commit 3c18e43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions audio/dsoundaudio.c
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ static void dsound_clear_sample (HWVoiceOut *hw, LPDIRECTSOUNDBUFFER dsb,
dsound_unlock_out (dsb, p1, p2, blen1, blen2);
}

static int dsound_open (dsound *s)
static int dsound_set_cooperative_level(dsound *s)
{
HRESULT hr;
HWND hwnd;
Expand Down Expand Up @@ -673,7 +673,7 @@ static void *dsound_audio_init(Audiodev *dev)
}
}

err = dsound_open (s);
err = dsound_set_cooperative_level(s);
if (err) {
dsound_audio_fini (s);
return NULL;
Expand Down

0 comments on commit 3c18e43

Please sign in to comment.