gstreamer 0.90.6
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.
- data/ChangeLog +1157 -0
- data/README +33 -0
- data/Rakefile +15 -0
- data/ext/gstreamer/Makefile +162 -0
- data/ext/gstreamer/depend +5 -0
- data/ext/gstreamer/extconf.rb +63 -0
- data/ext/gstreamer/gst.so +0 -0
- data/ext/gstreamer/misc.c +62 -0
- data/ext/gstreamer/misc.o +0 -0
- data/ext/gstreamer/rbgst-bin.c +466 -0
- data/ext/gstreamer/rbgst-bin.o +0 -0
- data/ext/gstreamer/rbgst-buffer.c +365 -0
- data/ext/gstreamer/rbgst-buffer.o +0 -0
- data/ext/gstreamer/rbgst-bus.c +92 -0
- data/ext/gstreamer/rbgst-bus.o +0 -0
- data/ext/gstreamer/rbgst-caps.c +441 -0
- data/ext/gstreamer/rbgst-caps.o +0 -0
- data/ext/gstreamer/rbgst-child-proxy.c +33 -0
- data/ext/gstreamer/rbgst-child-proxy.o +0 -0
- data/ext/gstreamer/rbgst-clock.c +108 -0
- data/ext/gstreamer/rbgst-clock.o +0 -0
- data/ext/gstreamer/rbgst-element-factory.c +255 -0
- data/ext/gstreamer/rbgst-element-factory.o +0 -0
- data/ext/gstreamer/rbgst-element.c +1053 -0
- data/ext/gstreamer/rbgst-element.o +0 -0
- data/ext/gstreamer/rbgst-event.c +351 -0
- data/ext/gstreamer/rbgst-event.o +0 -0
- data/ext/gstreamer/rbgst-ghost-pad.c +42 -0
- data/ext/gstreamer/rbgst-ghost-pad.o +0 -0
- data/ext/gstreamer/rbgst-index-factory.c +67 -0
- data/ext/gstreamer/rbgst-index-factory.o +0 -0
- data/ext/gstreamer/rbgst-message.c +784 -0
- data/ext/gstreamer/rbgst-message.o +0 -0
- data/ext/gstreamer/rbgst-mini-object.c +220 -0
- data/ext/gstreamer/rbgst-mini-object.o +0 -0
- data/ext/gstreamer/rbgst-object.c +81 -0
- data/ext/gstreamer/rbgst-object.o +0 -0
- data/ext/gstreamer/rbgst-pad-template.c +124 -0
- data/ext/gstreamer/rbgst-pad-template.o +0 -0
- data/ext/gstreamer/rbgst-pad.c +338 -0
- data/ext/gstreamer/rbgst-pad.o +0 -0
- data/ext/gstreamer/rbgst-pipeline.c +90 -0
- data/ext/gstreamer/rbgst-pipeline.o +0 -0
- data/ext/gstreamer/rbgst-plugin-feature.c +134 -0
- data/ext/gstreamer/rbgst-plugin-feature.o +0 -0
- data/ext/gstreamer/rbgst-plugin.c +164 -0
- data/ext/gstreamer/rbgst-plugin.o +0 -0
- data/ext/gstreamer/rbgst-private.c +89 -0
- data/ext/gstreamer/rbgst-private.h +37 -0
- data/ext/gstreamer/rbgst-private.o +0 -0
- data/ext/gstreamer/rbgst-query.c +289 -0
- data/ext/gstreamer/rbgst-query.o +0 -0
- data/ext/gstreamer/rbgst-seek.c +36 -0
- data/ext/gstreamer/rbgst-seek.o +0 -0
- data/ext/gstreamer/rbgst-static-caps.c +49 -0
- data/ext/gstreamer/rbgst-static-caps.o +0 -0
- data/ext/gstreamer/rbgst-static-pad-template.c +64 -0
- data/ext/gstreamer/rbgst-static-pad-template.o +0 -0
- data/ext/gstreamer/rbgst-structure.c +300 -0
- data/ext/gstreamer/rbgst-structure.o +0 -0
- data/ext/gstreamer/rbgst-system-clock.c +45 -0
- data/ext/gstreamer/rbgst-system-clock.o +0 -0
- data/ext/gstreamer/rbgst-type-find-factory.c +124 -0
- data/ext/gstreamer/rbgst-type-find-factory.o +0 -0
- data/ext/gstreamer/rbgst-value.c +517 -0
- data/ext/gstreamer/rbgst-value.o +0 -0
- data/ext/gstreamer/rbgst-x-overlay.c +132 -0
- data/ext/gstreamer/rbgst-x-overlay.o +0 -0
- data/ext/gstreamer/rbgst.c +279 -0
- data/ext/gstreamer/rbgst.h +197 -0
- data/ext/gstreamer/rbgst.o +0 -0
- data/ext/gstreamer/rbgstclockentry.c +268 -0
- data/ext/gstreamer/rbgstclockentry.o +0 -0
- data/ext/gstreamer/rbgstformat.c +159 -0
- data/ext/gstreamer/rbgstformat.o +0 -0
- data/ext/gstreamer/rbgstindex.c +314 -0
- data/ext/gstreamer/rbgstindex.o +0 -0
- data/ext/gstreamer/rbgstindexentry.c +96 -0
- data/ext/gstreamer/rbgstindexentry.o +0 -0
- data/ext/gstreamer/rbgstparse.c +66 -0
- data/ext/gstreamer/rbgstparse.o +0 -0
- data/ext/gstreamer/rbgstquerytype.c +159 -0
- data/ext/gstreamer/rbgstquerytype.o +0 -0
- data/ext/gstreamer/rbgstregistry.c +278 -0
- data/ext/gstreamer/rbgstregistry.o +0 -0
- data/ext/gstreamer/rbgsttag.c +111 -0
- data/ext/gstreamer/rbgsttag.o +0 -0
- data/ext/gstreamer/rbgsttagsetter.c +50 -0
- data/ext/gstreamer/rbgsttagsetter.o +0 -0
- data/ext/gstreamer/rbgstxml.c +189 -0
- data/ext/gstreamer/rbgstxml.o +0 -0
- data/ext/gstreamer/ruby-gstreamer.pc +3 -0
- data/extconf.rb +49 -0
- data/lib/gst.rb +19 -0
- data/sample/audio-player.rb +54 -0
- data/sample/gst-inspect.rb +417 -0
- data/sample/media-type.rb +55 -0
- data/sample/media-type2.rb +268 -0
- data/sample/ogg-audio-player.rb +54 -0
- data/sample/type-find.rb +46 -0
- data/sample/video-player.rb +57 -0
- data/sample/xml-player.rb +60 -0
- data/test/gst-test-utils.rb +18 -0
- data/test/run-test.rb +25 -0
- data/test/test_bin.rb +167 -0
- data/test/test_buffer.rb +174 -0
- data/test/test_caps.rb +24 -0
- data/test/test_clock.rb +7 -0
- data/test/test_element.rb +87 -0
- data/test/test_element_factory.rb +28 -0
- data/test/test_event.rb +10 -0
- data/test/test_index_factory.rb +7 -0
- data/test/test_message.rb +191 -0
- data/test/test_mini_object.rb +38 -0
- data/test/test_object.rb +10 -0
- data/test/test_pad.rb +68 -0
- data/test/test_plugin.rb +6 -0
- data/test/test_plugin_feature.rb +20 -0
- data/test/test_seek.rb +17 -0
- data/test/test_static_caps.rb +18 -0
- data/test/test_static_pad_template.rb +16 -0
- data/test/test_structure.rb +159 -0
- data/test/test_thread_handling.rb +58 -0
- data/test/test_type_find_factory.rb +8 -0
- data/test/test_value.rb +69 -0
- metadata +208 -0
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
class TestStructure < Test::Unit::TestCase
|
|
2
|
+
def test_empty_new
|
|
3
|
+
assert_raise(ArgumentError) do
|
|
4
|
+
Gst::Structure.new
|
|
5
|
+
end
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
def test_new_with_name
|
|
9
|
+
structure = Gst::Structure.new("anonymous")
|
|
10
|
+
assert_equal("anonymous", structure.name)
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def test_name
|
|
14
|
+
structure = Gst::Structure.new("anonymous")
|
|
15
|
+
assert(structure.have_name?("anonymous"))
|
|
16
|
+
|
|
17
|
+
assert(!structure.have_name?("me"))
|
|
18
|
+
structure.name = "me"
|
|
19
|
+
assert(structure.have_name?("me"))
|
|
20
|
+
assert(!structure.have_name?("anonymous"))
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
def test_accessor
|
|
24
|
+
structure = Gst::Structure.new("anonymous")
|
|
25
|
+
|
|
26
|
+
structure["string"] = "value"
|
|
27
|
+
structure["integer"] = 1
|
|
28
|
+
|
|
29
|
+
assert_nil(structure["non-existence"])
|
|
30
|
+
assert_equal("value", structure["string"])
|
|
31
|
+
assert_equal(1, structure["integer"])
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
def test_delete
|
|
35
|
+
structure = Gst::Structure.new("anonymous")
|
|
36
|
+
|
|
37
|
+
structure["string"] = "value"
|
|
38
|
+
structure["integer"] = 1
|
|
39
|
+
|
|
40
|
+
assert_equal("value", structure["string"])
|
|
41
|
+
structure.delete("string")
|
|
42
|
+
assert_nil(structure["string"])
|
|
43
|
+
assert_equal(1, structure["integer"])
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
def test_clear
|
|
47
|
+
structure = Gst::Structure.new("anonymous")
|
|
48
|
+
|
|
49
|
+
structure["string"] = "value"
|
|
50
|
+
structure["integer"] = 1
|
|
51
|
+
|
|
52
|
+
assert_equal("value", structure["string"])
|
|
53
|
+
assert_equal(1, structure["integer"])
|
|
54
|
+
structure.clear
|
|
55
|
+
assert_nil(structure["string"])
|
|
56
|
+
assert_nil(structure["integer"])
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
def test_each_break
|
|
60
|
+
structure = Gst::Structure.new("anonymous")
|
|
61
|
+
|
|
62
|
+
structure["string"] = "value"
|
|
63
|
+
structure["integer"] = 1
|
|
64
|
+
|
|
65
|
+
result = []
|
|
66
|
+
structure.each do |key, value|
|
|
67
|
+
result << [key, value]
|
|
68
|
+
break
|
|
69
|
+
end
|
|
70
|
+
assert_equal([["string", "value"]], result)
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
def test_collect
|
|
74
|
+
structure = Gst::Structure.new("anonymous")
|
|
75
|
+
assert_equal([], structure.collect {|key, value| [key, value]})
|
|
76
|
+
|
|
77
|
+
structure["string"] = "value"
|
|
78
|
+
structure["integer"] = 1
|
|
79
|
+
assert_equal([
|
|
80
|
+
["string", "value" * 2],
|
|
81
|
+
["integer", 1 * 2],
|
|
82
|
+
],
|
|
83
|
+
structure.collect {|key, value| [key, value * 2]})
|
|
84
|
+
|
|
85
|
+
assert_equal("value", structure["string"])
|
|
86
|
+
assert_equal(1, structure["integer"])
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
def test_collect!
|
|
90
|
+
structure = Gst::Structure.new("anonymous")
|
|
91
|
+
assert_equal([], structure.collect {|key, value| [key, value]})
|
|
92
|
+
|
|
93
|
+
structure["string"] = "value"
|
|
94
|
+
structure["integer"] = 1
|
|
95
|
+
structure.collect! {|key, value| value * 2}
|
|
96
|
+
|
|
97
|
+
assert_equal("value" * 2, structure["string"])
|
|
98
|
+
assert_equal(1 * 2, structure["integer"])
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
def test_size
|
|
102
|
+
structure = Gst::Structure.new("anonymous")
|
|
103
|
+
|
|
104
|
+
assert_equal(0, structure.size)
|
|
105
|
+
assert(structure.empty?)
|
|
106
|
+
|
|
107
|
+
structure["string"] = "value"
|
|
108
|
+
structure["integer"] = 1
|
|
109
|
+
assert_equal(2, structure.size)
|
|
110
|
+
assert(!structure.empty?)
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
def test_nth_field_name
|
|
114
|
+
structure = Gst::Structure.new("anonymous")
|
|
115
|
+
|
|
116
|
+
structure["string"] = "value"
|
|
117
|
+
structure["integer"] = 1
|
|
118
|
+
assert_equal("string", structure.nth_field_name(0))
|
|
119
|
+
assert_equal("integer", structure.nth_field_name(1))
|
|
120
|
+
end
|
|
121
|
+
|
|
122
|
+
def test_have_field?
|
|
123
|
+
structure = Gst::Structure.new("anonymous")
|
|
124
|
+
|
|
125
|
+
assert(!structure.have_field?("string"))
|
|
126
|
+
|
|
127
|
+
structure["string"] = "value"
|
|
128
|
+
assert(structure.have_field?("string"))
|
|
129
|
+
assert(!structure.have_field?("integer"))
|
|
130
|
+
end
|
|
131
|
+
|
|
132
|
+
def test_to_s
|
|
133
|
+
structure = Gst::Structure.new("anonymous")
|
|
134
|
+
assert_equal("anonymous;", structure.to_s)
|
|
135
|
+
|
|
136
|
+
structure["string"] = "value"
|
|
137
|
+
assert_equal("anonymous, string=(string)value;", structure.to_s)
|
|
138
|
+
|
|
139
|
+
structure["integer"] = 1
|
|
140
|
+
assert_equal("anonymous, string=(string)value, integer=(int)1;",
|
|
141
|
+
structure.to_s)
|
|
142
|
+
|
|
143
|
+
assert_match(/: #{Regexp.escape(structure.to_s)}>\z/, structure.inspect)
|
|
144
|
+
end
|
|
145
|
+
|
|
146
|
+
def test_parse
|
|
147
|
+
structure = Gst::Structure.new("anonymous")
|
|
148
|
+
structure["string"] = "value"
|
|
149
|
+
structure["integer"] = 1
|
|
150
|
+
|
|
151
|
+
parsed_structure, rest = Gst::Structure.parse(structure.to_s)
|
|
152
|
+
assert_equal(["anonymous, string=(string)value, integer=(int)1;", ""],
|
|
153
|
+
[parsed_structure.to_s, rest])
|
|
154
|
+
|
|
155
|
+
parsed_structure, rest = Gst::Structure.parse(structure.to_s + "XXX")
|
|
156
|
+
assert_equal(["anonymous, string=(string)value, integer=(int)1;", "XXX"],
|
|
157
|
+
[parsed_structure.to_s, rest])
|
|
158
|
+
end
|
|
159
|
+
end
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
require 'gst-test-utils.rb'
|
|
2
|
+
|
|
3
|
+
class TestThreadHandling < Test::Unit::TestCase
|
|
4
|
+
include GstTestUtils
|
|
5
|
+
|
|
6
|
+
def test_scheduling
|
|
7
|
+
only_gst_version(0, 10, 16)
|
|
8
|
+
pipeline = Gst::Pipeline.new
|
|
9
|
+
buffers_seen = 0
|
|
10
|
+
|
|
11
|
+
src = Gst::ElementFactory.make("videotestsrc")
|
|
12
|
+
identity = Gst::ElementFactory.make("identity")
|
|
13
|
+
sink = Gst::ElementFactory.make("fakesink")
|
|
14
|
+
caps = Gst::Caps.parse("video/x-raw-yuv, framerate=\(fraction\)30/1")
|
|
15
|
+
|
|
16
|
+
src.live = true
|
|
17
|
+
identity.signal_handoffs = true
|
|
18
|
+
|
|
19
|
+
identity.signal_connect("handoff") do |element, buffer|
|
|
20
|
+
buffers_seen += 1
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
pipeline.add(src, identity, sink)
|
|
24
|
+
src.link_filtered(identity, caps)
|
|
25
|
+
identity >> sink
|
|
26
|
+
|
|
27
|
+
pipeline.play
|
|
28
|
+
sleep 1
|
|
29
|
+
pipeline.stop
|
|
30
|
+
assert_operator(15, :<, buffers_seen)
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
def test_state_changes
|
|
34
|
+
only_gst_version(0, 10, 16)
|
|
35
|
+
pipeline = Gst::Pipeline.new
|
|
36
|
+
buffers_seen = 0
|
|
37
|
+
|
|
38
|
+
src = Gst::ElementFactory.make("videotestsrc")
|
|
39
|
+
identity = Gst::ElementFactory.make("identity")
|
|
40
|
+
sink = Gst::ElementFactory.make("fakesink")
|
|
41
|
+
|
|
42
|
+
identity.signal_handoffs = true
|
|
43
|
+
|
|
44
|
+
identity.signal_connect("handoff") do |element, buffer|
|
|
45
|
+
buffers_seen += 1
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
pipeline.add(src, identity, sink)
|
|
49
|
+
src >> identity >> sink
|
|
50
|
+
loop = GLib::MainLoop.new(nil, false)
|
|
51
|
+
|
|
52
|
+
10.times do
|
|
53
|
+
pipeline.play
|
|
54
|
+
sleep 1
|
|
55
|
+
pipeline.stop
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
end
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
class TestTypeFindFactory < Test::Unit::TestCase
|
|
2
|
+
def test_extensions
|
|
3
|
+
factories = Gst::TypeFindFactory.list
|
|
4
|
+
html_factory = factories.find {|f| f.name == "text/html"}
|
|
5
|
+
assert_not_nil(html_factory)
|
|
6
|
+
assert_equal(["htm", "html"].sort, html_factory.extensions.sort)
|
|
7
|
+
end
|
|
8
|
+
end
|
data/test/test_value.rb
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
class TestValue < Test::Unit::TestCase
|
|
2
|
+
def test_list
|
|
3
|
+
assert_equal([1234, 4321], audio_convert_caps[0]["endianness"])
|
|
4
|
+
end
|
|
5
|
+
|
|
6
|
+
def test_int_range
|
|
7
|
+
range = Gst::IntRange.new(10, 100)
|
|
8
|
+
assert_equal(10, range.min)
|
|
9
|
+
assert_equal(100, range.max)
|
|
10
|
+
assert_equal("[10,100]", range.to_s)
|
|
11
|
+
|
|
12
|
+
range.min = 1
|
|
13
|
+
range.max = 500
|
|
14
|
+
assert_equal(1, range.min)
|
|
15
|
+
assert_equal(500, range.max)
|
|
16
|
+
assert_equal("[1,500]", range.to_s)
|
|
17
|
+
|
|
18
|
+
range.set(100, 9999)
|
|
19
|
+
assert_equal(100, range.min)
|
|
20
|
+
assert_equal(9999, range.max)
|
|
21
|
+
assert_equal("[100,9999]", range.to_s)
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
def test_fourcc
|
|
25
|
+
fourcc = Gst::Fourcc.new("MJPG")
|
|
26
|
+
assert_equal(string_to_fourcc("MJPG"), fourcc.to_i)
|
|
27
|
+
assert_equal("MJPG", fourcc.to_s)
|
|
28
|
+
|
|
29
|
+
fourcc.replace!(string_to_fourcc("abcd"))
|
|
30
|
+
assert_equal(string_to_fourcc("abcd"), fourcc.to_i)
|
|
31
|
+
assert_equal("abcd", fourcc.to_s)
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
def test_fraction_range_new
|
|
35
|
+
assert_equal("[ 2/1, 3/4 ]",
|
|
36
|
+
Gst::FractionRange.new(Rational(2, 1), Rational(3, 4)).to_s)
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
def test_fraction_range
|
|
40
|
+
assert_equal([Rational(0, 1), Rational(2147483647, 1)],
|
|
41
|
+
ffmpeg_color_space_caps[0]["framerate"].to_a)
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
private
|
|
45
|
+
def audio_convert_caps
|
|
46
|
+
convert = Gst::ElementFactory.find("audioconvert")
|
|
47
|
+
assert_not_nil(convert)
|
|
48
|
+
convert.pad_templates.find do |template|
|
|
49
|
+
template.direction == Gst::Pad::SRC
|
|
50
|
+
end.caps.to_caps
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
def ffmpeg_color_space_caps
|
|
54
|
+
convert = Gst::ElementFactory.find("ffmpegcolorspace")
|
|
55
|
+
assert_not_nil(convert)
|
|
56
|
+
convert.pad_templates.find do |template|
|
|
57
|
+
template.direction == Gst::Pad::SRC
|
|
58
|
+
end.caps.to_caps
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
def string_to_fourcc(string)
|
|
62
|
+
value = 0
|
|
63
|
+
string.unpack("C4").each_with_index do |v, i|
|
|
64
|
+
value += v << (i * 8)
|
|
65
|
+
end
|
|
66
|
+
value
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
|
metadata
ADDED
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: gstreamer
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
hash: 379
|
|
5
|
+
prerelease: false
|
|
6
|
+
segments:
|
|
7
|
+
- 0
|
|
8
|
+
- 90
|
|
9
|
+
- 6
|
|
10
|
+
version: 0.90.6
|
|
11
|
+
platform: ruby
|
|
12
|
+
authors:
|
|
13
|
+
- The Ruby-GNOME2 Proejct Team
|
|
14
|
+
autorequire:
|
|
15
|
+
bindir: bin
|
|
16
|
+
cert_chain: []
|
|
17
|
+
|
|
18
|
+
date: 2011-01-30 00:00:00 +09:00
|
|
19
|
+
default_executable:
|
|
20
|
+
dependencies:
|
|
21
|
+
- !ruby/object:Gem::Dependency
|
|
22
|
+
name: glib2
|
|
23
|
+
prerelease: false
|
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
hash: 379
|
|
30
|
+
segments:
|
|
31
|
+
- 0
|
|
32
|
+
- 90
|
|
33
|
+
- 6
|
|
34
|
+
version: 0.90.6
|
|
35
|
+
type: :runtime
|
|
36
|
+
version_requirements: *id001
|
|
37
|
+
description: Ruby/GStreamer is a Ruby binding for GStreamer.
|
|
38
|
+
email: ruby-gnome2-devel-en@lists.sourceforge.net
|
|
39
|
+
executables: []
|
|
40
|
+
|
|
41
|
+
extensions:
|
|
42
|
+
- ext/gstreamer/extconf.rb
|
|
43
|
+
extra_rdoc_files: []
|
|
44
|
+
|
|
45
|
+
files:
|
|
46
|
+
- ChangeLog
|
|
47
|
+
- README
|
|
48
|
+
- Rakefile
|
|
49
|
+
- extconf.rb
|
|
50
|
+
- lib/gst.rb
|
|
51
|
+
- ext/gstreamer/rbgst-bin.o
|
|
52
|
+
- ext/gstreamer/rbgstxml.c
|
|
53
|
+
- ext/gstreamer/rbgst-index-factory.o
|
|
54
|
+
- ext/gstreamer/ruby-gstreamer.pc
|
|
55
|
+
- ext/gstreamer/rbgsttagsetter.c
|
|
56
|
+
- ext/gstreamer/rbgstindex.c
|
|
57
|
+
- ext/gstreamer/rbgst-seek.o
|
|
58
|
+
- ext/gstreamer/rbgst-child-proxy.o
|
|
59
|
+
- ext/gstreamer/rbgst-message.c
|
|
60
|
+
- ext/gstreamer/rbgst-clock.c
|
|
61
|
+
- ext/gstreamer/rbgst-pad.c
|
|
62
|
+
- ext/gstreamer/rbgst-value.o
|
|
63
|
+
- ext/gstreamer/rbgst-message.o
|
|
64
|
+
- ext/gstreamer/rbgstquerytype.c
|
|
65
|
+
- ext/gstreamer/rbgstformat.c
|
|
66
|
+
- ext/gstreamer/rbgst-seek.c
|
|
67
|
+
- ext/gstreamer/rbgst-index-factory.c
|
|
68
|
+
- ext/gstreamer/misc.c
|
|
69
|
+
- ext/gstreamer/gst.so
|
|
70
|
+
- ext/gstreamer/rbgst-event.c
|
|
71
|
+
- ext/gstreamer/rbgst-pad-template.c
|
|
72
|
+
- ext/gstreamer/rbgst.h
|
|
73
|
+
- ext/gstreamer/rbgst.c
|
|
74
|
+
- ext/gstreamer/rbgst-ghost-pad.o
|
|
75
|
+
- ext/gstreamer/rbgstregistry.c
|
|
76
|
+
- ext/gstreamer/Makefile
|
|
77
|
+
- ext/gstreamer/rbgstparse.c
|
|
78
|
+
- ext/gstreamer/rbgst-caps.o
|
|
79
|
+
- ext/gstreamer/rbgst-private.o
|
|
80
|
+
- ext/gstreamer/rbgst-element.o
|
|
81
|
+
- ext/gstreamer/rbgst-static-pad-template.c
|
|
82
|
+
- ext/gstreamer/rbgst-structure.c
|
|
83
|
+
- ext/gstreamer/rbgst-object.o
|
|
84
|
+
- ext/gstreamer/rbgst-mini-object.o
|
|
85
|
+
- ext/gstreamer/rbgstindex.o
|
|
86
|
+
- ext/gstreamer/rbgst-x-overlay.o
|
|
87
|
+
- ext/gstreamer/rbgst-system-clock.c
|
|
88
|
+
- ext/gstreamer/rbgst-type-find-factory.c
|
|
89
|
+
- ext/gstreamer/extconf.rb
|
|
90
|
+
- ext/gstreamer/rbgst-system-clock.o
|
|
91
|
+
- ext/gstreamer/rbgstformat.o
|
|
92
|
+
- ext/gstreamer/rbgst-query.o
|
|
93
|
+
- ext/gstreamer/rbgst-static-pad-template.o
|
|
94
|
+
- ext/gstreamer/rbgst-event.o
|
|
95
|
+
- ext/gstreamer/rbgst-plugin.c
|
|
96
|
+
- ext/gstreamer/rbgst-static-caps.o
|
|
97
|
+
- ext/gstreamer/rbgst-static-caps.c
|
|
98
|
+
- ext/gstreamer/rbgstparse.o
|
|
99
|
+
- ext/gstreamer/rbgst-pad-template.o
|
|
100
|
+
- ext/gstreamer/rbgst-bus.c
|
|
101
|
+
- ext/gstreamer/rbgst-mini-object.c
|
|
102
|
+
- ext/gstreamer/rbgst-clock.o
|
|
103
|
+
- ext/gstreamer/rbgst-object.c
|
|
104
|
+
- ext/gstreamer/rbgstregistry.o
|
|
105
|
+
- ext/gstreamer/rbgstquerytype.o
|
|
106
|
+
- ext/gstreamer/rbgstxml.o
|
|
107
|
+
- ext/gstreamer/rbgstindexentry.o
|
|
108
|
+
- ext/gstreamer/rbgst-buffer.o
|
|
109
|
+
- ext/gstreamer/rbgsttagsetter.o
|
|
110
|
+
- ext/gstreamer/rbgst-private.c
|
|
111
|
+
- ext/gstreamer/rbgst-private.h
|
|
112
|
+
- ext/gstreamer/rbgst-element-factory.c
|
|
113
|
+
- ext/gstreamer/rbgstclockentry.c
|
|
114
|
+
- ext/gstreamer/rbgst-bin.c
|
|
115
|
+
- ext/gstreamer/rbgst-ghost-pad.c
|
|
116
|
+
- ext/gstreamer/rbgstindexentry.c
|
|
117
|
+
- ext/gstreamer/rbgst-structure.o
|
|
118
|
+
- ext/gstreamer/rbgst-plugin-feature.c
|
|
119
|
+
- ext/gstreamer/rbgst-pipeline.c
|
|
120
|
+
- ext/gstreamer/rbgst-child-proxy.c
|
|
121
|
+
- ext/gstreamer/rbgsttag.o
|
|
122
|
+
- ext/gstreamer/rbgst-plugin-feature.o
|
|
123
|
+
- ext/gstreamer/rbgst-bus.o
|
|
124
|
+
- ext/gstreamer/rbgsttag.c
|
|
125
|
+
- ext/gstreamer/depend
|
|
126
|
+
- ext/gstreamer/rbgst-element-factory.o
|
|
127
|
+
- ext/gstreamer/rbgst-plugin.o
|
|
128
|
+
- ext/gstreamer/rbgst-pipeline.o
|
|
129
|
+
- ext/gstreamer/rbgst-buffer.c
|
|
130
|
+
- ext/gstreamer/misc.o
|
|
131
|
+
- ext/gstreamer/rbgst-query.c
|
|
132
|
+
- ext/gstreamer/rbgst-pad.o
|
|
133
|
+
- ext/gstreamer/rbgst-x-overlay.c
|
|
134
|
+
- ext/gstreamer/rbgst-caps.c
|
|
135
|
+
- ext/gstreamer/rbgst-element.c
|
|
136
|
+
- ext/gstreamer/rbgst-type-find-factory.o
|
|
137
|
+
- ext/gstreamer/rbgst.o
|
|
138
|
+
- ext/gstreamer/rbgstclockentry.o
|
|
139
|
+
- ext/gstreamer/rbgst-value.c
|
|
140
|
+
- sample/media-type.rb
|
|
141
|
+
- sample/audio-player.rb
|
|
142
|
+
- sample/xml-player.rb
|
|
143
|
+
- sample/gst-inspect.rb
|
|
144
|
+
- sample/video-player.rb
|
|
145
|
+
- sample/media-type2.rb
|
|
146
|
+
- sample/type-find.rb
|
|
147
|
+
- sample/ogg-audio-player.rb
|
|
148
|
+
- test/test_plugin_feature.rb
|
|
149
|
+
- test/test_structure.rb
|
|
150
|
+
- test/test_caps.rb
|
|
151
|
+
- test/test_seek.rb
|
|
152
|
+
- test/test_thread_handling.rb
|
|
153
|
+
- test/test_object.rb
|
|
154
|
+
- test/test_pad.rb
|
|
155
|
+
- test/test_element_factory.rb
|
|
156
|
+
- test/gst-test-utils.rb
|
|
157
|
+
- test/test_plugin.rb
|
|
158
|
+
- test/test_index_factory.rb
|
|
159
|
+
- test/test_event.rb
|
|
160
|
+
- test/run-test.rb
|
|
161
|
+
- test/test_message.rb
|
|
162
|
+
- test/test_clock.rb
|
|
163
|
+
- test/test_mini_object.rb
|
|
164
|
+
- test/test_static_caps.rb
|
|
165
|
+
- test/test_type_find_factory.rb
|
|
166
|
+
- test/test_value.rb
|
|
167
|
+
- test/test_buffer.rb
|
|
168
|
+
- test/test_bin.rb
|
|
169
|
+
- test/test_element.rb
|
|
170
|
+
- test/test_static_pad_template.rb
|
|
171
|
+
has_rdoc: true
|
|
172
|
+
homepage: http://ruby-gnome2.sourceforge.jp/
|
|
173
|
+
licenses: []
|
|
174
|
+
|
|
175
|
+
post_install_message: This library is experimental.
|
|
176
|
+
rdoc_options: []
|
|
177
|
+
|
|
178
|
+
require_paths:
|
|
179
|
+
- lib
|
|
180
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
181
|
+
none: false
|
|
182
|
+
requirements:
|
|
183
|
+
- - ">="
|
|
184
|
+
- !ruby/object:Gem::Version
|
|
185
|
+
hash: 61
|
|
186
|
+
segments:
|
|
187
|
+
- 1
|
|
188
|
+
- 8
|
|
189
|
+
- 5
|
|
190
|
+
version: 1.8.5
|
|
191
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
192
|
+
none: false
|
|
193
|
+
requirements:
|
|
194
|
+
- - ">="
|
|
195
|
+
- !ruby/object:Gem::Version
|
|
196
|
+
hash: 3
|
|
197
|
+
segments:
|
|
198
|
+
- 0
|
|
199
|
+
version: "0"
|
|
200
|
+
requirements: []
|
|
201
|
+
|
|
202
|
+
rubyforge_project:
|
|
203
|
+
rubygems_version: 1.3.7
|
|
204
|
+
signing_key:
|
|
205
|
+
specification_version: 3
|
|
206
|
+
summary: Ruby/GStreamer is a Ruby binding for GStreamer.
|
|
207
|
+
test_files: []
|
|
208
|
+
|