gstreamer 1.0.3 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +201 -3
- data/ext/gstreamer/extconf.rb +10 -10
- data/ext/gstreamer/misc.c +16 -15
- data/ext/gstreamer/rbgst-bin.c +75 -83
- data/ext/gstreamer/rbgst-buffer.c +91 -91
- data/ext/gstreamer/rbgst-bus.c +21 -21
- data/ext/gstreamer/rbgst-caps.c +98 -91
- data/ext/gstreamer/rbgst-child-proxy.c +19 -18
- data/ext/gstreamer/rbgst-clock.c +34 -32
- data/ext/gstreamer/rbgst-element-factory.c +79 -85
- data/ext/gstreamer/rbgst-element.c +245 -210
- data/ext/gstreamer/rbgst-event.c +18 -18
- data/ext/gstreamer/rbgst-ghost-pad.c +24 -21
- data/ext/gstreamer/rbgst-index-factory.c +31 -29
- data/ext/gstreamer/rbgst-install-plugins-context.c +86 -0
- data/ext/gstreamer/rbgst-install-plugins-return.c +45 -0
- data/ext/gstreamer/rbgst-install-plugins.c +45 -111
- data/ext/gstreamer/rbgst-message.c +15 -16
- data/ext/gstreamer/rbgst-mini-object.c +37 -37
- data/ext/gstreamer/rbgst-object.c +29 -26
- data/ext/gstreamer/rbgst-pad-template.c +36 -35
- data/ext/gstreamer/rbgst-pad.c +96 -96
- data/ext/gstreamer/rbgst-pipeline.c +32 -31
- data/ext/gstreamer/rbgst-plugin-feature.c +47 -48
- data/ext/gstreamer/rbgst-plugin.c +62 -64
- data/ext/gstreamer/rbgst-private.c +14 -15
- data/ext/gstreamer/rbgst-private.h +76 -16
- data/ext/gstreamer/rbgst-query.c +22 -20
- data/ext/gstreamer/rbgst-seek.c +22 -19
- data/ext/gstreamer/rbgst-static-caps.c +26 -24
- data/ext/gstreamer/rbgst-static-pad-template.c +27 -26
- data/ext/gstreamer/rbgst-structure.c +61 -59
- data/ext/gstreamer/rbgst-system-clock.c +23 -20
- data/ext/gstreamer/rbgst-type-find-factory.c +44 -43
- data/ext/gstreamer/rbgst-value.c +40 -28
- data/ext/gstreamer/rbgst-x-overlay.c +32 -31
- data/ext/gstreamer/rbgst.c +78 -128
- data/ext/gstreamer/rbgst.h +16 -16
- data/ext/gstreamer/rbgstclockentry.c +46 -43
- data/ext/gstreamer/rbgstformat.c +64 -61
- data/ext/gstreamer/rbgstindex.c +67 -64
- data/ext/gstreamer/rbgstindexentry.c +31 -28
- data/ext/gstreamer/rbgstparse.c +32 -29
- data/ext/gstreamer/rbgstquerytype.c +64 -61
- data/ext/gstreamer/rbgstregistry.c +79 -76
- data/ext/gstreamer/rbgsttag.c +34 -32
- data/ext/gstreamer/rbgsttagsetter.c +22 -19
- data/ext/gstreamer/rbgstxml.c +78 -75
- data/lib/gst.rb +15 -1
- data/test/test_buffer.rb +5 -2
- data/test/test_element.rb +7 -9
- data/test/test_value.rb +2 -2
- metadata +11 -11
- data/ChangeLog +0 -1202
- data/test/test_clock.rb +0 -7
data/test/test_value.rb
CHANGED
@@ -32,8 +32,8 @@ class TestValue < Test::Unit::TestCase
|
|
32
32
|
end
|
33
33
|
|
34
34
|
def test_fraction_range_new
|
35
|
-
assert_equal("[ 2
|
36
|
-
Gst::FractionRange.new(Rational(
|
35
|
+
assert_equal("[ 1/2, 3/4 ]",
|
36
|
+
Gst::FractionRange.new(Rational(1, 2), Rational(3, 4)).to_s)
|
37
37
|
end
|
38
38
|
|
39
39
|
def test_fraction_range
|
metadata
CHANGED
@@ -1,21 +1,21 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gstreamer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 19
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
|
+
- 1
|
8
9
|
- 0
|
9
|
-
|
10
|
-
version: 1.0.3
|
10
|
+
version: 1.1.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
|
-
- The Ruby-GNOME2
|
13
|
+
- The Ruby-GNOME2 Project Team
|
14
14
|
autorequire:
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date:
|
18
|
+
date: 2012-01-05 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: glib2
|
@@ -25,12 +25,12 @@ dependencies:
|
|
25
25
|
requirements:
|
26
26
|
- - ">="
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
hash:
|
28
|
+
hash: 19
|
29
29
|
segments:
|
30
30
|
- 1
|
31
|
+
- 1
|
31
32
|
- 0
|
32
|
-
|
33
|
-
version: 1.0.3
|
33
|
+
version: 1.1.0
|
34
34
|
type: :runtime
|
35
35
|
version_requirements: *id001
|
36
36
|
description: Ruby/GStreamer is a Ruby binding for GStreamer.
|
@@ -42,15 +42,16 @@ extensions:
|
|
42
42
|
extra_rdoc_files: []
|
43
43
|
|
44
44
|
files:
|
45
|
-
- ChangeLog
|
46
45
|
- README
|
47
46
|
- Rakefile
|
48
47
|
- extconf.rb
|
49
48
|
- lib/gst.rb
|
50
49
|
- ext/gstreamer/rbgstxml.c
|
50
|
+
- ext/gstreamer/rbgst-install-plugins-context.c
|
51
51
|
- ext/gstreamer/rbgsttagsetter.c
|
52
52
|
- ext/gstreamer/rbgstindex.c
|
53
53
|
- ext/gstreamer/rbgst-message.c
|
54
|
+
- ext/gstreamer/rbgst-install-plugins-return.c
|
54
55
|
- ext/gstreamer/rbgst-clock.c
|
55
56
|
- ext/gstreamer/rbgst-pad.c
|
56
57
|
- ext/gstreamer/rbgstquerytype.c
|
@@ -117,7 +118,6 @@ files:
|
|
117
118
|
- test/test_event.rb
|
118
119
|
- test/run-test.rb
|
119
120
|
- test/test_message.rb
|
120
|
-
- test/test_clock.rb
|
121
121
|
- test/test_mini_object.rb
|
122
122
|
- test/test_static_caps.rb
|
123
123
|
- test/test_type_find_factory.rb
|
@@ -157,7 +157,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
157
157
|
requirements: []
|
158
158
|
|
159
159
|
rubyforge_project:
|
160
|
-
rubygems_version: 1.
|
160
|
+
rubygems_version: 1.8.12
|
161
161
|
signing_key:
|
162
162
|
specification_version: 3
|
163
163
|
summary: Ruby/GStreamer is a Ruby binding for GStreamer.
|
data/ChangeLog
DELETED
@@ -1,1202 +0,0 @@
|
|
1
|
-
2011-03-07 Vincent Carmona
|
2
|
-
|
3
|
-
* ext/gstreamer/rbgstregistry.c: add update class method.
|
4
|
-
|
5
|
-
2011-03-04 Vincent Carmona
|
6
|
-
|
7
|
-
* ext/gstreamer/rbgst-install-plugins.c: remove unused variable.
|
8
|
-
* ext/gstreamer/rbgst-message.c: change Gst::MissingMessage superclass
|
9
|
-
GstMessage -> GstMessageElement.
|
10
|
-
* sample/install-plugins.rb: added.
|
11
|
-
|
12
|
-
2011-03-04 Kouhei Sutou <kou@cozmixng.org>
|
13
|
-
|
14
|
-
* ext/gstreamer/rbgst-install-plugins.c (return_table): remove
|
15
|
-
unused variable.
|
16
|
-
|
17
|
-
2011-03-03 Vincent Carmona
|
18
|
-
|
19
|
-
* ext/gstreamer/rbgst-install-plugins.c: new file.
|
20
|
-
* ext/gstreamer/rbgst.c: Init install plugins.
|
21
|
-
* test/test_install-plugins.rb: new file.
|
22
|
-
|
23
|
-
2011-02-25 Kouhei Sutou <kou@cozmixng.org>
|
24
|
-
|
25
|
-
* ext/gstreamer/rbgst-object.c: don't use rbgprivate.h. [#3188442]
|
26
|
-
Reported by Mamoru Tasaka. Thanks!!!
|
27
|
-
|
28
|
-
* test/run-test.rb: fix load-path.
|
29
|
-
|
30
|
-
* ext/gstreamer/rbgstformat.c (rb_gst_format_is_equal): suppress
|
31
|
-
warnings.
|
32
|
-
|
33
|
-
* ext/gstreamer/rbgstquerytype.c (rb_gst_querytype_is_equal):
|
34
|
-
suppress warnings.
|
35
|
-
|
36
|
-
2011-02-17 Kouhei Sutou <kou@cozmixng.org>
|
37
|
-
|
38
|
-
* ext/gstreamer/rbgst-message.c: use coreresponding message class.
|
39
|
-
Patch by Vincent Carmona. Thanks!!!
|
40
|
-
|
41
|
-
2011-02-12 Kouhei Sutou <kou@cozmixng.org>
|
42
|
-
|
43
|
-
* ext/gstreamer/depend: fix .pc path. #3178294
|
44
|
-
Reported by OBATA Akio. Thanks!!!
|
45
|
-
|
46
|
-
2011-01-30 Kouhei Sutou <kou@cozmixng.org>
|
47
|
-
|
48
|
-
* Rakefile: doesn't support gem for Windows.
|
49
|
-
|
50
|
-
2011-01-22 Masaaki Aoyagi
|
51
|
-
|
52
|
-
* src/lib/: -> lib/.
|
53
|
-
|
54
|
-
* src/: -> ext/gstreamer/.
|
55
|
-
|
56
|
-
* extconf.rb: -> ext/gstreamer/extconf.rb
|
57
|
-
|
58
|
-
* ext/gstreamer/extconf.rb: support directory structure change.
|
59
|
-
|
60
|
-
* extconf.rb: add.
|
61
|
-
|
62
|
-
* Rakefile: add.
|
63
|
-
|
64
|
-
2010-11-19 Kouhei Sutou <kou@cozmixng.org>
|
65
|
-
|
66
|
-
* extconf.rb, src/rbgst-message.c, test/test_message.rb: add
|
67
|
-
MissingMessage.
|
68
|
-
Suggested by Vincent Carmona. Thanks!!!
|
69
|
-
|
70
|
-
2010-10-08 Guillaume Cottenceau
|
71
|
-
|
72
|
-
* RVAL2CSTR2 is deprecated, replace with RVAL2CSTR_ACCEPT_NIL
|
73
|
-
|
74
|
-
* CSTR2RVAL2 is deprecated, replace with CSTR2RVAL_FREE
|
75
|
-
|
76
|
-
2010-09-23 Kouhei Sutou <kou@cozmixng.org>
|
77
|
-
|
78
|
-
* test/run-test.rb: fix extension library path.
|
79
|
-
|
80
|
-
* extconf.rb: support Ruby/GLib2 directory structure change.
|
81
|
-
|
82
|
-
2010-02-28 Vincent Carmona
|
83
|
-
|
84
|
-
* src/rbgst-message.c: implement Gst::MessageTag#parse.
|
85
|
-
|
86
|
-
2009-12-25 Johan Kiviniemi
|
87
|
-
|
88
|
-
* src/rbgst-element.c (rb_gst_element_seek): fix argument type.
|
89
|
-
|
90
|
-
2009-02-23 Kouhei Sutou <kou@cozmixng.org>
|
91
|
-
|
92
|
-
* src/rbgst.c (rb_gst_init): use rb_argv0 instead of rg_progname.
|
93
|
-
|
94
|
-
* src/rbgst.c (rb_gst_init): use RVAL2CSTR instead of STR2CSTR.
|
95
|
-
|
96
|
-
2008-11-01 Kouhei Sutou <kou@cozmixng.org>
|
97
|
-
|
98
|
-
* src/: use RARRAY_PTR() and RARRAY_LEN().
|
99
|
-
|
100
|
-
2008-06-14 Kouhei Sutou <kou@cozmixng.org>
|
101
|
-
|
102
|
-
* src/rbgst-buffer.c (get_data): return nil if size is zero.
|
103
|
-
|
104
|
-
* test/run-test.rb: use glib/test/glib-test-init.rb.
|
105
|
-
|
106
|
-
2008-05-23 Kouhei Sutou <kou@cozmixng.org>
|
107
|
-
|
108
|
-
* src/rbgst.c (Gst.check_version?): add.
|
109
|
-
|
110
|
-
* test/test_thread_handling.rb: include missing GstTestUtils.
|
111
|
-
|
112
|
-
* test/run-test.rb: use which not --version to detect make.
|
113
|
-
|
114
|
-
2008-05-23 Sjoerd Simons <sjoerd@luon.net>
|
115
|
-
|
116
|
-
* src/rbgst-bin.c: Add Gst::Bin#to_dot_file and
|
117
|
-
Gst::Bin#to_dot_file_with_ts to dump pipelines to dot files
|
118
|
-
|
119
|
-
2008-05-21 Sjoerd Simons <sjoerd@luon.net>
|
120
|
-
|
121
|
-
* src/rbgst-bus.c: Don't use ALLOC to allocate data that's going
|
122
|
-
to be freed with g_free, use g_new instead.
|
123
|
-
|
124
|
-
2008-05-21 Sjoerd Simons <sjoerd@luon.net>
|
125
|
-
|
126
|
-
* src/rbgst-element.c: Actually read the data coming from the notify fd.
|
127
|
-
As rb_wait_for_fd can return before there is data available on the fd.
|
128
|
-
|
129
|
-
2008-05-21 Kouhei Sutou <kou@cozmixng.org>
|
130
|
-
|
131
|
-
* test/test_thread_handling.rb
|
132
|
-
(TestThreadHandling#test_state_changes): fix indentation.
|
133
|
-
|
134
|
-
* test/gst-test-utils.rb (GstTestUtils#only_gst_version): add.
|
135
|
-
|
136
|
-
* test/test_thread_handling.rb (TestThreadHandling): require
|
137
|
-
GStreamer 0.10.16 for using identity element's signal-handoffs
|
138
|
-
property.
|
139
|
-
|
140
|
-
2008-05-20 Kouhei Sutou <kou@cozmixng.org>
|
141
|
-
|
142
|
-
* src/rbgst.c: don't use rb_argv variable name for ruby 1.9.x.
|
143
|
-
Patch by Joao Pedrosa. Thanks!!!
|
144
|
-
|
145
|
-
2008-05-18 Sjoerd Simons <sjoerd@luon.net>
|
146
|
-
|
147
|
-
* src/rbgst-element.c: gst_element_get_request_pad gives us a ref. So
|
148
|
-
GST_PAD2RVAL_UNREF need to be used to avoid leaking refs
|
149
|
-
|
150
|
-
2008-05-18 Sjoerd Simons <sjoerd@luon.net>
|
151
|
-
|
152
|
-
* src/rbgst-bin.c: Call G_CHILD_REMOVE when removing elements from a bin
|
153
|
-
|
154
|
-
2008-05-18 Sjoerd Simons <sjoerd@luon.net>
|
155
|
-
|
156
|
-
* src/rbgst-buffer.c: use rb_str_new to implement Gst::Buffer#data. The data
|
157
|
-
isn't a \0 terminated C string, so need to specify the size to copy
|
158
|
-
|
159
|
-
2008-05-15 Kouhei Sutou <kou@cozmixng.org>
|
160
|
-
|
161
|
-
* src/rbgst.c (rb_gst_init): don't use global rb_argv.
|
162
|
-
|
163
|
-
2008-05-02 Kouhei Sutou <kou@cozmixng.org>
|
164
|
-
|
165
|
-
* src/rbgst-message.c: use GERROR2RVAL().
|
166
|
-
|
167
|
-
2008-04-30 Sjoerd Simons <sjoerd@luon.net>
|
168
|
-
|
169
|
-
* src/rbgst-bin.c: Add Gst::Bin#each_recurse and Gst::Bin#children_recurse
|
170
|
-
which iterate/get all children of the bin and all its sub-bins recursively
|
171
|
-
|
172
|
-
2008-04-23 Sjoerd Simons <sjoerd@luon.net>
|
173
|
-
|
174
|
-
* src/rbgst-message.c: rbgerr_gerror2exception frees the passed error, don't
|
175
|
-
free it again.
|
176
|
-
|
177
|
-
2008-04-21 Sjoerd Simons <sjoerd@luon.net>
|
178
|
-
|
179
|
-
* src/rbgst-pad.c: Implement Gst::Pad#set_active
|
180
|
-
|
181
|
-
2008-04-20 Kouhei Sutou <kou@cozmixng.org>
|
182
|
-
|
183
|
-
* src/rbgst-element.c: allocate memory instead of using local variable.
|
184
|
-
|
185
|
-
* src/rbgst.h: remove garbages.
|
186
|
-
|
187
|
-
* src/rbgst-element.c: cleanup.
|
188
|
-
|
189
|
-
* test/test_element.rb: add tests for GstElement#query and
|
190
|
-
GstElement#send_event.
|
191
|
-
|
192
|
-
2008-04-16 Sjoerd Simons <sjoerd@luon.net>
|
193
|
-
|
194
|
-
* src/rbgst-object.c: Implement a custom initialize that sinks the created
|
195
|
-
GstObject
|
196
|
-
|
197
|
-
* src/test_element.rb: Add a refcounting testcase for GstObject classes
|
198
|
-
created inside ruby
|
199
|
-
|
200
|
-
2008-04-16 Sjoerd Simons <sjoerd@luon.net>
|
201
|
-
|
202
|
-
* src/rbgst-element.c: Make Gst::Element#link_pads and
|
203
|
-
Gst::Element#unlink_pads work like their C api counterparts (thus take source
|
204
|
-
and sink names
|
205
|
-
|
206
|
-
* src/rbgst-element.c: Implement Gst::Element#unlink
|
207
|
-
|
208
|
-
2008-04-16 Kouhei Sutou <kou@cozmixng.org>
|
209
|
-
|
210
|
-
* src/rbgst-ghost-pad.c: fix style.
|
211
|
-
|
212
|
-
* src/rbgst.c (Init_gst_classes): fix style.
|
213
|
-
|
214
|
-
2008-04-16 Sjoerd Simons <sjoerd@luon.net>
|
215
|
-
|
216
|
-
* src/rbgst-ghost-pad.c, src/rbgst.c: Implement Gst::GhostPad
|
217
|
-
|
218
|
-
2008-04-16 Sjoerd Simons <sjoerd@luon.net>
|
219
|
-
|
220
|
-
* src/rbgst-element.c: _raise instead of _bug where appropriate
|
221
|
-
|
222
|
-
2008-04-15 Kouhei Sutou <kou@cozmixng.org>
|
223
|
-
|
224
|
-
* test/test_event.rb: add.
|
225
|
-
|
226
|
-
* src/rbgst-event.c: define class.
|
227
|
-
|
228
|
-
* src/rbgst-event.c: add missing definition.
|
229
|
-
|
230
|
-
* src/rbgst-event.c: fix style.
|
231
|
-
|
232
|
-
* src/rbgst.c (Init_gst_classes):
|
233
|
-
- remove a garbage.
|
234
|
-
- fix style.
|
235
|
-
|
236
|
-
2008-04-15 Sjoerd Simons <sjoerd@luon.net>
|
237
|
-
|
238
|
-
* src/rbgst-event.c, src/rbgst.c, src/rbgst.h, src/rbgstevent.c: Add an
|
239
|
-
implementation of Gst::Event
|
240
|
-
|
241
|
-
2008-04-15 Kouhei Sutou <kou@cozmixng.org>
|
242
|
-
|
243
|
-
* src/rbgst-x-overlay.c: fix style.
|
244
|
-
|
245
|
-
* src/rbgst-x-overlay.c: fix wrong cast.
|
246
|
-
|
247
|
-
* src/rbgst-x-overlay.c: rename from src/rbgstxoverlay.c.
|
248
|
-
|
249
|
-
* src/rbgst-seek.c: define classes.
|
250
|
-
* test/test_seek.rb: add.
|
251
|
-
|
252
|
-
* src/rbgst-seek.c: fix style.
|
253
|
-
|
254
|
-
* src/rbgst.c: fix style.
|
255
|
-
|
256
|
-
* src/rbgst-query.c: fix style.
|
257
|
-
|
258
|
-
* src/rbgst-pipeline.c: rename from src/rbgstpipeline.c.
|
259
|
-
|
260
|
-
2008-04-15 Sjoerd Simons <sjoerd@luon.net>
|
261
|
-
|
262
|
-
* src/rbgstxoverlay.c: Add Gst::XOverlay#set_xwindow_id_with_buswatch helper
|
263
|
-
function. To properly set the xwindow id of an XOverlay one has to listen to
|
264
|
-
its messages in sync. This is quite expensive to do in ruby, so do it in a C
|
265
|
-
helper
|
266
|
-
|
267
|
-
2008-04-15 Sjoerd Simons <sjoerd@luon.net>
|
268
|
-
|
269
|
-
* src/rbgstpipeline.c: Fix typo
|
270
|
-
|
271
|
-
2008-04-15 Sjoerd Simons <sjoerd@luon.net>
|
272
|
-
|
273
|
-
* src/rbgst-seek.c, src/rbgst.c: Add seek flags and types definitions
|
274
|
-
|
275
|
-
2008-04-15 Sjoerd Simons <sjoerd@luon.net>
|
276
|
-
|
277
|
-
* src/rbgst-query.c, src/rbgst.c, src/rbgst.h: Add an implementation of
|
278
|
-
Gst::Query
|
279
|
-
|
280
|
-
2008-04-15 Sjoerd Simons <sjoerd@luon.net>
|
281
|
-
|
282
|
-
* src/rbgst-element.c: Spawn an extra thread to perform the get_state,
|
283
|
-
set_state, query and send_event functions so the ruby interpreter thread c
|
284
|
-
continue during these functions so it can handle signals which might be
|
285
|
-
needed to complete these functions.
|
286
|
-
* test/test_thread_handling.rb: Add test of to ensure state changes don't
|
287
|
-
deadlock
|
288
|
-
|
289
|
-
2008-04-15 Sjoerd Simons <sjoerd@luon.net>
|
290
|
-
|
291
|
-
* src/rbgstelement.c, src/rbgst.h: Correct refcounting for Gst::Element#bus
|
292
|
-
|
293
|
-
2008-04-13 Kouhei Sutou <kou@cozmixng.org>
|
294
|
-
|
295
|
-
* src/rbgst.c, src/rbgst-child-proxy.c: just define
|
296
|
-
Gst::ChildProxy module. Need to implement it.
|
297
|
-
|
298
|
-
2008-04-12 Kouhei Sutou <kou@cozmixng.org>
|
299
|
-
|
300
|
-
* src/rbgst-element.c: readd Gst::Element#pads.
|
301
|
-
|
302
|
-
* src/rbgst-element.c: state related methods are worked in another
|
303
|
-
thread. Based on Sjoerd Simons' patch.
|
304
|
-
|
305
|
-
* test/test_element.rb: add a test for state related methods.
|
306
|
-
|
307
|
-
* sample/audio-player.rb: use [] instead of get_pad.
|
308
|
-
|
309
|
-
* src/rbgst-pad.c:
|
310
|
-
- cleanup.
|
311
|
-
- add Gst::Pad#linked?.
|
312
|
-
|
313
|
-
* src/rbgst.h (GST_CAPS2RVAL_UNREF), src/rbgst-caps.c
|
314
|
-
(rbgst_ruby_object_from_gst_caps_with_unref): add.
|
315
|
-
|
316
|
-
* test/test_pad.rb: add.
|
317
|
-
|
318
|
-
* test/test_bin.rb: use Gst::Bin#get_child instead of [].
|
319
|
-
|
320
|
-
2008-04-12 Sjoerd Simons <sjoerd@luon.net>
|
321
|
-
|
322
|
-
* src/rbgst-pad.c: Let Gst::Pad.link return a
|
323
|
-
Gst::Pad::LinkReturn. Add query, >>, negotiated_caps, set_caps,
|
324
|
-
caps= and peer functions on Gst::Pad.
|
325
|
-
|
326
|
-
* src/rbgs-pad.c: Fix pad refcounting in get_caps
|
327
|
-
|
328
|
-
2008-04-12 Kouhei Sutou <kou@cozmixng.org>
|
329
|
-
|
330
|
-
* src/rbgst-bin.c: Gst::Bin#[] => Gst::Bin#get_child.
|
331
|
-
Suggested by Sjoerd Simons.
|
332
|
-
|
333
|
-
2008-04-12 Sjoerd Simons <sjoerd@luon.net>
|
334
|
-
|
335
|
-
* src/rbgst-element.c: Make [] an alias of get_pad
|
336
|
-
|
337
|
-
2008-04-12 Kouhei Sutou <kou@cozmixng.org>
|
338
|
-
|
339
|
-
* src/rbgst-bin.c (rb_gst_bin_add): use RVAL2CBOOL not RTEST.
|
340
|
-
|
341
|
-
* test/test_element.rb (TestElement#test_each_pad): add a test.
|
342
|
-
|
343
|
-
* src/rbgst-element.c (rb_gst_element_each_pad): fix style.
|
344
|
-
|
345
|
-
* src/rbgst.h: add GstPad <-> Ruby VALUE macro.
|
346
|
-
|
347
|
-
2008-04-12 Sjoerd Simons <sjoerd@luon.net>
|
348
|
-
|
349
|
-
* src/rbgst-element.c: Implement Gst::Element.each_pad using a
|
350
|
-
GstIterator to ensure thread safety. Remove the get_pads function
|
351
|
-
as it can't be implemented safely.
|
352
|
-
|
353
|
-
2008-04-12 Sjoerd Simons <sjoerd@luon.net>
|
354
|
-
|
355
|
-
* src/rbgst-bin.c: Do G_CHILD_ADD on all elements added to the bin
|
356
|
-
* src/rbgs-element.c: Do G_CHILD_ADD on all pads added to an element
|
357
|
-
|
358
|
-
2008-04-07 Kouhei Sutou <kou@cozmixng.org>
|
359
|
-
|
360
|
-
* src/rbgst-bin.c (rb_gst_bin_get): use iface instead of interface
|
361
|
-
for variable name.
|
362
|
-
|
363
|
-
2008-04-06 Kouhei Sutou <kou@cozmixng.org>
|
364
|
-
|
365
|
-
* src/rbgst-element-factory.c (rb_gst_elementfactory_make): fix
|
366
|
-
coding-style: don't put a space between function call.
|
367
|
-
|
368
|
-
2008-04-05 Sjoerd Simons <sjoerd@luon.net>
|
369
|
-
|
370
|
-
* src/rbgst-element-factory.c: The conversion to a ruby object gets one extra
|
371
|
-
reference, but gst_factory_make already gives us one. So drop the extra to
|
372
|
-
ensure correct refcounting.
|
373
|
-
|
374
|
-
2008-04-05 Sjoerd Simons <sjoerd@luon.net>
|
375
|
-
|
376
|
-
* src/rbgst-element.c: Fix silly typo breaking the compilation
|
377
|
-
|
378
|
-
2008-04-05 Sjoerd Simons <sjoerd@luon.net>
|
379
|
-
|
380
|
-
* src/rbgst-object.c, src/rbgst-element.c, src/rbgst.h: Add
|
381
|
-
rbgst_object_instance2robj as a small wrapper around
|
382
|
-
rbgobj_get_value_from_gobject which always sinks the GstObject and use it
|
383
|
-
a converstion function for GST_TYPE_OBJECT. Also no longer expose sink and
|
384
|
-
float? methods on Gst::Object
|
385
|
-
|
386
|
-
* test/test_object.rb: No longer test Gst::Object sink and float? methods
|
387
|
-
Based on a patch Kouhei Sutou
|
388
|
-
|
389
|
-
2008-04-04 Kouhei Sutou <kou@cozmixng.org>
|
390
|
-
|
391
|
-
* test/test_thread_handling.rb: add.
|
392
|
-
Patch by Sjoerd Simons. Thanks!!!
|
393
|
-
|
394
|
-
2008-03-30 Kouhei Sutou <kou@cozmixng.org>
|
395
|
-
|
396
|
-
* src/rbgst-element.c: followed the recent Ruby/GLib changes.
|
397
|
-
|
398
|
-
2008-03-27 Kouhei Sutou <kou@cozmixng.org>
|
399
|
-
|
400
|
-
* test/test_type_find_factory.rb
|
401
|
-
(TestTypeFindFactory#test_extensions): normalized result.
|
402
|
-
|
403
|
-
* sample/video-player.rb: stop play bin before quit.
|
404
|
-
|
405
|
-
2008-03-15 Kouhei Sutou <kou@cozmixng.org>
|
406
|
-
|
407
|
-
* test/run-test.rb: used TestUnitExt in glib/test-unit-ext/.
|
408
|
-
|
409
|
-
2008-03-04 Kouhei Sutou <kou@cozmixng.org>
|
410
|
-
|
411
|
-
* src/rbgst-element.c: added missing #include.
|
412
|
-
|
413
|
-
2008-02-26 Kouhei Sutou <kou@cozmixng.org>
|
414
|
-
|
415
|
-
* sample/: fixed wrong method name.
|
416
|
-
|
417
|
-
* sample/xml-player.rb: added.
|
418
|
-
|
419
|
-
* sample/xml-ogg-player.rb: removed.
|
420
|
-
|
421
|
-
2008-02-25 Kouhei Sutou <kou@cozmixng.org>
|
422
|
-
|
423
|
-
* src/rbgst-bin.c, test/test_bin.rb: added tests for Gst::Bin#children.
|
424
|
-
|
425
|
-
* src/rbgst-private.[ch], src/rbgst-bin.c, test/test_bin.rb: added
|
426
|
-
tests for Gst::Bin#sources.
|
427
|
-
|
428
|
-
* src/rbgst-bin.c, test/test_bin.rb: added tests for Gst::Bin#sinks.
|
429
|
-
|
430
|
-
* src/rbgst-bin.c, test/test_bin.rb: supported Gst::Bin#[index].
|
431
|
-
|
432
|
-
* src/rbgst-private.[ch], src/rbgst-mini-object.c,
|
433
|
-
src/rbgst-message.c: hid rbgst_mini_object_*().
|
434
|
-
|
435
|
-
* src/rbgst-bin.c, test/test_bin.rb: added tests for Gst::Bin#[].
|
436
|
-
|
437
|
-
* src/rbgst-private.[ch], src/rbgst-mini-object.c,
|
438
|
-
src/rbgst-element.c: generalized define_class_if_need().
|
439
|
-
|
440
|
-
2008-02-24 Kouhei Sutou <kou@cozmixng.org>
|
441
|
-
|
442
|
-
* src/rbgst-bin.c, test/test_bin.rb: added tests for Gst::Bin#clear.
|
443
|
-
|
444
|
-
* src/rbgst-bin.c, test/test_bin.rb: added tests for Gst::Bin#remove.
|
445
|
-
|
446
|
-
* src/rbgst-bin.c, test/test_bin.rb: added tests for Gst::Bin#<<.
|
447
|
-
|
448
|
-
* src/rbgst-buffer.c: fixed wrong type conversion.
|
449
|
-
|
450
|
-
2008-02-23 Kouhei Sutou <kou@cozmixng.org>
|
451
|
-
|
452
|
-
* src/rbgst-bin.c, test/test_bin.rb: added tests for clock_provider.
|
453
|
-
|
454
|
-
* src/rbgst-bin.c, test/test_bin.rb: added tests for
|
455
|
-
provided_clock{,=}.
|
456
|
-
|
457
|
-
* src/rbgst-bin.c, test/test_bin.rb: added tests for polling? and
|
458
|
-
clock_dirty?.
|
459
|
-
|
460
|
-
* src/rbgst-bin.c, test/test_bin.rb: added tests for child_bus and
|
461
|
-
messages.
|
462
|
-
|
463
|
-
* src/rbgst-bin.c, test/test_bin.rb: added tests for children_cookie.
|
464
|
-
|
465
|
-
* src/rbgst-bin.c, test/test_bin.rb: added tests.
|
466
|
-
|
467
|
-
2008-02-21 Kouhei Sutou <kou@cozmixng.org>
|
468
|
-
|
469
|
-
* sample/video-player.rb: caught EOS.
|
470
|
-
|
471
|
-
* src/rbgst.c: followed the recent Ruby/GLib change:
|
472
|
-
rbgutil_{start,stop}_callback_handle_thread ->
|
473
|
-
rbgutil_{start,stop}_callback_dispatch_thread.
|
474
|
-
|
475
|
-
* sample/audio-player.rb: caught EOS.
|
476
|
-
|
477
|
-
2008-02-20 Kouhei Sutou <kou@cozmixng.org>
|
478
|
-
|
479
|
-
* src/rbgst-object.c, test/test_object.c: added Gst::Object#name=
|
480
|
-
and Gst::Object#sink.
|
481
|
-
|
482
|
-
* test/gst-test-utils.rb: added.
|
483
|
-
* test/test_element.rb, test/test_element_factory.rb: used
|
484
|
-
GstTestUtils.
|
485
|
-
|
486
|
-
2008-02-18 Kouhei Sutou <kou@cozmixng.org>
|
487
|
-
|
488
|
-
* sample/video-player.rb: cleanup.
|
489
|
-
|
490
|
-
* sample/mp3-player.rb: removed needless file.
|
491
|
-
|
492
|
-
* sample/audio-player.rb: worked as generic audio player.
|
493
|
-
|
494
|
-
* sample/ogg-audio-player.rb: ensure stop.
|
495
|
-
|
496
|
-
* test/: used test-unit-ext on RubyForge.
|
497
|
-
|
498
|
-
2008-02-17 Kouhei Sutou <kou@cozmixng.org>
|
499
|
-
|
500
|
-
* test/test_element_factory.rb, test/test_plugin.rb,
|
501
|
-
test/test_plugin_feature.rb: followed the current GStreamer changes.
|
502
|
-
|
503
|
-
2008-02-14 Kouhei Sutou <kou@cozmixng.org>
|
504
|
-
|
505
|
-
* src/rbgst.c (rb_gst_init): called
|
506
|
-
rbgutil_start_callback_handle_thread().
|
507
|
-
|
508
|
-
2008-01-10 Kouhei Sutou <kou@cozmixng.org>
|
509
|
-
|
510
|
-
* sample/type-find.rb: added type find sample.
|
511
|
-
|
512
|
-
2008-01-06 Kouhei Sutou <kou@cozmixng.org>
|
513
|
-
|
514
|
-
* sample/gst-inspect.rb: supported element name inspection.
|
515
|
-
|
516
|
-
* src/rbgst-value.c: supported GST_TYPE_ARRAY.
|
517
|
-
|
518
|
-
* sample/gst-inspect.rb: added readable check.
|
519
|
-
|
520
|
-
* src/rbgst-mini-object.c: supported Gst::MiniObject <-> GValue
|
521
|
-
conversion.
|
522
|
-
|
523
|
-
* test/test_value.rb, src/rbgst-value.c: supported GstFraction and
|
524
|
-
GstFractionRange.
|
525
|
-
|
526
|
-
* test/test_value.rb, src/rbgst-value.c: supported GstFourcc.
|
527
|
-
|
528
|
-
* test/test_value.rb, src/rbgst-value.c: supported GstIntRange.
|
529
|
-
|
530
|
-
2008-01-04 Kouhei Sutou <kou@cozmixng.org>
|
531
|
-
|
532
|
-
* sample/gst-inspect.rb: implemented print_children_info.
|
533
|
-
|
534
|
-
* sample/gst-inspect.rb: implemented print_signals_info.
|
535
|
-
|
536
|
-
* sample/gst-inspect.rb: implemented print_element_properties_info.
|
537
|
-
|
538
|
-
* sample/gst-inspect.rb: implemented print_pad_info.
|
539
|
-
|
540
|
-
* src/rbgst-element.c: cleanup style.
|
541
|
-
|
542
|
-
* test/test_element.rb, src/rbgst-element.c: added #require_clock?
|
543
|
-
and #provide_clock?.
|
544
|
-
|
545
|
-
* sample/gst-inspect.rb: defined Inspector class.
|
546
|
-
|
547
|
-
* test/test_value.rb, src/rbgst-value.c: supported GST_TYPE_LIST.
|
548
|
-
|
549
|
-
* test/test_caps.rb, src/rbgst-caps.c: added #each and #[].
|
550
|
-
|
551
|
-
* test/test_static_caps.rb, src/rbgst-static-caps.c: added #to_caps.
|
552
|
-
|
553
|
-
* test/test_static_pad.rb, src/rbgst-static-caps.c: added.
|
554
|
-
|
555
|
-
* test/test_pad_template.rb: renamed to ...
|
556
|
-
* test/test_static_pad_template.rb: ... this.
|
557
|
-
|
558
|
-
* sample/gst-inspect.rb: implemented print_pad_templates_info.
|
559
|
-
|
560
|
-
* src/rbgst-pad-template.c, src/rbgst-static-pad-template.c: used
|
561
|
-
better macros.
|
562
|
-
|
563
|
-
* src/rbgst-pad-template.c: split to ...
|
564
|
-
* src/rbgst-static-pad-template.c: .. this.
|
565
|
-
|
566
|
-
* test/test_pad_template.rb, src/rbgst-pad-template.c,
|
567
|
-
src/rbgst-pad-template.c: made GstStaticPadTemplate object.
|
568
|
-
|
569
|
-
* src/rbgstpadtemplate.c: renamed to ...
|
570
|
-
* src/rbgst-pad-template.c: ... this.
|
571
|
-
|
572
|
-
2008-01-03 Kouhei Sutou <kou@cozmixng.org>
|
573
|
-
|
574
|
-
* sample/gst-inspect.rb: implemented print_interfaces.
|
575
|
-
|
576
|
-
* sample/gst-inspect.rb: implemented print_hierarchy.
|
577
|
-
|
578
|
-
* src/rbgst-structure.c, test/test_structure.rb: added .parse.
|
579
|
-
|
580
|
-
* src/rbgst-structure.c, test/test_structure.rb: added #to_s and
|
581
|
-
#inspect.
|
582
|
-
|
583
|
-
* src/rbgst-structure.c, test/test_structure.rb: added #have_field?.
|
584
|
-
|
585
|
-
* src/rbgst-structure.c, test/test_structure.rb: added #nth_field_name.
|
586
|
-
|
587
|
-
* src/rbgst-structure.c, test/test_structure.rb: added #size and
|
588
|
-
#empty?.
|
589
|
-
|
590
|
-
* src/rbgst-structure.c, test/test_structure.rb: added #collect!.
|
591
|
-
|
592
|
-
* src/rbgst-structure.c, test/test_structure.rb: added #each.
|
593
|
-
|
594
|
-
* src/rbgst-structure.c, test/test_structure.rb: added #delete and
|
595
|
-
#clear.
|
596
|
-
|
597
|
-
2008-01-02 Kouhei Sutou <kou@cozmixng.org>
|
598
|
-
|
599
|
-
* src/rbgst-structure.c, test/test_structure.rb: added #[] and
|
600
|
-
#[]=.
|
601
|
-
|
602
|
-
* src/rbgst-structure.c, src/rbgst.[ch], test/test_message.rb,
|
603
|
-
test/test_structure.rb: stopped conversion between GstStructure
|
604
|
-
and Hash.
|
605
|
-
|
606
|
-
* src/rbgst-structure.c, test/test_structure.rb: added #name=,
|
607
|
-
#have_name?.
|
608
|
-
|
609
|
-
2008-01-01 Kouhei Sutou <kou@cozmixng.org>
|
610
|
-
|
611
|
-
* src/rbgstbin.c, src/rbgstclockentry.c: GST_CLOCK() -> RVAL2GST_CLOCK().
|
612
|
-
|
613
|
-
2007-11-11 Kouhei Sutou <kou@cozmixng.org>
|
614
|
-
|
615
|
-
* src/: expanded abbreviated macro name.
|
616
|
-
|
617
|
-
* src/rbgst-plugin.c: supported source.
|
618
|
-
* test/test_plugin.rb: added a test for source.
|
619
|
-
|
620
|
-
* src/rbgst-plugin-feature.c: supported plugin_name.
|
621
|
-
* test/test_plugin_feature.rb: added a test for plugin_name.
|
622
|
-
|
623
|
-
* src/rbgst-plugin-feature.c: supported loaded?.
|
624
|
-
* test/test_plugin_feature.rb: added a test for loaded?.
|
625
|
-
|
626
|
-
* src/rbgst-message.c, src/rbgst-mini-object.c: used RGConvertTable.
|
627
|
-
|
628
|
-
* src/rbgst-plugin-feature.c: supported rank.
|
629
|
-
* test/test_plugin_feature.rb: added a test for rank.
|
630
|
-
|
631
|
-
* src/rbgst-element-factory.c: supported details readers.
|
632
|
-
* test/test_element_factory.rb: added a test for details readers.
|
633
|
-
|
634
|
-
* src/rbgst-plugin-feature.c: supported load.
|
635
|
-
* test/test_plugin_feature.rb: added a test for load.
|
636
|
-
|
637
|
-
* sample/gst-inspect.rb: starting rewrite.
|
638
|
-
|
639
|
-
* src/rbgst-type-find-factory.c: added NULL check.
|
640
|
-
|
641
|
-
* src/rbgst-type-find-factory.c: cleanup.
|
642
|
-
* test/test_type_find_factory.rb: added a test for extensions.
|
643
|
-
|
644
|
-
* src/rbgst-index-factory.c: supported find and description.
|
645
|
-
* test/test_index_factory.rb: added a test for find and description.
|
646
|
-
|
647
|
-
* src/rbgst-element-factory.c: supported long_name.
|
648
|
-
* test/test_element_factory.rb: added a test for long_name.
|
649
|
-
|
650
|
-
2007-11-10 Kouhei Sutou <kou@cozmixng.org>
|
651
|
-
|
652
|
-
* src/rbgst-message.c: supported parsing message API.
|
653
|
-
* test/test_message.rb: added tests for parsing message.
|
654
|
-
|
655
|
-
* src/rbgst-message.c: supported new message API.
|
656
|
-
* test/test_message.rb: added tests for new message.
|
657
|
-
|
658
|
-
* src/rbgst-structure.c, src/rbgst.h: cleanup.
|
659
|
-
* src/rbgstcaps.c, src/rbgsttagsetter.c: followed the above changes.
|
660
|
-
|
661
|
-
* src/rbgst-message.c: supported structure API.
|
662
|
-
* test/test_message.rb: added tests for structure.
|
663
|
-
|
664
|
-
* src/rbgst-message.c: supported source API.
|
665
|
-
* test/test_message.rb: added tests for source.
|
666
|
-
|
667
|
-
* src/rbgst-message.c: supported timestamp API.
|
668
|
-
* test/test_message.rb: added tests for timestamp.
|
669
|
-
|
670
|
-
* src/rbgst-message.c: supported thread API.
|
671
|
-
* test/test_message.rb: added tests for thread.
|
672
|
-
|
673
|
-
* src/rbgst-message.c: supported Gst::Message.new.
|
674
|
-
* test/test_message.rb: added tests for initialization.
|
675
|
-
|
676
|
-
* src/rbgst-mini-object.c, test/test_mini_object.rb: make_writable
|
677
|
-
-> writable!.
|
678
|
-
|
679
|
-
* src/rbgst-buffer.c: implemented span API.
|
680
|
-
* test/test_buffer.rb: added tests for span.
|
681
|
-
|
682
|
-
* src/rbgst-mini-object.c: supported dynamically name resolving.
|
683
|
-
|
684
|
-
* src/rbgst-buffer.c: implemented metatdata_writable API.
|
685
|
-
* test/test_buffer.rb: added tests for metadata_writable.
|
686
|
-
|
687
|
-
* src/rbgst-buffer.c: implemented copy_metatdata API.
|
688
|
-
* test/test_buffer.rb: added tests for copy_metadata.
|
689
|
-
|
690
|
-
* src/rbgst-buffer.c: implemented GstBufferCopyFlags API.
|
691
|
-
* test/test_buffer.rb: added tests for GstBufferCopyFlags.
|
692
|
-
|
693
|
-
* src/rbgst-buffer.c: implemented disconitnuity API.
|
694
|
-
* test/test_buffer.rb: added tests for disconitnuity.
|
695
|
-
|
696
|
-
* src/rbgst-buffer.c: implemented offset_end API.
|
697
|
-
* test/test_buffer.rb: added tests for offset_end.
|
698
|
-
|
699
|
-
* src/rbgst-buffer.c: implemented offset API.
|
700
|
-
* test/test_buffer.rb: added tests for offset.
|
701
|
-
|
702
|
-
* src/rbgst-buffer.c: used GST_BUFFER_CAPS instead of
|
703
|
-
gst_buffer_get_caps().
|
704
|
-
|
705
|
-
* src/rbgst-buffer.c: used macros for GstBuffer.
|
706
|
-
|
707
|
-
* src/rbgst-buffer.c: implemented caps API.
|
708
|
-
* test/test_buffer.rb: added tests for caps.
|
709
|
-
|
710
|
-
* src/rbgst-buffer.c: implemented duration API.
|
711
|
-
* test/test_buffer.rb: added tests for duration.
|
712
|
-
|
713
|
-
2007-11-08 Kouhei Sutou <kou@cozmixng.org>
|
714
|
-
|
715
|
-
* src/rbgst-buffer.c: implemented timestamp API.
|
716
|
-
* test/test_buffer.rb: added a test for timestamp.
|
717
|
-
|
718
|
-
* src/rbgst.h, src/rbgst-clock.c, src/rbgstclock.c: rewrote clock.
|
719
|
-
* test/test_clock.rb: added.
|
720
|
-
|
721
|
-
* src/rbgst-buffer.c: implemented size setter.
|
722
|
-
* test/test_buffer.rb: added test for setting size.
|
723
|
-
|
724
|
-
* src/rbgst-buffer.c: implemented data accessor.
|
725
|
-
* test/test_buffer.rb: added test for data.
|
726
|
-
|
727
|
-
* src/rbgst-buffer.c: implemented size.
|
728
|
-
* test/test_buffer.rb: added test for size.
|
729
|
-
|
730
|
-
* src/rbgst.h (RVAL2GST_BUF): added.
|
731
|
-
* src/rbgst-buffer.c: added flag related API.
|
732
|
-
* test/test_buffer.rb: added.
|
733
|
-
|
734
|
-
* src/rbgst-mini-object.c: implemented flags related APIs.
|
735
|
-
* test/test_mini_object.rb: added tests for flags.
|
736
|
-
|
737
|
-
* test/run-test.rb: added paths for Ruby/GLib.
|
738
|
-
|
739
|
-
2007-11-05 Kouhei Sutou <kou@cozmixng.org>
|
740
|
-
|
741
|
-
* src/rbgst-buffer.c, src/rbgst.[ch]: added Gst::Buffer.
|
742
|
-
|
743
|
-
* src/rbgst-mini-object.c: added flag related methods.
|
744
|
-
* test/test_mini_object.rb: added a test for writable.
|
745
|
-
|
746
|
-
* test/test_mini_object.rb: added a test for instanciation.
|
747
|
-
|
748
|
-
* src/rbgst-mini-object.c: rb_gst_* -> rbgst_*.
|
749
|
-
|
750
|
-
* src/rbgst-mini-object.c, test/test_mini_object.rb: added
|
751
|
-
abstract check.
|
752
|
-
|
753
|
-
* test/test-unit-ext.rb, test/test-unit-ext/: added.
|
754
|
-
* test/run-test.rb: used test-unit-ext.
|
755
|
-
|
756
|
-
* test/, test/run-test.rb, test/test_mini_object.rb: just added.
|
757
|
-
|
758
|
-
2007-10-03 Kouhei Sutou <kou@cozmixng.org>
|
759
|
-
|
760
|
-
* src/rbgst-mini-object.c, src/rbgst-message.c, src/rbgst-bus.c:
|
761
|
-
added.
|
762
|
-
* src/rbgst.[ch]: registered above classes.
|
763
|
-
* sample/ogg-audio-player.rb: added GStreamer's Hello World
|
764
|
-
application.
|
765
|
-
|
766
|
-
2007-10-01 Kouhei Sutou <kou@cozmixng.org>
|
767
|
-
|
768
|
-
* src/rbgst.h: added convert macro for Gst::Bus.
|
769
|
-
* src/rbgstmediainfo.c: removed.
|
770
|
-
* src/rbgstpipeline.c: added Gst::Pipeline#bus.
|
771
|
-
* sample/video-player.rb: just worked.
|
772
|
-
|
773
|
-
2007-09-29 Kouhei Sutou <kou@cozmixng.org>
|
774
|
-
|
775
|
-
* extconf.rb, README, src/: made build-able with
|
776
|
-
gstreamer-0.10. only just build-able.
|
777
|
-
* sample/gst-inspect.rb: partially worked.
|
778
|
-
|
779
|
-
2007-07-08 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
|
780
|
-
|
781
|
-
* src/*.c: use rb_block_proc() directly instead of using G_BLOCK_PROC().
|
782
|
-
|
783
|
-
2006-06-17 Masao Mutoh <mutoh@highway.ne.jp>
|
784
|
-
|
785
|
-
* sample/video-player.rb: Remove Gtk.init.
|
786
|
-
|
787
|
-
2005-10-07 Masao Mutoh <mutoh@highway.ne.jp>
|
788
|
-
|
789
|
-
* src/rbgstelement.c: g_type_name() returns const gchar*, not gchar*.
|
790
|
-
Reported by Sven Herzberg.
|
791
|
-
* src/misc.c: ditto.
|
792
|
-
|
793
|
-
2005-10-06 Masao Mutoh <mutoh@highway.ne.jp>
|
794
|
-
|
795
|
-
* src/rbgst.c: Added Gst::BUILD_VERSION.
|
796
|
-
* src/rbgstelement.c: Gst::Element#get_property returns
|
797
|
-
correct name instead of Class class.
|
798
|
-
|
799
|
-
2005-08-04 Laurent Sansonetti <lrz@gnome.org>
|
800
|
-
|
801
|
-
* src/misc.c, src/rbgstelementfactory.c, src/rbgstindexfactory.c,
|
802
|
-
src/rbgstschedulerfactory.c, src/rbgsttypefindfactory.c: Renamed
|
803
|
-
rb_str_format () to rb_str_new_with_format () as Ruby 1.9 introduces a
|
804
|
-
new function with the same name.
|
805
|
-
|
806
|
-
2005-07-24 Masao Mutoh <mutoh@highway.ne.jp>
|
807
|
-
|
808
|
-
* src/rbgstxml.c: Fix compiling warning.
|
809
|
-
|
810
|
-
2005-06-29 Laurent Sansonetti <lrz@gnome.org>
|
811
|
-
|
812
|
-
* src/rbgst.h, src/rbgststructure.c, src/rbgsttagsetter.c: Properly
|
813
|
-
convert the Hash argument given to GstTagSetter#merge to a GstTagList
|
814
|
-
by naming the GstStructure accordingly. Problem reported by Pablo
|
815
|
-
Lorenzzoni.
|
816
|
-
|
817
|
-
2005-06-20 Laurent Sansonetti <lrz@gnome.org>
|
818
|
-
|
819
|
-
* src/rbgstelement.c: Added a custom signal handler for the 'found_tag'
|
820
|
-
signal that converts the GstTagList. Problem reported by Erik Karlsson.
|
821
|
-
|
822
|
-
2005-04-30 Laurent Sansonetti <lrz@gnome.org>
|
823
|
-
|
824
|
-
* sample/video-player.rb: Added.
|
825
|
-
|
826
|
-
2005-04-25 Laurent Sansonetti <lrz@gnome.org>
|
827
|
-
|
828
|
-
* src/rbgstxoverlay.c: Added.
|
829
|
-
* extconf.rb, src/rbgst.h: Follow latest change.
|
830
|
-
|
831
|
-
2005-03-21 Laurent Sansonetti <lrz@gnome.org>
|
832
|
-
|
833
|
-
Problems reported by Bas Kloet.
|
834
|
-
|
835
|
-
* src/rbgstcaps.c: Fixed #initialize (GstCaps does not inherit from
|
836
|
-
GstObject anymore) and API reference still referencing the deprecated
|
837
|
-
Gst::Structure.
|
838
|
-
* src/rbgstpad.c (#each_caps): Removed, (#link_filtered): Added.
|
839
|
-
* src/rbgststructure.c: Fixed hash-to-gst-structure conversion.
|
840
|
-
* src/rbgstelement.c (#link_filtered): Added.
|
841
|
-
|
842
|
-
2005-03-04 Laurent Sansonetti <lrz@gnome.org>
|
843
|
-
|
844
|
-
* src/rbgstregistrypool.c, src/rbgstschedulerfactory.c, src/rbgsttag.c,
|
845
|
-
src/rbgsttagsetter.c, src/rbgsttypefindfactory.c: Updated API reference.
|
846
|
-
|
847
|
-
2005-02-23 Laurent Sansonetti <lrz@gnome.org>
|
848
|
-
|
849
|
-
* src/rbgstregistrypool.c: Added.
|
850
|
-
* src/rbgsttagsetter.c: Added.
|
851
|
-
* src/rbgst.c: Initializes Gst::RegistryPool and Gst::TagSetter.
|
852
|
-
* src/rbgst.h: Added helper macro for Gst::TagSetter and Gst::Plugin.
|
853
|
-
* src/rbgstscheduler.c (Gst::Scheduler::Flags): Added.
|
854
|
-
* src/rbgstschedulerfactory.c (::default_name, ::set_default_name): Added.
|
855
|
-
* src/rbgstthread.c (::current): Added.
|
856
|
-
* src/rbgsttypefindfactory.c (#extensions): Implemented.
|
857
|
-
* src/rbgstxml.c (#parse_memory): Added.
|
858
|
-
|
859
|
-
2005-02-21 Laurent Sansonetti <lrz@gnome.org>
|
860
|
-
|
861
|
-
* src/rbgst.c: Initialize Gst::Tag, do not initialize Gst::Structure.
|
862
|
-
* src/rbgst.h: Removed helper macros for Gst::Structure.
|
863
|
-
* src/rbgsttag.c: Added.
|
864
|
-
* src/rbgstcaps.c: Convert Gst::Structure to Hash.
|
865
|
-
* src/rbgstmediainfo.c:
|
866
|
-
- #initialize throws Gst::MediaInfoError upon problems ;
|
867
|
-
- Added #set_source ;
|
868
|
-
- #metadata and #streaminfo now return a Hash (instead of a Gst::Structure).
|
869
|
-
* src/rbgstplugin.c:
|
870
|
-
- Added #major_version, #minor_version, #version ;
|
871
|
-
- Added missing documentation.
|
872
|
-
* src/rbgststructure.c:
|
873
|
-
- Deprecated Gst::Structure ;
|
874
|
-
- Added two functions to convert Ruby Hash to Gst::Structure and vice-versa.
|
875
|
-
* sample/media-type.rb, sample/gst-inspect.rb: Follow these changes.
|
876
|
-
|
877
|
-
2005-02-09 Masao Mutoh <mutoh@highway.ne.jp>
|
878
|
-
|
879
|
-
* src/rbgstmediainfo.c: Added Gst::MediaInfoError.
|
880
|
-
Raise an Gst::MediaInfoError when an error raised in
|
881
|
-
Gst::MediaInfo#read.
|
882
|
-
Reported by Max Nickel.
|
883
|
-
* src/rbgstcaps.c: Added G_DEF_SETTERS().
|
884
|
-
|
885
|
-
2005-02-09 Max Nickel <max@unmuted.de>
|
886
|
-
|
887
|
-
* src/rbgstcaps.c: Fix a wrong argument of Gst::Caps#get_structure.
|
888
|
-
|
889
|
-
2005-02-09 Jack, Paul <pjack@sfaf.org>
|
890
|
-
|
891
|
-
* src/rbgsttypefindfactory.c: Added.
|
892
|
-
* sample/gst-inspect.rb: Replaced print_caps function
|
893
|
-
with caps.to_s
|
894
|
-
* src/rbgst.c: Added call to Init_gst_typefindfactory.
|
895
|
-
* src/rbgst.h: Added RGST_TYPE_FIND_FACTORY macro
|
896
|
-
and RGST_TYPE_FIND_FACTORY_NEW macro
|
897
|
-
* src/rbgstpad.c: Replaced nonexistent RBGST_CAPS macro
|
898
|
-
with RGST_CAPS_NEW macro.
|
899
|
-
* src/rbgstpadtemplate.c: Replaced nonexistent RBGST_CAPS
|
900
|
-
macro with RGST_CAPS_NEW macro.
|
901
|
-
* src/rbgstplugin.c: Added filename, description, package,
|
902
|
-
license, origin and name accessor methods.
|
903
|
-
* src/rbgstpluginfeature.c: Added ability to instantiate
|
904
|
-
Gst::TypeFindFactory.
|
905
|
-
* src/rbgsttypefindfactory.c: New file.
|
906
|
-
|
907
|
-
2005-01-30 Masao Mutoh <mutoh@highway.ne.jp>
|
908
|
-
|
909
|
-
* extconf.rb: Follow mkmf-gnome2.rb changes.
|
910
|
-
|
911
|
-
2004-08-27 Masao Mutoh <mutoh@highway.ne.jp>
|
912
|
-
|
913
|
-
* src/rbgstparse.c: Improved error handling.
|
914
|
-
|
915
|
-
2004-08-05 Laurent Sansonetti <lrz@gnome.org>
|
916
|
-
|
917
|
-
* src/rbgst.c: Fixed bad comments (for the constants).
|
918
|
-
* src/rbgstcaps.c: Added missing Returns statements in the
|
919
|
-
comments.
|
920
|
-
* src/rbgstscheduler.c: Fixed a bug when creating the GEnum,
|
921
|
-
reported by Pascal Terjan.
|
922
|
-
|
923
|
-
2004-08-03 Laurent Sansonetti <lrz@gnome.org>
|
924
|
-
|
925
|
-
* src/rbgstelement.c (#seek, #locked_state?, #set_locked_state,
|
926
|
-
#sync_state_with_parent, #managing_bin, #no_more_pads):
|
927
|
-
Added.
|
928
|
-
|
929
|
-
2004-08-02 Laurent Sansonetti <lrz@gnome.org>
|
930
|
-
|
931
|
-
* src/rbgstelement.c (#get_static_pad, #get_request_pad,
|
932
|
-
#release_request_pad, #get_compatible_pad, #get_pad_template,
|
933
|
-
#pad_templates, #each_pad_template, #get_compatible_pad_template):
|
934
|
-
Added.
|
935
|
-
|
936
|
-
2004-08-01 Laurent Sansonetti <lrz@gnome.org>
|
937
|
-
|
938
|
-
* src/rbgst.c: Initializes Gst::Scheduler.
|
939
|
-
* src/rbgst.h: Added helper macros for Gst::Scheduler.
|
940
|
-
* src/rbgstelement.c (#scheduler, #set_scheduler): Added.
|
941
|
-
* src/rbgstscheduler.c: Added.
|
942
|
-
|
943
|
-
2004-07-31 Laurent Sansonetti <lrz@gnome.org>
|
944
|
-
|
945
|
-
* src/rbgst.c: Initializes Gst::Index and Gst::IndexEntry.
|
946
|
-
* src/rbgst.h: Added helper macros for Gst::Index and Gst::IndexEntry.
|
947
|
-
* src/rbgstelement.c (#index, #set_index): Added.
|
948
|
-
* src/rbgstindex.c, src/rbgstindexentry.c: Added.
|
949
|
-
|
950
|
-
2004-07-28 Laurent Sansonetti <lrz@gnome.org>
|
951
|
-
|
952
|
-
* src/rbgst.c: Initializes Gst::Structure.
|
953
|
-
* src/rbgst.h: Added helper macros for Gst::Structure and fixed
|
954
|
-
the declaration of the Gst::ClockEntry's GType function.
|
955
|
-
* src/rbgstcaps.c (#initialize, #set_any, #append, #append_structure,
|
956
|
-
#size, #get_structure, #set_simple, #any?, #empty?, #simple?,
|
957
|
-
#equal?, #equal_fixed?, #always_compatible?, #subset?, #intersect,
|
958
|
-
#union, #normalize, #simplify, #simplify!, #replace!, #to_string,
|
959
|
-
#subtract): Added.
|
960
|
-
* src/rbgstclock.c (#event_time, #get_event_time_delay, #next_id):
|
961
|
-
Added.
|
962
|
-
* src/rbgstclockentry.c: Indentation clean.
|
963
|
-
* src/rbgstelement.c (#enable_threadsafe_properties,
|
964
|
-
#disable_threadsafe_properties, #set_pending_properties,
|
965
|
-
#set_clock, #time, #set_time, #set_time_delay, #adjust_time):
|
966
|
-
Added.
|
967
|
-
* src/rbgststructure.c: Added.
|
968
|
-
|
969
|
-
2004-07-25 Laurent Sansonetti <lrz@gnome.org>
|
970
|
-
|
971
|
-
* src/rbgst.c (Gst.set_debug): Removed.
|
972
|
-
* src/rbgst.h: Removed obsolete macros.
|
973
|
-
* src/rbgstbin.c (#get_by_interface, #get_all_by_interface,
|
974
|
-
#each_by_interface): Added. Existing code has been refactored.
|
975
|
-
|
976
|
-
2004-07-23 Laurent Sansonetti <lrz@gnome.org>
|
977
|
-
|
978
|
-
* README: We require 0.8.x now.
|
979
|
-
* extconf.rb: Check for gstreamer-0.8 and gst-mediainfo-0.8 instead
|
980
|
-
of 0.6.
|
981
|
-
* src/rbgst.c: Do not initialize autoplug, autoplugfactory, type,
|
982
|
-
typefactory and typefind anymore (since they have been removed).
|
983
|
-
* src/rbgstautoplug.c, src/rbgstautoplugfactory.c, src/rbgsttype.c,
|
984
|
-
src/rbgsttypefactory.c, src/rbgsttypefind.c: Removed.
|
985
|
-
* src/rbgstcaps.c, src/rbgstelementfactory.c, src/rbgstmediainfo.c,
|
986
|
-
src/rbgstpad.c, src/rbgstpadtemplate.c, src/rbgstplugin.c,
|
987
|
-
src/rbgstpluginfeature.c: Compiles against 0.8.x.
|
988
|
-
|
989
|
-
2004-03-23 Laurent Sansonetti <lrz@gnome.org>
|
990
|
-
|
991
|
-
* src/rbgstelement.c (#get_property): Fixed a memory leak
|
992
|
-
in GValue conversion (discovered by Masao Mutoh).
|
993
|
-
|
994
|
-
2004-03-07 Laurent Sansonetti <lrz@gnome.org>
|
995
|
-
|
996
|
-
* src/*.[ch]: Updated copyright.
|
997
|
-
|
998
|
-
2004-03-06 Laurent Sansonetti <lrz@gnome.org>
|
999
|
-
|
1000
|
-
* src/rbgstelement.c (#query): Fixed bad GEnum conversion.
|
1001
|
-
|
1002
|
-
2004-03-06 Masao Mutoh <mutoh@highway.ne.jp>
|
1003
|
-
|
1004
|
-
* README: Update Copyright.
|
1005
|
-
|
1006
|
-
2004-03-02 Laurent Sansonetti <lrz@gnome.org>
|
1007
|
-
|
1008
|
-
* src/rbgst.c: Defines Gst::[MAJOR|MINOR|MACRO]_VERSION.
|
1009
|
-
* src/rbgstpad.c (#caps, #each_caps): Added.
|
1010
|
-
* src/rbgstpadtemplate.c (#caps): Uses the gst_pad_template_get_caps
|
1011
|
-
C function instead of directly accessing the structure fields.
|
1012
|
-
* src/rbgsttype.c (find_by_ext): Added.
|
1013
|
-
|
1014
|
-
2004-03-02 Laurent Sansonetti <lrz@gnome.org>
|
1015
|
-
|
1016
|
-
* extconf.rb: Removed assert.h dependency.
|
1017
|
-
* src/*.[ch]:
|
1018
|
-
- Refactored some parts of the code.
|
1019
|
-
- Updated coding style;
|
1020
|
-
- Updated comments for the API reference;
|
1021
|
-
- Uses GLib assertions (g_assert);
|
1022
|
-
- Uses G_DEF_CONSTANTS to define GLib enumerations/flags.
|
1023
|
-
* sample/gst-inspect.rb, sample/media-type2.rb: Follows API changes.
|
1024
|
-
|
1025
|
-
2004-02-17 Laurent Sansonetti <lrz@gnome.org>
|
1026
|
-
|
1027
|
-
* src/rbgstbin.c: Added GstBin#[] as a alias for GstBin#get_by_name.
|
1028
|
-
|
1029
|
-
2003-11-14 Laurent Sansonetti <lrz@gnome.org>
|
1030
|
-
|
1031
|
-
* Changed my e-mail address (laurent@datarescue.be -> lrz@gnome.org).
|
1032
|
-
|
1033
|
-
2003-09-05 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
|
1034
|
-
|
1035
|
-
* extconf.rb: win32 support.
|
1036
|
-
|
1037
|
-
2003-08-29 Laurent Sansonetti <lrz@gnome.org>
|
1038
|
-
|
1039
|
-
* src/rbgstclockentry.c: New file.
|
1040
|
-
* src/rbgst.c: Initializes Gst::ClockEntry.
|
1041
|
-
* src/rbgst.h: Added macros for Gst::ClockEntry + fixed a critical bug
|
1042
|
-
in ULL conversion.
|
1043
|
-
* src/rbgstclock.c: Added a lot of methods + some constants.
|
1044
|
-
Class is now finished.
|
1045
|
-
* src/rbgsteventsize.c: Fixed typos in a comment (for API reference).
|
1046
|
-
* tests/misc.rb, tests/tc_clock.rb: Added additional tests for Gst::Clock.
|
1047
|
-
|
1048
|
-
2003-08-28 Masao Mutoh <mutoh@highway.ne.jp>
|
1049
|
-
|
1050
|
-
* extconf.rb: Exit with 1 when the package is not found.
|
1051
|
-
|
1052
|
-
2003-08-25 Laurent Sansonetti <lrz@gnome.org>
|
1053
|
-
|
1054
|
-
* src/rbgst.h, src/rbgstplugin.c, src/rbgstpluginfeature.c:
|
1055
|
-
Introduced is_valid_pluginfeature_type() and
|
1056
|
-
instanciate_pluginfeature().
|
1057
|
-
* src/rbgstregistry.c: Added a lot of methods + some constants.
|
1058
|
-
Class is now finished.
|
1059
|
-
* tests/tc_registry.rb: New file.
|
1060
|
-
* tests/tc_plugin.rb: Moved 'test_registry' in tests/tc_registry.rb.
|
1061
|
-
* src/rbgstmediainfo.c: Implemented Gst::MediaInfoTrack#con_streams.
|
1062
|
-
|
1063
|
-
2003-08-24 Laurent Sansonetti <lrz@gnome.org>
|
1064
|
-
|
1065
|
-
* src/rbgstbin.c: Added methods get_by_name_recurse_up, auto_clock,
|
1066
|
-
use_clock and on_[pre|post]_iterate.
|
1067
|
-
* tests/rc_element.rb: Added tests for Gst::Bin#get_by_name* and
|
1068
|
-
on_[pre|post]_iterate.
|
1069
|
-
|
1070
|
-
2003-08-23 Laurent Sansonetti <lrz@gnome.org>
|
1071
|
-
|
1072
|
-
* src/rbgst*.c: Changed extdoc.rb enumeration syntax to something
|
1073
|
-
more RDish (-a, -b, -c to *a, *b, *c).
|
1074
|
-
|
1075
|
-
2003-08-19 Laurent Sansonetti <lrz@gnome.org>
|
1076
|
-
|
1077
|
-
* src/rbgst*.c: Fixed comments + removed obsolete code.
|
1078
|
-
|
1079
|
-
2003-08-15 Laurent Sansonetti <lrz@gnome.org>
|
1080
|
-
|
1081
|
-
* sample/xml-ogg-player.rb: New file.
|
1082
|
-
* sample/media-type.rb: Fixed a bug when printing track length (needed
|
1083
|
-
to divide with Gst::Second to have the correct number of seconds).
|
1084
|
-
* src/rbgstmediainfo.c: Fixed integer conversion bug (now uses ULL).
|
1085
|
-
|
1086
|
-
2003-08-14 Laurent Sansonetti <lrz@gnome.org>
|
1087
|
-
|
1088
|
-
* src/rbgstxml.c, tests/tc_xml.rb: New files.
|
1089
|
-
* src/rbgst.c: Initializes Gst::XML.
|
1090
|
-
* src/rbgst.h: Added macros for Gst::XML.
|
1091
|
-
|
1092
|
-
2003-08-10 Laurent Sansonetti <lrz@gnome.org>
|
1093
|
-
|
1094
|
-
* src/rbgstautoplug.c, src/rbgstelement.c, src/rbgsteventseek.c,
|
1095
|
-
src/rbgsteventsegmentseek.c, src/rbgstformat.c, src/rbgstpad.c,
|
1096
|
-
src/rbgstparse.c, src/rbgstquerytype.c: Fixed typos in C comments.
|
1097
|
-
|
1098
|
-
2003-08-09 Hiroshi Igarashi <iga@ruby-lang.org>
|
1099
|
-
|
1100
|
-
* src/rbgst.c: Fixed a compilation bug with old 2.x GCC.
|
1101
|
-
|
1102
|
-
2003-08-09 Laurent Sansonetti <lrz@gnome.org>
|
1103
|
-
|
1104
|
-
* sample/media-type2.rb: New file (thanks to Nikolai Weibull).
|
1105
|
-
|
1106
|
-
2003-08-08 Laurent Sansonetti <lrz@gnome.org>
|
1107
|
-
|
1108
|
-
* sample/gst-inspect.rb: Added signals and event masks support.
|
1109
|
-
* src/rbgsteventmask.c: New file.
|
1110
|
-
* src/rbgst.c: Initializes Gst::EventMask.
|
1111
|
-
* src/rbgst.h: Added macros for Gst::EventMask.
|
1112
|
-
* src/rbgstpad.c: Implemented methods event_masks and each_event_mask.
|
1113
|
-
* src/rbgstquerytype.c: Renamed method id to type_id.
|
1114
|
-
|
1115
|
-
2003-08-04 Laurent Sansonetti <lrz@gnome.org>
|
1116
|
-
|
1117
|
-
* src/rbgst.c: Added constants Gst::SECOND, Gst::MSECOND, Gst::USECOND
|
1118
|
-
and Gst::NSECOND.
|
1119
|
-
* src/rbgstcaps.c: Added methods mime, set_mime and mime=.
|
1120
|
-
* src/rbgstformat.c: Renamed method id to type_id.
|
1121
|
-
* src/rbgstpad.c, src/rbgstelement.c: Methods query sets the format
|
1122
|
-
parameter on success.
|
1123
|
-
|
1124
|
-
2003-08-03 Laurent Sansonetti <lrz@gnome.org>
|
1125
|
-
|
1126
|
-
* src/rbgsteventseek.c, src/rbgsteventsegmentseek.c, src/rbgsteventsize.c:
|
1127
|
-
New files.
|
1128
|
-
* src/rbgst.c: Initializes Gst::EventSeek, Gst::EventSegmentSeek and
|
1129
|
-
Gst::EventSize.
|
1130
|
-
* src/rbgst.h: Fixed bug in macros for Gst::Caps and Gst::Event +
|
1131
|
-
introduced NUM2ULL.
|
1132
|
-
* src/rbgstcaps.c: Removed obsolete _get/_wrap functions.
|
1133
|
-
* src/rbgstelement.c: Uses ULL2NUM in query.
|
1134
|
-
* src/rbgstevent.c: Added methods src and timestamp.
|
1135
|
-
* src/rbgstpad.c: Uses ULL2NUM in query + added method send_event.
|
1136
|
-
|
1137
|
-
2003-08-01 Laurent Sansonetti <lrz@gnome.org>
|
1138
|
-
|
1139
|
-
* src/rbgstparse.c, tests/tc_parse.rb: New files.
|
1140
|
-
* src/rbgst.c: Initializes the Gst::Parse module.
|
1141
|
-
* src/rbgstmediainfo.c: Removed a debug warning.
|
1142
|
-
|
1143
|
-
2003-07-30 Laurent Sansonetti <lrz@gnome.org>
|
1144
|
-
|
1145
|
-
* src/rbgstpad.c: Added method query.
|
1146
|
-
|
1147
|
-
2003-07-29 Laurent Sansonetti <lrz@gnome.org>
|
1148
|
-
|
1149
|
-
* src/rbgstcaps.c, src/rbgstclock.c, src/rbgstformat.c, src/rbgstplugin.c,
|
1150
|
-
src/rbgstquerytype.c src/rbgsttype.c:
|
1151
|
-
Fixed '==' operators (they were broken when used against nil values).
|
1152
|
-
* src/rbgstmediainfo.c, sample/media-type.rb: New files.
|
1153
|
-
* src/rbgst.c: Initializes the media-info extension if needed.
|
1154
|
-
* extconf.rb: Checks if the gstmedia-info library is installed,
|
1155
|
-
and sets the HAVE_MEDIA_INFO macro accordingly.
|
1156
|
-
|
1157
|
-
2003-07-28 Laurent Sansonetti <lrz@gnome.org>
|
1158
|
-
|
1159
|
-
* src/rbgstautoplug.c: Added method signal_new_object.
|
1160
|
-
* src/rbgstpluginfeature.c: Added methods ensure_loaded and
|
1161
|
-
unload_thyself.
|
1162
|
-
|
1163
|
-
2003-07-25 Laurent Sansonetti <lrz@gnome.org>
|
1164
|
-
|
1165
|
-
* AUTHORS: removed
|
1166
|
-
* .cvsignore, AUTHORS, COPYING.LIB, README, extconf.rb,
|
1167
|
-
sample/audio-player.rb, sample/gst-inspect.rb,
|
1168
|
-
sample/mp3-player.rb, src/.cvsignore, src/misc.c, src/rbgst.c,
|
1169
|
-
src/rbgst.h, src/rbgstautoplug.c, src/rbgstautoplugfactory.c,
|
1170
|
-
src/rbgstbin.c, src/rbgstcaps.c, src/rbgstclock.c,
|
1171
|
-
src/rbgstcpu.c, src/rbgstelement.c, src/rbgstelementfactory.c,
|
1172
|
-
src/rbgstevent.c, src/rbgstformat.c, src/rbgstindexfactory.c,
|
1173
|
-
src/rbgstobject.c, src/rbgstpad.c, src/rbgstpadtemplate.c,
|
1174
|
-
src/rbgstpipeline.c, src/rbgstplugin.c, src/rbgstpluginfeature.c,
|
1175
|
-
src/rbgstquerytype.c, src/rbgstregistry.c,
|
1176
|
-
src/rbgstschedulerfactory.c, src/rbgstsystemclock.c,
|
1177
|
-
src/rbgstthread.c, src/rbgsttype.c, src/rbgsttypefactory.c,
|
1178
|
-
src/rbgsttypefind.c, src/lib/gst.rb, tests/misc.rb,
|
1179
|
-
tests/tc_all.rb, tests/tc_clock.rb, tests/tc_cpu.rb,
|
1180
|
-
tests/tc_element.rb, tests/tc_modfunc.rb, tests/tc_pad.rb,
|
1181
|
-
tests/tc_plugin.rb, tests/tc_type.rb: initial SF import
|
1182
|
-
|
1183
|
-
2003-07-07 Laurent Sansonetti <lrz@gnome.org>
|
1184
|
-
|
1185
|
-
* 0.1.1 released
|
1186
|
-
* improved the existing API (in the Ruby way)
|
1187
|
-
* added some classes (AutoplugFactory, Caps, Clock, Format,
|
1188
|
-
IndexFactory, Pad, PadTemplate, Plugin, PluginFeature,
|
1189
|
-
QueryType, Registry, SchedulerFactory, Type, TypeFactory)
|
1190
|
-
* gst-inspect example
|
1191
|
-
* improved documentation system:
|
1192
|
-
* C tags are now human readable
|
1193
|
-
* added inclusion and inheritance maps
|
1194
|
-
* enhanced support of Ruby operators
|
1195
|
-
|
1196
|
-
2003-06-01 Laurent Sansonetti <lrz@gnome.org>
|
1197
|
-
|
1198
|
-
* 0.1.0 released
|
1199
|
-
* basic API
|
1200
|
-
* helloworld (mp3-player) example
|
1201
|
-
* basic documentation system
|
1202
|
-
|