audio_stream 3.3.1 → 3.3.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f9a71bf8ae0557aa738fba37ec4012370b7c4547c0d70ae6f92fa0e650c9ccfa
4
- data.tar.gz: c38edfff8d4467ce9a55721d5f14e79c531f6277612bcd05daa60a10894a5226
3
+ metadata.gz: 1b69fd98d701aaba159d25fe0bc82fcb7e5b32feae3cda4619828af71b743d94
4
+ data.tar.gz: 35d108a674d5f927dd837b815af5d1ca47fcf160ec6ca8235691d958694b689f
5
5
  SHA512:
6
- metadata.gz: 6ba0e9f8bb7d349f574c97c70411d072cf4b3342755cdc9c3ccaae68bdb31c3a8e73dccab4b6893dd2ac0c5f981d0551a72fa4cbee8b525ca7c863388840e250
7
- data.tar.gz: c1ce52d16e9024363b3a460e31cfbb30188724f1dc19859e6834b8e8d80d5d7430b1ca4fa0bd7ae1d0a985eab798c82bc4f7a541bc36d2770be2fa023d1f4551
6
+ metadata.gz: db32a11e833955d1a6b74f3dd0bd5008ae25019ecb7c125a0512b25f2af9dd845da867f15c3c942a33b82385c375a6e1c6c09dde2b89d15d554160bfa79253dc
7
+ data.tar.gz: 7b916c7c7c31d120e5e0026896a8cd8f8a2ab256e859dd26b392a4c8577cf8f21c840b70826e1ddf9ff54fdc453ebf1ba28d4a0a1f56a9ccf3148a01af2637a0
@@ -68,37 +68,37 @@ module AudioStream
68
68
  end
69
69
 
70
70
 
71
- SYNC_64 = sync(480 * 64)
72
- SYNC_32 = sync(480 * 32)
73
- SYNC_16 = sync(480 * 16)
74
- SYNC_8 = sync(480 * 8)
75
- SYNC_6 = sync(480 * 6)
76
- SYNC_4 = sync(480 * 4)
77
- SYNC_3 = sync(480 * 3)
78
- SYNC_2 = sync(480 * 2)
79
- SYNC_7_4 = sync(480 * 7 / 4)
80
- SYNC_6_4 = sync(480 * 6 / 4)
81
- SYNC_5_4 = sync(480 * 5 / 4)
82
- SYNC_1 = sync(480 * 1)
83
- SYNC_3_4 = sync(480 * 3 / 4)
84
- SYNC_1_2 = sync(480 * 1 / 2)
85
- SYNC_1_4D = sync(480 * 1 / 4 * 3 / 2)
86
- SYNC_1_4 = sync(480 * 1 / 4)
87
- SYNC_1_4T = sync(480 * 1 / 4 * 2 / 3)
88
- SYNC_1_8D = sync(480 * 1 / 8 * 3 / 2)
89
- SYNC_1_8 = sync(480 * 1 / 8)
90
- SYNC_1_8T = sync(480 * 1 / 8 * 2 / 3)
91
- SYNC_1_16D = sync(480 * 1 / 16 * 3 / 2)
92
- SYNC_1_16 = sync(480 * 1 / 16)
93
- SYNC_1_16T = sync(480 * 1 / 16 * 2 / 3)
94
- SYNC_1_32D = sync(480 * 1 / 32 * 3 / 2)
95
- SYNC_1_32 = sync(480 * 1 / 32)
96
- SYNC_1_32T = sync(480 * 1 / 32 * 2 / 3)
97
- SYNC_1_64D = sync(480 * 1 / 64 * 3 / 2)
98
- SYNC_1_64 = sync(480 * 1 / 64)
99
- SYNC_1_64T = sync(480 * 1 / 64 * 2 / 3)
100
- SYNC_1_128D = sync(480 * 1 / 128 * 3 / 2)
101
- SYNC_1_128 = sync(480 * 1 / 128)
102
- SYNC_1_128T = sync(480 * 1 / 128 * 2 / 3)
71
+ SYNC_64 = sync(480 * 4 * 64)
72
+ SYNC_32 = sync(480 * 4 * 32)
73
+ SYNC_16 = sync(480 * 4 * 16)
74
+ SYNC_8 = sync(480 * 4 * 8)
75
+ SYNC_6 = sync(480 * 4 * 6)
76
+ SYNC_4 = sync(480 * 4 * 4)
77
+ SYNC_3 = sync(480 * 4 * 3)
78
+ SYNC_2 = sync(480 * 4 * 2)
79
+ SYNC_7_4 = sync(480 * 4 * 7 / 4)
80
+ SYNC_6_4 = sync(480 * 4 * 6 / 4)
81
+ SYNC_5_4 = sync(480 * 4 * 5 / 4)
82
+ SYNC_1 = sync(480 * 4 * 1)
83
+ SYNC_3_4 = sync(480 * 4 * 3 / 4)
84
+ SYNC_1_2 = sync(480 * 4 * 1 / 2)
85
+ SYNC_1_4D = sync(480 * 4 * 1 / 4 * 3 / 2)
86
+ SYNC_1_4 = sync(480 * 4 * 1 / 4)
87
+ SYNC_1_4T = sync(480 * 4 * 1 / 4 * 2 / 3)
88
+ SYNC_1_8D = sync(480 * 4 * 1 / 8 * 3 / 2)
89
+ SYNC_1_8 = sync(480 * 4 * 1 / 8)
90
+ SYNC_1_8T = sync(480 * 4 * 1 / 8 * 2 / 3)
91
+ SYNC_1_16D = sync(480 * 4 * 1 / 16 * 3 / 2)
92
+ SYNC_1_16 = sync(480 * 4 * 1 / 16)
93
+ SYNC_1_16T = sync(480 * 4 * 1 / 16 * 2 / 3)
94
+ SYNC_1_32D = sync(480 * 4 * 1 / 32 * 3 / 2)
95
+ SYNC_1_32 = sync(480 * 4 * 1 / 32)
96
+ SYNC_1_32T = sync(480 * 4 * 1 / 32 * 2 / 3)
97
+ SYNC_1_64D = sync(480 * 4 * 1 / 64 * 3 / 2)
98
+ SYNC_1_64 = sync(480 * 4 * 1 / 64)
99
+ SYNC_1_64T = sync(480 * 4 * 1 / 64 * 2 / 3)
100
+ SYNC_1_128D = sync(480 * 4 * 1 / 128 * 3 / 2)
101
+ SYNC_1_128 = sync(480 * 4 * 1 / 128)
102
+ SYNC_1_128T = sync(480 * 4 * 1 / 128 * 2 / 3)
103
103
  end
104
104
  end
@@ -1,3 +1,3 @@
1
1
  module AudioStream
2
- VERSION = "3.3.1"
2
+ VERSION = "3.3.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: audio_stream
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.1
4
+ version: 3.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yoshida Tetsuya