mirror of https://github.com/adamdruppe/arsd.git
little things
This commit is contained in:
parent
41dbab24fb
commit
82a0c4720b
|
@ -29,7 +29,7 @@
|
|||
Authors:
|
||||
Originally written in C by Alexey Khokholov, ported to D by ketmar, very slightly modified by me.
|
||||
+/
|
||||
module arsd.nukedopl3 /*is aliced*/;
|
||||
module arsd.nukedopl3;
|
||||
nothrow @trusted @nogc:
|
||||
|
||||
public:
|
||||
|
|
|
@ -2990,8 +2990,11 @@ snd_pcm_t* openAlsaPcm(snd_pcm_stream_t direction, int SampleRate, int channels,
|
|||
|
||||
/* Open PCM and initialize hardware */
|
||||
|
||||
// import arsd.core;
|
||||
// writeln("before");
|
||||
if (auto err = snd_pcm_open(&handle, cardName.toStringz, direction, 0))
|
||||
throw new AlsaException("open device", err);
|
||||
// writeln("after");
|
||||
scope(failure)
|
||||
snd_pcm_close(handle);
|
||||
|
||||
|
@ -3055,8 +3058,10 @@ snd_pcm_t* openAlsaPcm(snd_pcm_stream_t direction, int SampleRate, int channels,
|
|||
|
||||
/* finish setup */
|
||||
|
||||
// writeln("prepare");
|
||||
if (auto err = snd_pcm_prepare(handle))
|
||||
throw new AlsaException("prepare", err);
|
||||
// writeln("done");
|
||||
|
||||
assert(handle !is null);
|
||||
return handle;
|
||||
|
|
Loading…
Reference in New Issue