clutter-gstreamer 3.0.8-x64-mingw32 → 3.0.9-x64-mingw32
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.
- checksums.yaml +4 -4
- data/lib/clutter-gst.rb +3 -3
- data/test/run-test.rb +9 -0
- data/vendor/local/lib/gstreamer-1.0/libgstclutter-3.0.dll.a +0 -0
- data/vendor/local/lib/libclutter-gst-3.0.dll.a +0 -0
- data/vendor/local/share/gtk-doc/html/clutter-gst-3.0/ClutterGstAspectratio.html +5 -5
- data/vendor/local/share/gtk-doc/html/clutter-gst-3.0/ClutterGstCamera.html +132 -132
- data/vendor/local/share/gtk-doc/html/clutter-gst-3.0/ClutterGstCameraDevice.html +21 -21
- data/vendor/local/share/gtk-doc/html/clutter-gst-3.0/ClutterGstCameraManager.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter-gst-3.0/ClutterGstContent.html +14 -14
- data/vendor/local/share/gtk-doc/html/clutter-gst-3.0/ClutterGstCrop.html +5 -5
- data/vendor/local/share/gtk-doc/html/clutter-gst-3.0/ClutterGstPlayback.html +79 -79
- data/vendor/local/share/gtk-doc/html/clutter-gst-3.0/ClutterGstPlayer.html +38 -38
- data/vendor/local/share/gtk-doc/html/clutter-gst-3.0/clutter-gst-Types.html +7 -7
- data/vendor/local/share/gtk-doc/html/clutter-gst-3.0/clutter-gst-Utilities.html +12 -12
- data/vendor/local/share/gtk-doc/html/clutter-gst-3.0/clutter-gst-Versioning-Macros.html +1 -1
- data/vendor/local/share/gtk-doc/html/clutter-gst-3.0/clutter-gst-Video-Sink.html +16 -16
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 572d584a33cb92ea8fc81da689f1390c17ad7037
|
4
|
+
data.tar.gz: c664be85a52bd8a3df7b3a25b5e6ceda084421d2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0cf71d56c31b0370a4df8fe32669add37ceafbb1ff744fec22ec592fb1b8d1bec47a7ce0fabea8e6afd847f068962cc061aad3c311180a179824b9318c406404
|
7
|
+
data.tar.gz: de9aaf86fcccf4b6ef5ed869133d441bcadd16f8117f369376036fd458c1cf5e58102587e4e1d71f5595a08713e9752f882f3a612ad7b2d7c0e77e1f18c60022
|
data/lib/clutter-gst.rb
CHANGED
@@ -57,12 +57,12 @@ module ClutterGst
|
|
57
57
|
|
58
58
|
self.load_version = nil
|
59
59
|
|
60
|
+
class InitError < StandardError
|
61
|
+
end
|
62
|
+
|
60
63
|
class Loader < GObjectIntrospection::Loader
|
61
64
|
NAMESPACE = "ClutterGst"
|
62
65
|
|
63
|
-
class InitError < StandardError
|
64
|
-
end
|
65
|
-
|
66
66
|
def initialize(base_module, init_arguments)
|
67
67
|
super(base_module)
|
68
68
|
@init_arguments = init_arguments
|
data/test/run-test.rb
CHANGED
@@ -24,6 +24,7 @@ ruby_gnome2_base = File.expand_path(ruby_gnome2_base)
|
|
24
24
|
glib_base = File.join(ruby_gnome2_base, "glib2")
|
25
25
|
cairo_gobject_base = File.join(ruby_gnome2_base, "cairo-gobject")
|
26
26
|
gobject_introspection_base = File.join(ruby_gnome2_base, "gobject-introspection")
|
27
|
+
gdk_pixbuf2_base = File.join(ruby_gnome2_base, "gdk_pixbuf2")
|
27
28
|
clutter_base = File.join(ruby_gnome2_base, "clutter")
|
28
29
|
gstreamer_base = File.join(ruby_gnome2_base, "gstreamer")
|
29
30
|
clutter_gstreamer_base = File.join(ruby_gnome2_base, "clutter-gstreamer")
|
@@ -32,6 +33,7 @@ modules = [
|
|
32
33
|
[glib_base, "glib2"],
|
33
34
|
[cairo_gobject_base, "cairo-gobject"],
|
34
35
|
[gobject_introspection_base, "gobject-introspection"],
|
36
|
+
[gdk_pixbuf2_base, "gdk_pixbuf2"],
|
35
37
|
[clutter_base, "clutter"],
|
36
38
|
[gstreamer_base, "gstreamer"],
|
37
39
|
[clutter_gstreamer_base, "clutter-gst"],
|
@@ -66,4 +68,11 @@ rescue GLib::Error
|
|
66
68
|
exit(true)
|
67
69
|
end
|
68
70
|
|
71
|
+
begin
|
72
|
+
Clutter.init
|
73
|
+
rescue Clutter::InitError
|
74
|
+
puts("Omit because initialization is failed: #{$!.message}")
|
75
|
+
exit(true)
|
76
|
+
end
|
77
|
+
|
69
78
|
exit Test::Unit::AutoRunner.run(true, File.join(clutter_gstreamer_base, "test"))
|
Binary file
|
Binary file
|
@@ -62,12 +62,12 @@
|
|
62
62
|
</colgroup>
|
63
63
|
<tbody>
|
64
64
|
<tr>
|
65
|
-
<td class="property_type"><a href="
|
65
|
+
<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
|
66
66
|
<td class="property_name"><a class="link" href="ClutterGstAspectratio.html#ClutterGstAspectratio--fill-allocation" title="The “fill-allocation” property">fill-allocation</a></td>
|
67
67
|
<td class="property_flags">Read / Write</td>
|
68
68
|
</tr>
|
69
69
|
<tr>
|
70
|
-
<td class="property_type"><a href="
|
70
|
+
<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
|
71
71
|
<td class="property_name"><a class="link" href="ClutterGstAspectratio.html#ClutterGstAspectratio--paint-borders" title="The “paint-borders” property">paint-borders</a></td>
|
72
72
|
<td class="property_flags">Read / Write</td>
|
73
73
|
</tr>
|
@@ -95,7 +95,7 @@
|
|
95
95
|
</div>
|
96
96
|
<div class="refsect1">
|
97
97
|
<a name="ClutterGstAspectratio.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
98
|
-
<pre class="screen"> <a href="
|
98
|
+
<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
99
99
|
<span class="lineart">╰──</span> <a class="link" href="ClutterGstContent.html" title="ClutterGstContent">ClutterGstContent</a>
|
100
100
|
<span class="lineart">╰──</span> ClutterGstAspectratio
|
101
101
|
</pre>
|
@@ -146,7 +146,7 @@ should not be accessed directly.</p>
|
|
146
146
|
<a name="ClutterGstAspectratio.property-details"></a><h2>Property Details</h2>
|
147
147
|
<div class="refsect2">
|
148
148
|
<a name="ClutterGstAspectratio--fill-allocation"></a><h3>The <code class="literal">“fill-allocation”</code> property</h3>
|
149
|
-
<pre class="programlisting"> “fill-allocation” <a href="
|
149
|
+
<pre class="programlisting"> “fill-allocation” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
|
150
150
|
<p>Whether the content should fill its allocation with video rather
|
151
151
|
than adding borders.</p>
|
152
152
|
<p>Flags: Read / Write</p>
|
@@ -156,7 +156,7 @@ than adding borders.</p>
|
|
156
156
|
<hr>
|
157
157
|
<div class="refsect2">
|
158
158
|
<a name="ClutterGstAspectratio--paint-borders"></a><h3>The <code class="literal">“paint-borders”</code> property</h3>
|
159
|
-
<pre class="programlisting"> “paint-borders” <a href="
|
159
|
+
<pre class="programlisting"> “paint-borders” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
|
160
160
|
<p>Whether or not paint borders on the sides of the video</p>
|
161
161
|
<p>Flags: Read / Write</p>
|
162
162
|
<p>Default value: FALSE</p>
|