ao 0.1.1 → 0.1.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c07abbba5f6f0dc4cca877799669dd553f0e73751a440be4588dfbb462bb1c3c
4
- data.tar.gz: f69f94c3c5f11a25b97c1bebd696585205bc1480399dd1d77de50ea878073da0
3
+ metadata.gz: 453cbe5045fb3355237c6ac508bb22f7945035fae1c068ddc370beecb2d282d0
4
+ data.tar.gz: 9a3385722ad42cc9007157cd6ca4305c37b7692ce2d0b26da9dd5deacdc4da90
5
5
  SHA512:
6
- metadata.gz: 9da6728f16278eb7308e6136a3bd779783daa9f7eeba0f64a90cfe3b62fe18bdfb2821572f3d1169ba55670d940b4e744444fc1f5f75e9241156e76bbec557ef
7
- data.tar.gz: e2f0a1aa74e2971f171cb7a4c316e6942ef3a0c72169954e4782132225f92a237fb6689e7972bcf59a0ffbf52753109c65fc04cc211d5134e067ad779c0991d5
6
+ metadata.gz: 1bf39b9ab09d450dff5c79dd57f7a934c3218700dddf38474b05c099637cd9c52a8180b509464fe179353d70839865154adecd030bf848b92ca2b7f5e64af834
7
+ data.tar.gz: 213ab51a9dede88944bf1629307c752a6ee3aba29e7c6a875b5e7342ae3d2937bf4763bf5eb80a5b5db7f7f62f39640cf63d9efb71abf33a881981d794fe7041
@@ -85,7 +85,7 @@ Init_outputc(void)
85
85
  cAO_DeviceData = rb_define_class_under(cAO_Live, "DeviceData", rb_cData);
86
86
 
87
87
  /* library initialize & shutdown */
88
- rb_define_private_method(cAO_Live, "initialize", rao_open_live, 7);
88
+ rb_define_private_method(cAO_Live, "initialize", rao_open_live, 8);
89
89
 
90
90
  /* device setup */
91
91
  rb_define_method(cAO_Live, "close", rao_close, 0);
@@ -100,7 +100,7 @@ Init_outputc(void)
100
100
  * オーディオファイル出力機能をサポートするクラス。
101
101
  */
102
102
  cAO_File = rb_define_class_under(cAudio, "FileOutputC", cAO_Live);
103
- rb_define_private_method(cAO_File, "initialize", rao_open_file, 9);
103
+ rb_define_private_method(cAO_File, "initialize", rao_open_file, 10);
104
104
 
105
105
  init_exception();
106
106
  init_info();
@@ -11,7 +11,7 @@ class Audio::LiveOutput < Audio::LiveOutputC
11
11
  Audio::Info::FMT_NATIVE,
12
12
  matrix: nil, options: nil, thread: nil)
13
13
  ao = super(driver_id, bits, rate, channels,
14
- byte_format, matrix, options)
14
+ byte_format, matrix, options, thread)
15
15
  if block_given?
16
16
  begin
17
17
  yield ao
@@ -33,7 +33,7 @@ class Audio::FileOutput < Audio::FileOutputC
33
33
  matrix: nil, options: nil, thread: nil)
34
34
  ao = super(driver_id, filename, overwrite,
35
35
  bits, rate, channels, byte_format,
36
- matrix, options)
36
+ matrix, options, thread)
37
37
  if block_given?
38
38
  begin
39
39
  yield ao
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ao
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Akito Miura
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-17 00:00:00.000000000 Z
11
+ date: 2018-01-18 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: simple & cross platform audio output library(libao binding http://http://xiph.org/ao/)
14
14
  email: phenomer@g.hachune.net