hornetseye-alsa 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +1 -1
- data/ext/alsaoutput.cc +1 -1
- metadata +2 -2
data/Rakefile
CHANGED
data/ext/alsaoutput.cc
CHANGED
@@ -28,7 +28,7 @@ AlsaOutput::AlsaOutput( const string &pcmName, unsigned int rate,
|
|
28
28
|
snd_pcm_hw_params_t *hwParams;
|
29
29
|
snd_pcm_hw_params_alloca( &hwParams );
|
30
30
|
int err = snd_pcm_open( &m_pcmHandle, m_pcmName.c_str(), SND_PCM_STREAM_PLAYBACK,
|
31
|
-
|
31
|
+
0 );// SND_PCM_NONBLOCK
|
32
32
|
ERRORMACRO( err >= 0, Error, , "Error opening PCM device \"" << m_pcmName
|
33
33
|
<< "\": " << snd_strerror( err ) );
|
34
34
|
err = snd_pcm_hw_params_any( m_pcmHandle, hwParams );
|