one-k-rmov 0.2.7 → 0.2.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/CHANGELOG +3 -0
  2. data/Rakefile +1 -1
  3. data/ext/track.c +12 -1
  4. data/rmov.gemspec +4 -4
  5. metadata +3 -3
data/CHANGELOG CHANGED
@@ -1,3 +1,6 @@
1
+ 0.2.8 (April 23, 2009)
2
+ * Adds support for kAudioChannelLayoutTag_SMPTE_DTV audio layoutTag / ordering
3
+
1
4
  0.2.7 (March 12, 2009)
2
5
  * adds aspect_ratio to Track
3
6
 
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
  require 'rake'
3
3
  require 'echoe'
4
4
 
5
- Echoe.new('rmov', '0.2.7') do |p|
5
+ Echoe.new('rmov', '0.2.8') do |p|
6
6
  p.summary = "Ruby wrapper for the QuickTime C API."
7
7
  p.description = "Ruby wrapper for the QuickTime C API. Updates by 1K include exposing some movie properties such as codec and audio channel descriptions"
8
8
  p.url = "http://github.com/one-k/rmov"
data/ext/track.c CHANGED
@@ -554,7 +554,18 @@ static VALUE track_get_audio_channel_map(VALUE obj)
554
554
  ADD_CHANNEL(channels, channel, "Right");
555
555
  break;
556
556
 
557
- case kAudioChannelLayoutTag_MatrixStereo :
557
+ case kAudioChannelLayoutTag_MatrixStereo:
558
+ ADD_CHANNEL(channels, channel, "LeftTotal");
559
+ ADD_CHANNEL(channels, channel, "RightTotal");
560
+ break;
561
+
562
+ case kAudioChannelLayoutTag_SMPTE_DTV:
563
+ ADD_CHANNEL(channels, channel, "Left");
564
+ ADD_CHANNEL(channels, channel, "Right");
565
+ ADD_CHANNEL(channels, channel, "Center");
566
+ ADD_CHANNEL(channels, channel, "LFEScreen");
567
+ ADD_CHANNEL(channels, channel, "LeftSurround");
568
+ ADD_CHANNEL(channels, channel, "RightSurround");
558
569
  ADD_CHANNEL(channels, channel, "LeftTotal");
559
570
  ADD_CHANNEL(channels, channel, "RightTotal");
560
571
  break;
data/rmov.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{rmov}
5
- s.version = "0.2.7"
5
+ s.version = "0.2.8"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Ryan Bates, with updates by 1K Studios, LLC"]
9
- s.date = %q{2009-03-12}
9
+ s.date = %q{2009-04-23}
10
10
  s.description = %q{Ruby wrapper for the QuickTime C API. Updates by 1K include exposing some movie properties such as codec and audio channel descriptions}
11
11
  s.email = %q{ryan (at) railscasts (dot) com}
12
12
  s.extensions = ["ext/extconf.rb"]
@@ -17,12 +17,12 @@ Gem::Specification.new do |s|
17
17
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Rmov", "--main", "README.rdoc"]
18
18
  s.require_paths = ["lib", "ext"]
19
19
  s.rubyforge_project = %q{rmov}
20
- s.rubygems_version = %q{1.3.1}
20
+ s.rubygems_version = %q{1.3.2}
21
21
  s.summary = %q{Ruby wrapper for the QuickTime C API.}
22
22
 
23
23
  if s.respond_to? :specification_version then
24
24
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
25
- s.specification_version = 2
25
+ s.specification_version = 3
26
26
 
27
27
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
28
28
  else
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: one-k-rmov
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.7
4
+ version: 0.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Bates, with updates by 1K Studios, LLC
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-03-12 00:00:00 -07:00
12
+ date: 2009-04-23 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -93,7 +93,7 @@ requirements: []
93
93
  rubyforge_project: rmov
94
94
  rubygems_version: 1.2.0
95
95
  signing_key:
96
- specification_version: 2
96
+ specification_version: 3
97
97
  summary: Ruby wrapper for the QuickTime C API.
98
98
  test_files: []
99
99