pcm 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f117f6089c520e300934e1280e67f433df787086
4
+ data.tar.gz: a76299b9b022c97dae79724900ba8aa88c4cbf19
5
+ SHA512:
6
+ metadata.gz: 39becf8d34c1bb89092e9aedf9d20db11801bee1df89cb65e4ecf5e07309d9febcef1d4f19eacfaa0b7328d5d9949db54e65520c2df7a51eb68975cf9ce7b07d
7
+ data.tar.gz: 3351e8f7a2baf144dd732a2c9abe9174a26131754eecfbabebb37a2817ffb9a9540059667ad967813cad87c6946123f5091a7f895e9cc1272e7f559e2bb445ce
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
@@ -0,0 +1,5 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.2
4
+ before_install: gem install bundler -v 1.10.5
5
+ script: bundle exec rake build test
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in pcm.gemspec
4
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Christopher Dolan
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,42 @@
1
+ # PCM
2
+
3
+ PCM Audio Library
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem "pcm"
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install pcm
20
+
21
+ ## Usage
22
+
23
+ ```ruby
24
+ require "pcm"
25
+
26
+ channels = [
27
+ [-1.0],
28
+ [-1.0, +0.25],
29
+ [-1.0, +0.50, +0.75]
30
+ ]
31
+
32
+ puts PCM.mix(*channels) #=> [-1.0, +0.25, +0.25]
33
+ ```
34
+
35
+ ## Contributing
36
+
37
+ Bug reports and pull requests are welcome!
38
+
39
+ ## License
40
+
41
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
42
+
@@ -0,0 +1,16 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs = %w(lib test)
6
+ t.test_files = FileList["test/**/*_test.rb"]
7
+ end
8
+
9
+ task :default => :test
10
+ require "rake/extensiontask"
11
+
12
+ task :build => :compile
13
+
14
+ Rake::ExtensionTask.new("pcm") do |ext|
15
+ ext.lib_dir = "lib/pcm"
16
+ end
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "pcm"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,3 @@
1
+ require "mkmf"
2
+
3
+ create_makefile("pcm/pcm")
@@ -0,0 +1,75 @@
1
+ #include "pcm.h"
2
+
3
+ static long
4
+ max_array_len(VALUE arrays)
5
+ {
6
+ long i, len, max;
7
+ VALUE array;
8
+
9
+ max = 0;
10
+ len = RARRAY_LEN(arrays);
11
+
12
+ for (i = 0; i < len; i++) {
13
+ array = rb_ary_entry(arrays, i);
14
+
15
+ if (RARRAY_LEN(array) > max)
16
+ max = RARRAY_LEN(array);
17
+ }
18
+
19
+ return max;
20
+ }
21
+
22
+ static VALUE
23
+ mix_samples(VALUE channels, long offset)
24
+ {
25
+ long i, num_channels;
26
+ double mix, value;
27
+ VALUE channel;
28
+
29
+ num_channels = RARRAY_LEN(channels);
30
+ mix = 0.0;
31
+
32
+ for (i = 0L; i < num_channels; i++) {
33
+ channel = rb_ary_entry(channels, i);
34
+
35
+ if (offset < RARRAY_LEN(channel))
36
+ value = NUM2DBL(rb_ary_entry(channel, offset));
37
+ else
38
+ value = 0.0;
39
+
40
+ mix += value / ((double)num_channels);
41
+ }
42
+
43
+ return DBL2NUM(mix);
44
+ }
45
+
46
+ static VALUE
47
+ rb_mix(VALUE self, VALUE channels)
48
+ {
49
+ long i, num_channels, num_samples;
50
+ VALUE mix;
51
+
52
+ num_channels = RARRAY_LEN(channels);
53
+ if (num_channels <= 0)
54
+ return Qnil;
55
+
56
+ num_samples = max_array_len(channels);
57
+ if (num_samples == 0)
58
+ return rb_ary_new();
59
+
60
+ mix = rb_ary_new2(num_samples);
61
+
62
+ for (i = 0; i < num_samples; i++)
63
+ rb_ary_store(mix, i, mix_samples(channels, i));
64
+
65
+ return mix;
66
+ }
67
+
68
+ void Init_pcm(void)
69
+ {
70
+ VALUE pcm_module;
71
+
72
+ pcm_module = rb_define_module("PCM");
73
+
74
+ rb_define_module_function(pcm_module, "mix", rb_mix, -2);
75
+ }
@@ -0,0 +1,6 @@
1
+ #ifndef _PCM_H_
2
+ #define _PCM_H_
3
+
4
+ #include "ruby.h"
5
+
6
+ #endif /* _PCM_H_ */
@@ -0,0 +1,2 @@
1
+ require "pcm/version"
2
+ require "pcm/pcm"
@@ -0,0 +1,3 @@
1
+ module PCM
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "pcm/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "pcm"
8
+ spec.version = PCM::VERSION
9
+ spec.authors = ["Christopher Dolan"]
10
+ spec.email = ["chris@codingstream.org"]
11
+
12
+ spec.summary = "PCM Audio Library"
13
+ spec.homepage = "https://github.com/cdolan/pcm"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
+ spec.bindir = "exe"
18
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
+ spec.require_paths = ["lib"]
20
+ spec.extensions = ["ext/pcm/extconf.rb"]
21
+
22
+ spec.add_development_dependency "bundler", "~> 1.10"
23
+ spec.add_development_dependency "rake", "~> 10.0"
24
+ spec.add_development_dependency "rake-compiler", "~> 0.9"
25
+ spec.add_development_dependency "minitest", "~> 5.7"
26
+ end
metadata ADDED
@@ -0,0 +1,115 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pcm
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Christopher Dolan
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-07-18 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.10'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.10'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake-compiler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0.9'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '0.9'
55
+ - !ruby/object:Gem::Dependency
56
+ name: minitest
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '5.7'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '5.7'
69
+ description:
70
+ email:
71
+ - chris@codingstream.org
72
+ executables: []
73
+ extensions:
74
+ - ext/pcm/extconf.rb
75
+ extra_rdoc_files: []
76
+ files:
77
+ - ".gitignore"
78
+ - ".travis.yml"
79
+ - Gemfile
80
+ - LICENSE.txt
81
+ - README.md
82
+ - Rakefile
83
+ - bin/console
84
+ - bin/setup
85
+ - ext/pcm/extconf.rb
86
+ - ext/pcm/pcm.c
87
+ - ext/pcm/pcm.h
88
+ - lib/pcm.rb
89
+ - lib/pcm/version.rb
90
+ - pcm.gemspec
91
+ homepage: https://github.com/cdolan/pcm
92
+ licenses:
93
+ - MIT
94
+ metadata: {}
95
+ post_install_message:
96
+ rdoc_options: []
97
+ require_paths:
98
+ - lib
99
+ required_ruby_version: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ required_rubygems_version: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - ">="
107
+ - !ruby/object:Gem::Version
108
+ version: '0'
109
+ requirements: []
110
+ rubyforge_project:
111
+ rubygems_version: 2.4.8
112
+ signing_key:
113
+ specification_version: 4
114
+ summary: PCM Audio Library
115
+ test_files: []