hornetseye-alsa 0.3.0 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. data/Rakefile +1 -1
  2. data/ext/alsaoutput.cc +1 -1
  3. metadata +2 -2
data/Rakefile CHANGED
@@ -7,7 +7,7 @@ require 'rake/loaders/makefile'
7
7
  require 'rbconfig'
8
8
 
9
9
  PKG_NAME = 'hornetseye-alsa'
10
- PKG_VERSION = '0.3.0'
10
+ PKG_VERSION = '0.3.1'
11
11
  CFG = RbConfig::CONFIG
12
12
  CXX = ENV[ 'CXX' ] || 'g++'
13
13
  RB_FILES = FileList[ 'lib/**/*.rb' ]
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
- SND_PCM_NONBLOCK );
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 );
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 3
8
- - 0
9
- version: 0.3.0
8
+ - 1
9
+ version: 0.3.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Jan Wedekind