clutter-gstreamer 2.2.0-x86-mingw32 → 2.2.1-x86-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.
Files changed (31) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +2 -4
  3. data/lib/clutter-gst.rb +3 -2
  4. data/lib/clutter-gstreamer.rb +17 -0
  5. data/sample/video-player.rb +2 -9
  6. data/sample/video-sink-navigation.rb +1 -2
  7. data/sample/video-sink.rb +1 -2
  8. data/test/clutter-gstreamer-test-utils.rb +21 -1
  9. data/test/run-test.rb +4 -1
  10. data/test/test-clutter-gst.rb +4 -1
  11. data/vendor/local/bin/libclutter-gst-2.0-0.dll +0 -0
  12. data/vendor/local/include/clutter-gst-2.0/clutter-gst/clutter-gst-version.h +3 -3
  13. data/vendor/local/lib/girepository-1.0/ClutterGst-2.0.typelib +0 -0
  14. data/vendor/local/lib/gstreamer-1.0/libgstclutter.dll +0 -0
  15. data/vendor/local/lib/gstreamer-1.0/libgstclutter.dll.a +0 -0
  16. data/vendor/local/lib/gstreamer-1.0/libgstclutter.la +1 -1
  17. data/vendor/local/lib/libclutter-gst-2.0.dll.a +0 -0
  18. data/vendor/local/lib/libclutter-gst-2.0.la +3 -3
  19. data/vendor/local/lib/pkgconfig/clutter-gst-2.0.pc +1 -1
  20. data/vendor/local/share/gir-1.0/ClutterGst-2.0.gir +97 -28
  21. data/vendor/local/share/gtk-doc/html/clutter-gst/ClutterGstPlayer.html +2 -2
  22. data/vendor/local/share/gtk-doc/html/clutter-gst/ClutterGstVideoSink.html +2 -2
  23. data/vendor/local/share/gtk-doc/html/clutter-gst/ClutterGstVideoTexture.html +2 -2
  24. data/vendor/local/share/gtk-doc/html/clutter-gst/ch01.html +4 -4
  25. data/vendor/local/share/gtk-doc/html/clutter-gst/ch02.html +3 -3
  26. data/vendor/local/share/gtk-doc/html/clutter-gst/clutter-gst-Utilities.html +2 -2
  27. data/vendor/local/share/gtk-doc/html/clutter-gst/clutter-gst-Versioning-Macros.html +5 -5
  28. data/vendor/local/share/gtk-doc/html/clutter-gst/clutter-gst.devhelp2 +1 -1
  29. data/vendor/local/share/gtk-doc/html/clutter-gst/index.html +5 -5
  30. data/vendor/local/share/gtk-doc/html/clutter-gst/license.html +3 -3
  31. metadata +12 -11
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b1da2e43024b374805cd15fa4ca17b7a934e742d
4
- data.tar.gz: 5ad6875517ce79e118f7bbb320a2743f1ba2041e
3
+ metadata.gz: 010db39b44499a399befce48fe5cf78ce3281e15
4
+ data.tar.gz: 723ab30e22ea87d9d41375002df9f365c3af6700
5
5
  SHA512:
6
- metadata.gz: d12e0c61a33576bbb3495aa51ff02f221a6183ec0e67334f201e40c26ab82095ffa6f64d6f69292d00852ce48ffda62beaecb7029b7960e12009f2a460d8fb22
7
- data.tar.gz: c1e9974292524b05c7a2b674fe0aedef9404a77899659d7b4df2f37024f4823cf54008d19d6f62ed6f4b15d2444f1b79780e6c3c088708f63bdc72587586692a
6
+ metadata.gz: d2c23ed809a662e6c4e35f40a9ee5cb2a16a9b455139f518dd67e317bb853a49471ae7b3c80e71dcd5de210faa8f3c7a1ed86f0d744e39df9ee0f5a43df70e02
7
+ data.tar.gz: 10594c051ed70b0d1abab41fdfadceb6bada0417fa38681fe509c0c294ce2dec16d53dd50f9a44ce88fa72defd94ffd6ca9cbebbb7a42286fc82283157e37817
data/Rakefile CHANGED
@@ -1,6 +1,6 @@
1
1
  # -*- ruby -*-
2
2
  #
3
- # Copyright (C) 2013 Ruby-GNOME2 Project Team
3
+ # Copyright (C) 2013-2014 Ruby-GNOME2 Project Team
4
4
  #
5
5
  # This library is free software; you can redistribute it and/or
6
6
  # modify it under the terms of the GNU Lesser General Public
@@ -46,7 +46,7 @@ package_task = GNOME2::Rake::PackageTask.new do |package|
46
46
  :name => "clutter-gst",
47
47
  :download_site => :gnome,
48
48
  :label => "Clutter-GStreamer",
49
- :version => "2.0.10",
49
+ :version => "2.0.12",
50
50
  :compression_method => "xz",
51
51
  :windows => {
52
52
  :configure_args => [
@@ -59,8 +59,6 @@ package_task = GNOME2::Rake::PackageTask.new do |package|
59
59
  end
60
60
  package_task.define
61
61
 
62
- Rake::Task["native:clutter-gstreamer:i386-mingw32"].prerequisites.clear
63
-
64
62
  namespace :dependency do
65
63
  desc "Install depenencies"
66
64
  task :install do
data/lib/clutter-gst.rb CHANGED
@@ -43,6 +43,8 @@ module ClutterGst
43
43
  remove_method(:init)
44
44
  remove_method(:const_missing)
45
45
  end
46
+ Gst.init if Gst.respond_to?(:init)
47
+ Clutter.init if Clutter.respond_to?(:init)
46
48
  loader = Loader.new(self, argv)
47
49
  loader.load("ClutterGst")
48
50
  end
@@ -61,11 +63,10 @@ module ClutterGst
61
63
  def pre_load(repository, namespace)
62
64
  init = repository.find(namespace, "init")
63
65
  arguments = [
64
- 1 + @init_arguments.size,
65
66
  [$0] + @init_arguments,
66
67
  ]
67
68
  error, returned_arguments = init.invoke(:arguments => arguments)
68
- @init_arguments.replace(returned_arguments)
69
+ @init_arguments.replace(returned_arguments[1..-1])
69
70
  if error.to_i <= 0
70
71
  raise InitError, "failed to initialize Clutter-GStreamer: #{error.name}"
71
72
  end
@@ -0,0 +1,17 @@
1
+ # Copyright (C) 2014 Ruby-GNOME2 Project Team
2
+ #
3
+ # This library is free software; you can redistribute it and/or
4
+ # modify it under the terms of the GNU Lesser General Public
5
+ # License as published by the Free Software Foundation; either
6
+ # version 2.1 of the License, or (at your option) any later version.
7
+ #
8
+ # This library is distributed in the hope that it will be useful,
9
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
10
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11
+ # Lesser General Public License for more details.
12
+ #
13
+ # You should have received a copy of the GNU Lesser General Public
14
+ # License along with this library; if not, write to the Free Software
15
+ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
+
17
+ require "clutter-gst"
@@ -11,7 +11,7 @@
11
11
  # Copyright (C) 2007,2008 OpenedHand
12
12
  # Copyright (C) 2013 Collabora
13
13
  #
14
- # Copyright (C) 2013 Ruby-GNOME2 Project Team
14
+ # Copyright (C) 2013-2014 Ruby-GNOME2 Project Team
15
15
  #
16
16
  # This library is free software; you can redistribute it and/or
17
17
  # modify it under the terms of the GNU Lesser General Public
@@ -27,8 +27,6 @@
27
27
  # License along with this library; if not, write to the Free Software
28
28
  # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
29
29
 
30
- # NOTE: This sample code is for libclutter-gst (a library by C) 2.0.2.
31
-
32
30
  require "optparse"
33
31
 
34
32
  require "clutter-gst"
@@ -220,10 +218,6 @@ app.vtexture.filename = ARGV[0]
220
218
  pipe = app.vtexture.pipeline
221
219
  raise "Unable to get gstreamer pipeline!" unless pipe
222
220
 
223
- # TODO: want to not require Gst.init
224
- # prepare Gst's methods (e.g. iterate_sinks)
225
- Gst.init
226
-
227
221
  iter = pipe.iterate_sinks
228
222
  raise "Unable to iterate over sinks!" unless iter
229
223
 
@@ -259,8 +253,7 @@ app.control_seekbar.opacity = 0x99
259
253
 
260
254
  app.control_label = Clutter::Text.new
261
255
  app.control_label.font_name = "Sans Bold 14"
262
- # TODO: segfault
263
- #app.control_label.text = File.basename(ARGV[0])
256
+ app.control_label.text = File.basename(ARGV[0])
264
257
  stage.title = File.basename(ARGV[0]) # substitutes for label text
265
258
  app.control_label.color = control_color1
266
259
 
@@ -10,7 +10,7 @@
10
10
  #
11
11
  # Copyright (C) 2007,2008 OpenedHand
12
12
  #
13
- # Copyright (C) 2013 Ruby-GNOME2 Project Team
13
+ # Copyright (C) 2013-2014 Ruby-GNOME2 Project Team
14
14
  #
15
15
  # This library is free software; you can redistribute it and/or
16
16
  # modify it under the terms of the GNU Lesser General Public
@@ -26,7 +26,6 @@
26
26
  # License along with this library; if not, write to the Free Software
27
27
  # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
28
28
 
29
- # NOTE: This sample code is for libclutter-gst (a library by C) 2.0.2.
30
29
  require "clutter-gst"
31
30
 
32
31
  stage = Clutter::Stage.new
data/sample/video-sink.rb CHANGED
@@ -10,7 +10,7 @@
10
10
  #
11
11
  # Copyright (C) 2007,2008 OpenedHand
12
12
  #
13
- # Copyright (C) 2013 Ruby-GNOME2 Project Team
13
+ # Copyright (C) 2013-2014 Ruby-GNOME2 Project Team
14
14
  #
15
15
  # This library is free software; you can redistribute it and/or
16
16
  # modify it under the terms of the GNU Lesser General Public
@@ -26,7 +26,6 @@
26
26
  # License along with this library; if not, write to the Free Software
27
27
  # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
28
28
 
29
- # NOTE: This sample code is for libclutter-gst (a library by C) 2.0.2.
30
29
  require "clutter-gst"
31
30
 
32
31
  stage = Clutter::Stage.new
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2013 Ruby-GNOME2 Project Team
1
+ # Copyright (C) 2013-2014 Ruby-GNOME2 Project Team
2
2
  #
3
3
  # This library is free software; you can redistribute it and/or
4
4
  # modify it under the terms of the GNU Lesser General Public
@@ -18,4 +18,24 @@ require "test-unit"
18
18
  require "test/unit/notify"
19
19
 
20
20
  module ClutterGStreamerTestUtils
21
+ def later_version?(major, minor, micro=nil)
22
+ micro ||= 0
23
+ clutter_gstreamer_version = [
24
+ ClutterGst::MAJOR_VERSION,
25
+ ClutterGst::MINOR_VERSION,
26
+ ClutterGst::MICRO_VERSION,
27
+ ]
28
+ (clutter_gstreamer_version <=> [major, minor, micro]) >= 0
29
+ end
30
+
31
+ def only_clutter_gstreamer_version(major, minor, micro=nil)
32
+ micro ||= 0
33
+ unless later_version?(major, minor, micro)
34
+ omit("Require Clutter-GStreamer >= #{major}.#{minor}.#{micro}")
35
+ end
36
+ end
37
+
38
+ def omit_on_travis_ci
39
+ omit("This test can't be run on Travis CI") if ENV["CI"]
40
+ end
21
41
  end
data/test/run-test.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
  #
3
- # Copyright (C) 2013 Ruby-GNOME2 Project Team
3
+ # Copyright (C) 2013-2014 Ruby-GNOME2 Project Team
4
4
  #
5
5
  # This library is free software; you can redistribute it and/or
6
6
  # modify it under the terms of the GNU Lesser General Public
@@ -55,6 +55,9 @@ require "gobject-introspection-test-utils"
55
55
  $LOAD_PATH.unshift(File.join(clutter_base, "test"))
56
56
  require "clutter-test-utils"
57
57
 
58
+ $LOAD_PATH.unshift(File.join(clutter_gstreamer_base, "test"))
59
+ require "clutter-gstreamer-test-utils"
60
+
58
61
  require "clutter-gst"
59
62
 
60
63
  exit Test::Unit::AutoRunner.run(true)
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2013 Ruby-GNOME2 Project Team
1
+ # Copyright (C) 2013-2014 Ruby-GNOME2 Project Team
2
2
  #
3
3
  # This library is free software; you can redistribute it and/or
4
4
  # modify it under the terms of the GNU Lesser General Public
@@ -15,7 +15,10 @@
15
15
  # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
17
  class ClutterGstTest < Test::Unit::TestCase
18
+ include ClutterGStreamerTestUtils
19
+
18
20
  def test_init
21
+ omit_on_travis_ci
19
22
  assert_nothing_raised do
20
23
  ClutterGst.init
21
24
  end
@@ -56,21 +56,21 @@
56
56
  *
57
57
  * ClutterGst micro version (e.g. "3", if %CLUTTER_GST_VERSION is "1.2.3")
58
58
  */
59
- #define CLUTTER_GST_MICRO_VERSION (10)
59
+ #define CLUTTER_GST_MICRO_VERSION (12)
60
60
 
61
61
  /**
62
62
  * CLUTTER_GST_VERSION:
63
63
  *
64
64
  * ClutterGst full version (e.g. "1.2.3")
65
65
  */
66
- #define CLUTTER_GST_VERSION (2.0.10)
66
+ #define CLUTTER_GST_VERSION (2.0.12)
67
67
 
68
68
  /**
69
69
  * CLUTTER_GST_VERSION_S:
70
70
  *
71
71
  * ClutterGst full version, encoded as a string.
72
72
  */
73
- #define CLUTTER_GST_VERSION_S "2.0.10"
73
+ #define CLUTTER_GST_VERSION_S "2.0.12"
74
74
 
75
75
  /**
76
76
  * CLUTTER_GST_VERSION_HEX:
@@ -17,7 +17,7 @@ old_library=''
17
17
  inherited_linker_flags=' -pthread'
18
18
 
19
19
  # Libraries that this one depends upon.
20
- dependency_libs=' -R/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib -L/home/kou/work/ruby/rcairo.win32/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/clutter-gstreamer/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/gdk_pixbuf2/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/atk/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/gstreamer/vendor/local/lib /home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib/libclutter-1.0.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libcairo-gobject.la /home/kou/work/ruby/ruby-gnome2.win32/atk/vendor/local/lib/libatk-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib/libcogl-pango.la /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libpangocairo-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib/libjson-glib-1.0.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libcairo.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libpixman-1.la -lmsimg32 /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libpangoft2-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libharfbuzz.la /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libpangowin32-1.0.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libfontconfig.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libxml2.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libfreetype.la /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libpango-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libgthread-2.0.la /home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib/libcogl.la -lopengl32 -lgdi32 /home/kou/work/ruby/ruby-gnome2.win32/gdk_pixbuf2/vendor/local/lib/libgdk_pixbuf-2.0.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libpng16.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libgio-2.0.la -ldnsapi -liphlpapi /home/kou/work/ruby/ruby-gnome2.win32/gstreamer/vendor/local/lib/libgstvideo-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/gstreamer/vendor/local/lib/libgstaudio-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/gstreamer/vendor/local/lib/libgsttag-1.0.la -lz /home/kou/work/ruby/ruby-gnome2.win32/gstreamer/vendor/local/lib/libgstbase-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/gstreamer/vendor/local/lib/libgstreamer-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libgmodule-2.0.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libgobject-2.0.la -lffi /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libglib-2.0.la -lws2_32 -lole32 -lwinmm -lshlwapi -lintl'
20
+ dependency_libs=' -R/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib -L/home/kou/work/ruby/rcairo.win32/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/clutter-gstreamer/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/gdk_pixbuf2/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/atk/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/gstreamer/vendor/local/lib /home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib/libclutter-1.0.la -L/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/../lib /home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib/libcogl-path.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libcairo-gobject.la -lffi -lintl /home/kou/work/ruby/ruby-gnome2.win32/atk/vendor/local/lib/libatk-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib/libcogl-pango.la /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libpangocairo-1.0.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libcairo.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libpixman-1.la -lmsimg32 /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libpangoft2-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libharfbuzz.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libfontconfig.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libxml2.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libfreetype.la /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libpangowin32-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libpango-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libgthread-2.0.la /home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib/libcogl.la -lopengl32 -lgdi32 /home/kou/work/ruby/ruby-gnome2.win32/gdk_pixbuf2/vendor/local/lib/libgdk_pixbuf-2.0.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libpng16.la /home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib/libjson-glib-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libgio-2.0.la -ldnsapi -liphlpapi /home/kou/work/ruby/ruby-gnome2.win32/gstreamer/vendor/local/lib/libgstvideo-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/gstreamer/vendor/local/lib/libgstaudio-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/gstreamer/vendor/local/lib/libgsttag-1.0.la -lz /home/kou/work/ruby/ruby-gnome2.win32/gstreamer/vendor/local/lib/libgstbase-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/gstreamer/vendor/local/lib/libgstreamer-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libgmodule-2.0.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libgobject-2.0.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/../lib/libffi.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libglib-2.0.la -lws2_32 -lole32 -lwinmm -lshlwapi /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libintl.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libiconv.la -lpthread'
21
21
 
22
22
  # Names of additional weak libraries provided by this library
23
23
  weak_library_names=''
@@ -17,14 +17,14 @@ old_library=''
17
17
  inherited_linker_flags=' -pthread'
18
18
 
19
19
  # Libraries that this one depends upon.
20
- dependency_libs=' -R/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib -L/home/kou/work/ruby/rcairo.win32/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/clutter-gstreamer/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/gdk_pixbuf2/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/atk/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib /home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib/libclutter-1.0.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libcairo-gobject.la /home/kou/work/ruby/ruby-gnome2.win32/atk/vendor/local/lib/libatk-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib/libcogl-pango.la /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libpangocairo-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib/libjson-glib-1.0.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libcairo.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libpixman-1.la -lmsimg32 /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libpangoft2-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libharfbuzz.la /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libpangowin32-1.0.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libfontconfig.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libxml2.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libfreetype.la /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libpango-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libgthread-2.0.la /home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib/libcogl.la -lopengl32 -lgdi32 /home/kou/work/ruby/ruby-gnome2.win32/gdk_pixbuf2/vendor/local/lib/libgdk_pixbuf-2.0.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libpng16.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libgio-2.0.la -ldnsapi -liphlpapi -L/home/kou/work/ruby/ruby-gnome2.win32/gstreamer/vendor/local/lib /home/kou/work/ruby/ruby-gnome2.win32/gstreamer/vendor/local/lib/libgstvideo-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/gstreamer/vendor/local/lib/libgstaudio-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/gstreamer/vendor/local/lib/libgsttag-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/gstreamer/vendor/local/lib/libgstbase-1.0.la -lz /home/kou/work/ruby/ruby-gnome2.win32/gstreamer/vendor/local/lib/libgstreamer-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libgmodule-2.0.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libgobject-2.0.la -lffi /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libglib-2.0.la -lws2_32 -lole32 -lwinmm -lshlwapi -lintl'
20
+ dependency_libs=' -R/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib -L/home/kou/work/ruby/rcairo.win32/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/clutter-gstreamer/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/gdk_pixbuf2/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/atk/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib /home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib/libclutter-1.0.la -L/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/../lib /home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib/libcogl-path.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libcairo-gobject.la -lffi -lintl /home/kou/work/ruby/ruby-gnome2.win32/atk/vendor/local/lib/libatk-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib/libcogl-pango.la /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libpangocairo-1.0.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libcairo.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libpixman-1.la -lmsimg32 /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libpangoft2-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libharfbuzz.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libfontconfig.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libxml2.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libfreetype.la /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libpangowin32-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libpango-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libgthread-2.0.la /home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib/libjson-glib-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib/libcogl.la -lopengl32 -lgdi32 /home/kou/work/ruby/ruby-gnome2.win32/gdk_pixbuf2/vendor/local/lib/libgdk_pixbuf-2.0.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libpng16.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libgio-2.0.la -ldnsapi -liphlpapi -L/home/kou/work/ruby/ruby-gnome2.win32/gstreamer/vendor/local/lib /home/kou/work/ruby/ruby-gnome2.win32/gstreamer/vendor/local/lib/libgstvideo-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/gstreamer/vendor/local/lib/libgstaudio-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/gstreamer/vendor/local/lib/libgsttag-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/gstreamer/vendor/local/lib/libgstbase-1.0.la -lz /home/kou/work/ruby/ruby-gnome2.win32/gstreamer/vendor/local/lib/libgstreamer-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libgmodule-2.0.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libgobject-2.0.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/../lib/libffi.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libglib-2.0.la -lws2_32 -lole32 -lwinmm -lshlwapi /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libintl.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libiconv.la -lpthread'
21
21
 
22
22
  # Names of additional weak libraries provided by this library
23
23
  weak_library_names=''
24
24
 
25
25
  # Version information for libclutter-gst-2.0.
26
- current=10
27
- age=10
26
+ current=12
27
+ age=12
28
28
  revision=0
29
29
 
30
30
  # Is this an already installed library?
@@ -5,7 +5,7 @@ includedir=${prefix}/include
5
5
 
6
6
  Name: clutter-gst
7
7
  Description: Clutter GStreamer integration
8
- Version: 2.0.10
8
+ Version: 2.0.12
9
9
  Libs: -L${libdir} -lclutter-gst-2.0
10
10
  Cflags: -I${includedir}/clutter-gst-2.0
11
11
  Requires: clutter-1.0 >= 1.3.12 gstreamer-1.0 gstreamer-base-1.0 gstreamer-plugins-base-1.0
@@ -45,7 +45,7 @@ and/or use gtk-doc annotations. -->
45
45
  <type name="gint" c:type="gint"/>
46
46
  </constant>
47
47
  <constant name="MICRO_VERSION"
48
- value="10"
48
+ value="12"
49
49
  c:type="CLUTTER_GST_MICRO_VERSION">
50
50
  <doc xml:space="preserve">ClutterGst micro version (e.g. "3", if %CLUTTER_GST_VERSION is "1.2.3")</doc>
51
51
  <type name="gint" c:type="gint"/>
@@ -106,11 +106,13 @@ implementing #ClutterGstPlayer.</doc>
106
106
  audio stream playing in the list returned by
107
107
  clutter_gst_player_get_audio_streams().</doc>
108
108
  <return-value transfer-ownership="none">
109
- <doc xml:space="preserve">the index of the current audio stream, -1 if the media has no audio stream</doc>
109
+ <doc xml:space="preserve">the index of the current audio stream, -1 if the media has no
110
+ audio stream</doc>
110
111
  <type name="gint" c:type="gint"/>
111
112
  </return-value>
112
113
  <parameters>
113
114
  <instance-parameter name="player" transfer-ownership="none">
115
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
114
116
  <type name="Player" c:type="ClutterGstPlayer*"/>
115
117
  </instance-parameter>
116
118
  </parameters>
@@ -120,13 +122,15 @@ clutter_gst_player_get_audio_streams().</doc>
120
122
  version="1.4">
121
123
  <doc xml:space="preserve">Get the list of audio streams of the current media.</doc>
122
124
  <return-value transfer-ownership="none">
123
- <doc xml:space="preserve">a list of strings describing the available audio streams</doc>
125
+ <doc xml:space="preserve">a list of
126
+ strings describing the available audio streams</doc>
124
127
  <type name="GLib.List" c:type="GList*">
125
128
  <type name="utf8"/>
126
129
  </type>
127
130
  </return-value>
128
131
  <parameters>
129
132
  <instance-parameter name="player" transfer-ownership="none">
133
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
130
134
  <type name="Player" c:type="ClutterGstPlayer*"/>
131
135
  </instance-parameter>
132
136
  </parameters>
@@ -140,6 +144,7 @@ clutter_gst_player_get_audio_streams().</doc>
140
144
  </return-value>
141
145
  <parameters>
142
146
  <instance-parameter name="player" transfer-ownership="none">
147
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
143
148
  <type name="Player" c:type="ClutterGstPlayer*"/>
144
149
  </instance-parameter>
145
150
  </parameters>
@@ -152,6 +157,7 @@ clutter_gst_player_get_audio_streams().</doc>
152
157
  </return-value>
153
158
  <parameters>
154
159
  <instance-parameter name="player" transfer-ownership="none">
160
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
155
161
  <type name="Player" c:type="ClutterGstPlayer*"/>
156
162
  </instance-parameter>
157
163
  </parameters>
@@ -164,6 +170,7 @@ clutter_gst_player_get_audio_streams().</doc>
164
170
  </return-value>
165
171
  <parameters>
166
172
  <instance-parameter name="player" transfer-ownership="none">
173
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
167
174
  <type name="Player" c:type="ClutterGstPlayer*"/>
168
175
  </instance-parameter>
169
176
  </parameters>
@@ -177,6 +184,7 @@ GStreamer API.</doc>
177
184
  </return-value>
178
185
  <parameters>
179
186
  <instance-parameter name="player" transfer-ownership="none">
187
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
180
188
  <type name="Player" c:type="ClutterGstPlayer*"/>
181
189
  </instance-parameter>
182
190
  </parameters>
@@ -191,6 +199,7 @@ GStreamer API.</doc>
191
199
  </return-value>
192
200
  <parameters>
193
201
  <instance-parameter name="player" transfer-ownership="none">
202
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
194
203
  <type name="Player" c:type="ClutterGstPlayer*"/>
195
204
  </instance-parameter>
196
205
  </parameters>
@@ -202,11 +211,13 @@ GStreamer API.</doc>
202
211
  subtiles track in the list returned by
203
212
  clutter_gst_player_get_subtitle_tracks().</doc>
204
213
  <return-value transfer-ownership="none">
205
- <doc xml:space="preserve">the index of the current subtitlest track, -1 if the media has no subtitles track or if the subtitles have been turned off</doc>
214
+ <doc xml:space="preserve">the index of the current subtitlest track, -1 if the media has
215
+ no subtitles track or if the subtitles have been turned off</doc>
206
216
  <type name="gint" c:type="gint"/>
207
217
  </return-value>
208
218
  <parameters>
209
219
  <instance-parameter name="player" transfer-ownership="none">
220
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
210
221
  <type name="Player" c:type="ClutterGstPlayer*"/>
211
222
  </instance-parameter>
212
223
  </parameters>
@@ -216,13 +227,15 @@ clutter_gst_player_get_subtitle_tracks().</doc>
216
227
  version="1.4">
217
228
  <doc xml:space="preserve">Get the list of subtitles tracks of the current media.</doc>
218
229
  <return-value transfer-ownership="none">
219
- <doc xml:space="preserve">a list of strings describing the available subtitles tracks</doc>
230
+ <doc xml:space="preserve">a list of
231
+ strings describing the available subtitles tracks</doc>
220
232
  <type name="GLib.List" c:type="GList*">
221
233
  <type name="utf8"/>
222
234
  </type>
223
235
  </return-value>
224
236
  <parameters>
225
237
  <instance-parameter name="player" transfer-ownership="none">
238
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
226
239
  <type name="Player" c:type="ClutterGstPlayer*"/>
227
240
  </instance-parameter>
228
241
  </parameters>
@@ -232,11 +245,13 @@ clutter_gst_player_get_subtitle_tracks().</doc>
232
245
  version="1.4">
233
246
  <doc xml:space="preserve">Retrieves the user agent used when streaming.</doc>
234
247
  <return-value transfer-ownership="full">
235
- <doc xml:space="preserve">the user agent used. The returned string has to be freed with g_free()</doc>
248
+ <doc xml:space="preserve">the user agent used. The returned string has to be freed with
249
+ g_free()</doc>
236
250
  <type name="utf8" c:type="gchar*"/>
237
251
  </return-value>
238
252
  <parameters>
239
253
  <instance-parameter name="player" transfer-ownership="none">
254
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
240
255
  <type name="Player" c:type="ClutterGstPlayer*"/>
241
256
  </instance-parameter>
242
257
  </parameters>
@@ -251,6 +266,7 @@ in the list returned by clutter_gst_player_get_audio_streams().</doc>
251
266
  </return-value>
252
267
  <parameters>
253
268
  <instance-parameter name="player" transfer-ownership="none">
269
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
254
270
  <type name="Player" c:type="ClutterGstPlayer*"/>
255
271
  </instance-parameter>
256
272
  <parameter name="index_" transfer-ownership="none">
@@ -267,6 +283,7 @@ in the list returned by clutter_gst_player_get_audio_streams().</doc>
267
283
  </return-value>
268
284
  <parameters>
269
285
  <instance-parameter name="player" transfer-ownership="none">
286
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
270
287
  <type name="Player" c:type="ClutterGstPlayer*"/>
271
288
  </instance-parameter>
272
289
  <parameter name="mode" transfer-ownership="none">
@@ -285,6 +302,7 @@ to %CLUTTER_GST_SEEK_FLAG_NONE.</doc>
285
302
  </return-value>
286
303
  <parameters>
287
304
  <instance-parameter name="player" transfer-ownership="none">
305
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
288
306
  <type name="Player" c:type="ClutterGstPlayer*"/>
289
307
  </instance-parameter>
290
308
  <parameter name="flags" transfer-ownership="none">
@@ -305,6 +323,7 @@ If @index_ is -1, the subtitles are turned off.</doc>
305
323
  </return-value>
306
324
  <parameters>
307
325
  <instance-parameter name="player" transfer-ownership="none">
326
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
308
327
  <type name="Player" c:type="ClutterGstPlayer*"/>
309
328
  </instance-parameter>
310
329
  <parameter name="index_" transfer-ownership="none">
@@ -326,6 +345,7 @@ requires a special user agent you want to impersonate.</doc>
326
345
  </return-value>
327
346
  <parameters>
328
347
  <instance-parameter name="player" transfer-ownership="none">
348
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
329
349
  <type name="Player" c:type="ClutterGstPlayer*"/>
330
350
  </instance-parameter>
331
351
  <parameter name="user_agent" transfer-ownership="none">
@@ -357,7 +377,8 @@ called on the instance.</doc>
357
377
  audio stream playing in the list returned by
358
378
  clutter_gst_player_get_audio_streams().</doc>
359
379
  <return-value transfer-ownership="none">
360
- <doc xml:space="preserve">the index of the current audio stream, -1 if the media has no audio stream</doc>
380
+ <doc xml:space="preserve">the index of the current audio stream, -1 if the media has no
381
+ audio stream</doc>
361
382
  <type name="gint" c:type="gint"/>
362
383
  </return-value>
363
384
  <parameters>
@@ -372,7 +393,8 @@ clutter_gst_player_get_audio_streams().</doc>
372
393
  version="1.4">
373
394
  <doc xml:space="preserve">Get the list of audio streams of the current media.</doc>
374
395
  <return-value transfer-ownership="none">
375
- <doc xml:space="preserve">a list of strings describing the available audio streams</doc>
396
+ <doc xml:space="preserve">a list of
397
+ strings describing the available audio streams</doc>
376
398
  <type name="GLib.List" c:type="GList*">
377
399
  <type name="utf8"/>
378
400
  </type>
@@ -466,7 +488,8 @@ GStreamer API.</doc>
466
488
  subtiles track in the list returned by
467
489
  clutter_gst_player_get_subtitle_tracks().</doc>
468
490
  <return-value transfer-ownership="none">
469
- <doc xml:space="preserve">the index of the current subtitlest track, -1 if the media has no subtitles track or if the subtitles have been turned off</doc>
491
+ <doc xml:space="preserve">the index of the current subtitlest track, -1 if the media has
492
+ no subtitles track or if the subtitles have been turned off</doc>
470
493
  <type name="gint" c:type="gint"/>
471
494
  </return-value>
472
495
  <parameters>
@@ -481,7 +504,8 @@ clutter_gst_player_get_subtitle_tracks().</doc>
481
504
  version="1.4">
482
505
  <doc xml:space="preserve">Get the list of subtitles tracks of the current media.</doc>
483
506
  <return-value transfer-ownership="none">
484
- <doc xml:space="preserve">a list of strings describing the available subtitles tracks</doc>
507
+ <doc xml:space="preserve">a list of
508
+ strings describing the available subtitles tracks</doc>
485
509
  <type name="GLib.List" c:type="GList*">
486
510
  <type name="utf8"/>
487
511
  </type>
@@ -498,7 +522,8 @@ clutter_gst_player_get_subtitle_tracks().</doc>
498
522
  version="1.4">
499
523
  <doc xml:space="preserve">Retrieves the user agent used when streaming.</doc>
500
524
  <return-value transfer-ownership="full">
501
- <doc xml:space="preserve">the user agent used. The returned string has to be freed with g_free()</doc>
525
+ <doc xml:space="preserve">the user agent used. The returned string has to be freed with
526
+ g_free()</doc>
502
527
  <type name="utf8" c:type="gchar*"/>
503
528
  </return-value>
504
529
  <parameters>
@@ -508,12 +533,21 @@ clutter_gst_player_get_subtitle_tracks().</doc>
508
533
  </instance-parameter>
509
534
  </parameters>
510
535
  </method>
511
- <method name="init" c:identifier="clutter_gst_player_init">
536
+ <method name="init" c:identifier="clutter_gst_player_init" version="1.4">
537
+ <doc xml:space="preserve">Initialize a #ClutterGstPlayer instance. You should call this
538
+ function at the beginning of the init method of the class
539
+ implementing #ClutterGstPlayer.
540
+
541
+ When you're finished with the ClutterGstPlayer mixin features (usually in
542
+ the dispose or finalize vfuncs), call clutter_gst_player_deinit() to
543
+ desallocate the resources created by clutter_gst_player_init().</doc>
512
544
  <return-value transfer-ownership="none">
545
+ <doc xml:space="preserve">TRUE if the initialization was successfull, FALSE otherwise.</doc>
513
546
  <type name="gboolean" c:type="gboolean"/>
514
547
  </return-value>
515
548
  <parameters>
516
549
  <instance-parameter name="player" transfer-ownership="none">
550
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
517
551
  <type name="Player" c:type="ClutterGstPlayer*"/>
518
552
  </instance-parameter>
519
553
  </parameters>
@@ -693,6 +727,7 @@ update about the buffering of the current media.</doc>
693
727
  </return-value>
694
728
  <parameters>
695
729
  <parameter name="player" transfer-ownership="none">
730
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
696
731
  <type name="Player" c:type="ClutterGstPlayer*"/>
697
732
  </parameter>
698
733
  </parameters>
@@ -701,11 +736,13 @@ update about the buffering of the current media.</doc>
701
736
  <field name="get_user_agent">
702
737
  <callback name="get_user_agent">
703
738
  <return-value transfer-ownership="full">
704
- <doc xml:space="preserve">the user agent used. The returned string has to be freed with g_free()</doc>
739
+ <doc xml:space="preserve">the user agent used. The returned string has to be freed with
740
+ g_free()</doc>
705
741
  <type name="utf8" c:type="gchar*"/>
706
742
  </return-value>
707
743
  <parameters>
708
744
  <parameter name="player" transfer-ownership="none">
745
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
709
746
  <type name="Player" c:type="ClutterGstPlayer*"/>
710
747
  </parameter>
711
748
  </parameters>
@@ -718,6 +755,7 @@ update about the buffering of the current media.</doc>
718
755
  </return-value>
719
756
  <parameters>
720
757
  <parameter name="player" transfer-ownership="none">
758
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
721
759
  <type name="Player" c:type="ClutterGstPlayer*"/>
722
760
  </parameter>
723
761
  <parameter name="user_agent" transfer-ownership="none">
@@ -735,6 +773,7 @@ update about the buffering of the current media.</doc>
735
773
  </return-value>
736
774
  <parameters>
737
775
  <parameter name="player" transfer-ownership="none">
776
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
738
777
  <type name="Player" c:type="ClutterGstPlayer*"/>
739
778
  </parameter>
740
779
  </parameters>
@@ -747,6 +786,7 @@ update about the buffering of the current media.</doc>
747
786
  </return-value>
748
787
  <parameters>
749
788
  <parameter name="player" transfer-ownership="none">
789
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
750
790
  <type name="Player" c:type="ClutterGstPlayer*"/>
751
791
  </parameter>
752
792
  <parameter name="flags" transfer-ownership="none">
@@ -764,6 +804,7 @@ update about the buffering of the current media.</doc>
764
804
  </return-value>
765
805
  <parameters>
766
806
  <parameter name="player" transfer-ownership="none">
807
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
767
808
  <type name="Player" c:type="ClutterGstPlayer*"/>
768
809
  </parameter>
769
810
  </parameters>
@@ -776,6 +817,7 @@ update about the buffering of the current media.</doc>
776
817
  </return-value>
777
818
  <parameters>
778
819
  <parameter name="player" transfer-ownership="none">
820
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
779
821
  <type name="Player" c:type="ClutterGstPlayer*"/>
780
822
  </parameter>
781
823
  <parameter name="mode" transfer-ownership="none">
@@ -788,13 +830,15 @@ update about the buffering of the current media.</doc>
788
830
  <field name="get_audio_streams">
789
831
  <callback name="get_audio_streams">
790
832
  <return-value transfer-ownership="none">
791
- <doc xml:space="preserve">a list of strings describing the available audio streams</doc>
833
+ <doc xml:space="preserve">a list of
834
+ strings describing the available audio streams</doc>
792
835
  <type name="GLib.List" c:type="GList*">
793
836
  <type name="utf8"/>
794
837
  </type>
795
838
  </return-value>
796
839
  <parameters>
797
840
  <parameter name="player" transfer-ownership="none">
841
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
798
842
  <type name="Player" c:type="ClutterGstPlayer*"/>
799
843
  </parameter>
800
844
  </parameters>
@@ -803,11 +847,13 @@ update about the buffering of the current media.</doc>
803
847
  <field name="get_audio_stream">
804
848
  <callback name="get_audio_stream">
805
849
  <return-value transfer-ownership="none">
806
- <doc xml:space="preserve">the index of the current audio stream, -1 if the media has no audio stream</doc>
850
+ <doc xml:space="preserve">the index of the current audio stream, -1 if the media has no
851
+ audio stream</doc>
807
852
  <type name="gint" c:type="gint"/>
808
853
  </return-value>
809
854
  <parameters>
810
855
  <parameter name="player" transfer-ownership="none">
856
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
811
857
  <type name="Player" c:type="ClutterGstPlayer*"/>
812
858
  </parameter>
813
859
  </parameters>
@@ -820,6 +866,7 @@ update about the buffering of the current media.</doc>
820
866
  </return-value>
821
867
  <parameters>
822
868
  <parameter name="player" transfer-ownership="none">
869
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
823
870
  <type name="Player" c:type="ClutterGstPlayer*"/>
824
871
  </parameter>
825
872
  <parameter name="index_" transfer-ownership="none">
@@ -832,13 +879,15 @@ update about the buffering of the current media.</doc>
832
879
  <field name="get_subtitle_tracks">
833
880
  <callback name="get_subtitle_tracks">
834
881
  <return-value transfer-ownership="none">
835
- <doc xml:space="preserve">a list of strings describing the available subtitles tracks</doc>
882
+ <doc xml:space="preserve">a list of
883
+ strings describing the available subtitles tracks</doc>
836
884
  <type name="GLib.List" c:type="GList*">
837
885
  <type name="utf8"/>
838
886
  </type>
839
887
  </return-value>
840
888
  <parameters>
841
889
  <parameter name="player" transfer-ownership="none">
890
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
842
891
  <type name="Player" c:type="ClutterGstPlayer*"/>
843
892
  </parameter>
844
893
  </parameters>
@@ -847,11 +896,13 @@ update about the buffering of the current media.</doc>
847
896
  <field name="get_subtitle_track">
848
897
  <callback name="get_subtitle_track">
849
898
  <return-value transfer-ownership="none">
850
- <doc xml:space="preserve">the index of the current subtitlest track, -1 if the media has no subtitles track or if the subtitles have been turned off</doc>
899
+ <doc xml:space="preserve">the index of the current subtitlest track, -1 if the media has
900
+ no subtitles track or if the subtitles have been turned off</doc>
851
901
  <type name="gint" c:type="gint"/>
852
902
  </return-value>
853
903
  <parameters>
854
904
  <parameter name="player" transfer-ownership="none">
905
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
855
906
  <type name="Player" c:type="ClutterGstPlayer*"/>
856
907
  </parameter>
857
908
  </parameters>
@@ -864,6 +915,7 @@ update about the buffering of the current media.</doc>
864
915
  </return-value>
865
916
  <parameters>
866
917
  <parameter name="player" transfer-ownership="none">
918
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
867
919
  <type name="Player" c:type="ClutterGstPlayer*"/>
868
920
  </parameter>
869
921
  <parameter name="index_" transfer-ownership="none">
@@ -881,6 +933,7 @@ update about the buffering of the current media.</doc>
881
933
  </return-value>
882
934
  <parameters>
883
935
  <parameter name="player" transfer-ownership="none">
936
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
884
937
  <type name="Player" c:type="ClutterGstPlayer*"/>
885
938
  </parameter>
886
939
  </parameters>
@@ -894,6 +947,7 @@ update about the buffering of the current media.</doc>
894
947
  </return-value>
895
948
  <parameters>
896
949
  <parameter name="player" transfer-ownership="none">
950
+ <doc xml:space="preserve">a #ClutterGstPlayer</doc>
897
951
  <type name="Player" c:type="ClutterGstPlayer*"/>
898
952
  </parameter>
899
953
  </parameters>
@@ -1148,7 +1202,7 @@ update about the buffering of the current media.</doc>
1148
1202
  <doc xml:space="preserve">ClutterGst full version, encoded as an hexadecimal value.</doc>
1149
1203
  <type name="gint" c:type="gint"/>
1150
1204
  </constant>
1151
- <constant name="VERSION_S" value="2.0.10" c:type="CLUTTER_GST_VERSION_S">
1205
+ <constant name="VERSION_S" value="2.0.12" c:type="CLUTTER_GST_VERSION_S">
1152
1206
  <doc xml:space="preserve">ClutterGst full version, encoded as a string.</doc>
1153
1207
  <type name="utf8" c:type="gchar*"/>
1154
1208
  </constant>
@@ -1166,7 +1220,7 @@ not be accessed directly.</doc>
1166
1220
  <implements name="GstVideo.Navigation"/>
1167
1221
  <constructor name="new"
1168
1222
  c:identifier="clutter_gst_video_sink_new"
1169
- deprecated="Use gst_element_factory_make (&quot;cluttersink&quot;, ...) and the &quot;texture&quot; GObject property instead."
1223
+ deprecated="1"
1170
1224
  deprecated-version="1.6">
1171
1225
  <doc xml:space="preserve">Creates a new GStreamer video sink which uses @texture as the target
1172
1226
  for sinking a video stream from GStreamer.
@@ -1175,6 +1229,8 @@ for sinking a video stream from GStreamer.
1175
1229
  GStreamer will spawn threads to do its work, we want all the GL calls to
1176
1230
  happen in the same thread. Clutter-gst knows which thread it is by
1177
1231
  assuming this constructor is called from the Clutter thread.&lt;/note&gt;</doc>
1232
+ <doc-deprecated xml:space="preserve">Use gst_element_factory_make ("cluttersink", ...) and the
1233
+ "texture" GObject property instead.</doc-deprecated>
1178
1234
  <return-value transfer-ownership="none">
1179
1235
  <doc xml:space="preserve">a #GstElement for the newly created video sink</doc>
1180
1236
  <type name="Gst.Element" c:type="GstElement*"/>
@@ -1298,7 +1354,8 @@ assuming this constructor is called from the Clutter thread.&lt;/note&gt;</doc>
1298
1354
  audio stream playing in the list returned by
1299
1355
  clutter_gst_video_texture_get_audio_streams().</doc>
1300
1356
  <return-value transfer-ownership="none">
1301
- <doc xml:space="preserve">the index of the current audio stream, -1 if the media has no audio stream</doc>
1357
+ <doc xml:space="preserve">the index of the current audio stream, -1 if the media has no
1358
+ audio stream</doc>
1302
1359
  <type name="gint" c:type="gint"/>
1303
1360
  </return-value>
1304
1361
  <parameters>
@@ -1313,7 +1370,8 @@ clutter_gst_video_texture_get_audio_streams().</doc>
1313
1370
  version="1.4">
1314
1371
  <doc xml:space="preserve">Get the list of audio streams of the current media.</doc>
1315
1372
  <return-value transfer-ownership="none">
1316
- <doc xml:space="preserve">a list of #GstTagList describing the available audio streams</doc>
1373
+ <doc xml:space="preserve">a list of
1374
+ #GstTagList describing the available audio streams</doc>
1317
1375
  <type name="GLib.List" c:type="GList*">
1318
1376
  <type name="Gst.TagList"/>
1319
1377
  </type>
@@ -1391,7 +1449,8 @@ GStreamer API.</doc>
1391
1449
  subitles track in the list returned by
1392
1450
  clutter_gst_video_texture_get_subtitle_tracks().</doc>
1393
1451
  <return-value transfer-ownership="none">
1394
- <doc xml:space="preserve">the index of the current subtitlest track, -1 if the media has no subtitles track or if the subtitles have been turned off</doc>
1452
+ <doc xml:space="preserve">the index of the current subtitlest track, -1 if the media has
1453
+ no subtitles track or if the subtitles have been turned off</doc>
1395
1454
  <type name="gint" c:type="gint"/>
1396
1455
  </return-value>
1397
1456
  <parameters>
@@ -1406,7 +1465,8 @@ clutter_gst_video_texture_get_subtitle_tracks().</doc>
1406
1465
  version="1.4">
1407
1466
  <doc xml:space="preserve">Get the list of subtitles tracks of the current media.</doc>
1408
1467
  <return-value transfer-ownership="none">
1409
- <doc xml:space="preserve">a list of #GstTagList describing the available subtitles tracks</doc>
1468
+ <doc xml:space="preserve">a list
1469
+ of #GstTagList describing the available subtitles tracks</doc>
1410
1470
  <type name="GLib.List" c:type="GList*">
1411
1471
  <type name="Gst.TagList"/>
1412
1472
  </type>
@@ -1423,7 +1483,8 @@ clutter_gst_video_texture_get_subtitle_tracks().</doc>
1423
1483
  version="1.2">
1424
1484
  <doc xml:space="preserve">Retrieves the user agent used when streaming.</doc>
1425
1485
  <return-value transfer-ownership="full">
1426
- <doc xml:space="preserve">the user agent used. The returned string has to be freed with g_free()</doc>
1486
+ <doc xml:space="preserve">the user agent used. The returned string has to be freed with
1487
+ g_free()</doc>
1427
1488
  <type name="utf8" c:type="gchar*"/>
1428
1489
  </return-value>
1429
1490
  <parameters>
@@ -1649,6 +1710,7 @@ using g_thread_init() before any other GLib functions are called.</doc>
1649
1710
  direction="inout"
1650
1711
  caller-allocates="0"
1651
1712
  transfer-ownership="full"
1713
+ nullable="1"
1652
1714
  allow-none="1">
1653
1715
  <doc xml:space="preserve">A pointer to an array</doc>
1654
1716
  <array length="0" zero-terminated="0" c:type="char***">
@@ -1669,7 +1731,8 @@ generates nicely formatted --help output. Clutter's and GStreamer's
1669
1731
  Your program must initialise the GLib thread system using g_thread_init()
1670
1732
  before any other GLib functions are called.</doc>
1671
1733
  <return-value transfer-ownership="none">
1672
- <doc xml:space="preserve">%CLUTTER_INIT_SUCCESS on success, a negative integer on failure.</doc>
1734
+ <doc xml:space="preserve">%CLUTTER_INIT_SUCCESS on success, a negative integer
1735
+ on failure.</doc>
1673
1736
  <type name="Clutter.InitError" c:type="ClutterInitError"/>
1674
1737
  </return-value>
1675
1738
  <parameters>
@@ -1684,6 +1747,7 @@ before any other GLib functions are called.</doc>
1684
1747
  direction="inout"
1685
1748
  caller-allocates="0"
1686
1749
  transfer-ownership="full"
1750
+ nullable="1"
1687
1751
  allow-none="1">
1688
1752
  <doc xml:space="preserve">A pointer to an array</doc>
1689
1753
  <array length="0" zero-terminated="0" c:type="char***">
@@ -1691,15 +1755,20 @@ before any other GLib functions are called.</doc>
1691
1755
  </array>
1692
1756
  </parameter>
1693
1757
  <parameter name="parameter_string" transfer-ownership="none">
1694
- <doc xml:space="preserve">a string which is displayed in the first line of &lt;option&gt;--help&lt;/option&gt; output, after &lt;literal&gt;&lt;replaceable&gt;programname&lt;/replaceable&gt; [OPTION...]&lt;/literal&gt;</doc>
1758
+ <doc xml:space="preserve">a string which is displayed in
1759
+ the first line of &lt;option&gt;--help&lt;/option&gt; output, after
1760
+ &lt;literal&gt;&lt;replaceable&gt;programname&lt;/replaceable&gt; [OPTION...]&lt;/literal&gt;</doc>
1695
1761
  <type name="utf8" c:type="const char*"/>
1696
1762
  </parameter>
1697
1763
  <parameter name="entries" transfer-ownership="none">
1698
- <doc xml:space="preserve">a %NULL-terminated array of #GOptionEntry&lt;!-- --&gt;s describing the options of your program</doc>
1764
+ <doc xml:space="preserve">a %NULL-terminated array of #GOptionEntry&lt;!-- --&gt;s
1765
+ describing the options of your program</doc>
1699
1766
  <type name="GLib.OptionEntry" c:type="GOptionEntry*"/>
1700
1767
  </parameter>
1701
1768
  <parameter name="translation_domain" transfer-ownership="none">
1702
- <doc xml:space="preserve">a translation domain to use for translating the &lt;option&gt;--help&lt;/option&gt; output for the options in @entries with gettext(), or %NULL</doc>
1769
+ <doc xml:space="preserve">a translation domain to use for translating
1770
+ the &lt;option&gt;--help&lt;/option&gt; output for the options in @entries
1771
+ with gettext(), or %NULL</doc>
1703
1772
  <type name="utf8" c:type="const char*"/>
1704
1773
  </parameter>
1705
1774
  </parameters>
@@ -2,10 +2,10 @@
2
2
  <html>
3
3
  <head>
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
- <title>Clutter Gst 2.0.10
5
+ <title>Clutter Gst 2.0.12
6
6
  Reference Manual: ClutterGstPlayer</title>
7
7
  <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
8
- <link rel="home" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
8
+ <link rel="home" href="index.html" title="Clutter Gst 2.0.12 Reference Manual">
9
9
  <link rel="up" href="ch02.html" title="Clutter Actors And Objects">
10
10
  <link rel="prev" href="ch02.html" title="Clutter Actors And Objects">
11
11
  <link rel="next" href="ClutterGstVideoTexture.html" title="ClutterGstVideoTexture">
@@ -2,10 +2,10 @@
2
2
  <html>
3
3
  <head>
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
- <title>Clutter Gst 2.0.10
5
+ <title>Clutter Gst 2.0.12
6
6
  Reference Manual: ClutterGstVideoSink</title>
7
7
  <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
8
- <link rel="home" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
8
+ <link rel="home" href="index.html" title="Clutter Gst 2.0.12 Reference Manual">
9
9
  <link rel="up" href="ch02.html" title="Clutter Actors And Objects">
10
10
  <link rel="prev" href="ClutterGstVideoTexture.html" title="ClutterGstVideoTexture">
11
11
  <link rel="next" href="clutter-gst-Utilities.html" title="Utilities">
@@ -2,10 +2,10 @@
2
2
  <html>
3
3
  <head>
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
- <title>Clutter Gst 2.0.10
5
+ <title>Clutter Gst 2.0.12
6
6
  Reference Manual: ClutterGstVideoTexture</title>
7
7
  <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
8
- <link rel="home" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
8
+ <link rel="home" href="index.html" title="Clutter Gst 2.0.12 Reference Manual">
9
9
  <link rel="up" href="ch02.html" title="Clutter Actors And Objects">
10
10
  <link rel="prev" href="ClutterGstPlayer.html" title="ClutterGstPlayer">
11
11
  <link rel="next" href="ClutterGstVideoSink.html" title="ClutterGstVideoSink">
@@ -2,12 +2,12 @@
2
2
  <html>
3
3
  <head>
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
- <title>Clutter Gst 2.0.10
5
+ <title>Clutter Gst 2.0.12
6
6
  Reference Manual: Clutter Gst Overview</title>
7
7
  <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
8
- <link rel="home" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
9
- <link rel="up" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
10
- <link rel="prev" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
8
+ <link rel="home" href="index.html" title="Clutter Gst 2.0.12 Reference Manual">
9
+ <link rel="up" href="index.html" title="Clutter Gst 2.0.12 Reference Manual">
10
+ <link rel="prev" href="index.html" title="Clutter Gst 2.0.12 Reference Manual">
11
11
  <link rel="next" href="ch02.html" title="Clutter Actors And Objects">
12
12
  <meta name="generator" content="GTK-Doc V1.19.1 (XML mode)">
13
13
  <link rel="stylesheet" href="style.css" type="text/css">
@@ -2,11 +2,11 @@
2
2
  <html>
3
3
  <head>
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
- <title>Clutter Gst 2.0.10
5
+ <title>Clutter Gst 2.0.12
6
6
  Reference Manual: Clutter Actors And Objects</title>
7
7
  <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
8
- <link rel="home" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
9
- <link rel="up" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
8
+ <link rel="home" href="index.html" title="Clutter Gst 2.0.12 Reference Manual">
9
+ <link rel="up" href="index.html" title="Clutter Gst 2.0.12 Reference Manual">
10
10
  <link rel="prev" href="ch01.html" title="Clutter Gst Overview">
11
11
  <link rel="next" href="ClutterGstPlayer.html" title="ClutterGstPlayer">
12
12
  <meta name="generator" content="GTK-Doc V1.19.1 (XML mode)">
@@ -2,10 +2,10 @@
2
2
  <html>
3
3
  <head>
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
- <title>Clutter Gst 2.0.10
5
+ <title>Clutter Gst 2.0.12
6
6
  Reference Manual: Utilities</title>
7
7
  <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
8
- <link rel="home" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
8
+ <link rel="home" href="index.html" title="Clutter Gst 2.0.12 Reference Manual">
9
9
  <link rel="up" href="ch02.html" title="Clutter Actors And Objects">
10
10
  <link rel="prev" href="ClutterGstVideoSink.html" title="ClutterGstVideoSink">
11
11
  <link rel="next" href="clutter-gst-Versioning-Macros.html" title="Versioning Macros">
@@ -2,10 +2,10 @@
2
2
  <html>
3
3
  <head>
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
- <title>Clutter Gst 2.0.10
5
+ <title>Clutter Gst 2.0.12
6
6
  Reference Manual: Versioning Macros</title>
7
7
  <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
8
- <link rel="home" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
8
+ <link rel="home" href="index.html" title="Clutter Gst 2.0.12 Reference Manual">
9
9
  <link rel="up" href="ch02.html" title="Clutter Actors And Objects">
10
10
  <link rel="prev" href="clutter-gst-Utilities.html" title="Utilities">
11
11
  <link rel="next" href="license.html" title="Appendix A. License">
@@ -74,7 +74,7 @@ ClutterGst minor version (e.g. "2", if <a class="link" href="clutter-gst-Version
74
74
  <hr>
75
75
  <div class="refsect2">
76
76
  <a name="CLUTTER-GST-MICRO-VERSION:CAPS"></a><h3>CLUTTER_GST_MICRO_VERSION</h3>
77
- <pre class="programlisting">#define CLUTTER_GST_MICRO_VERSION (10)
77
+ <pre class="programlisting">#define CLUTTER_GST_MICRO_VERSION (12)
78
78
  </pre>
79
79
  <p>
80
80
  ClutterGst micro version (e.g. "3", if <a class="link" href="clutter-gst-Versioning-Macros.html#CLUTTER-GST-VERSION:CAPS" title="CLUTTER_GST_VERSION"><code class="literal">CLUTTER_GST_VERSION</code></a> is "1.2.3")
@@ -83,7 +83,7 @@ ClutterGst micro version (e.g. "3", if <a class="link" href="clutter-gst-Version
83
83
  <hr>
84
84
  <div class="refsect2">
85
85
  <a name="CLUTTER-GST-VERSION:CAPS"></a><h3>CLUTTER_GST_VERSION</h3>
86
- <pre class="programlisting">#define CLUTTER_GST_VERSION (2.0.10)
86
+ <pre class="programlisting">#define CLUTTER_GST_VERSION (2.0.12)
87
87
  </pre>
88
88
  <p>
89
89
  ClutterGst full version (e.g. "1.2.3")
@@ -92,7 +92,7 @@ ClutterGst full version (e.g. "1.2.3")
92
92
  <hr>
93
93
  <div class="refsect2">
94
94
  <a name="CLUTTER-GST-VERSION-S:CAPS"></a><h3>CLUTTER_GST_VERSION_S</h3>
95
- <pre class="programlisting">#define CLUTTER_GST_VERSION_S "2.0.10"
95
+ <pre class="programlisting">#define CLUTTER_GST_VERSION_S "2.0.12"
96
96
  </pre>
97
97
  <p>
98
98
  ClutterGst full version, encoded as a string.
@@ -1,6 +1,6 @@
1
1
  <?xml version="1.0" encoding="utf-8" standalone="no"?>
2
2
  <!DOCTYPE book PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "">
3
- <book xmlns="http://www.devhelp.net/book" title="Clutter Gst 2.0.10&#10; Reference Manual" link="index.html" author="" name="clutter-gst" version="2" language="c">
3
+ <book xmlns="http://www.devhelp.net/book" title="Clutter Gst 2.0.12&#10; Reference Manual" link="index.html" author="" name="clutter-gst" version="2" language="c">
4
4
  <chapters>
5
5
  <sub name="Clutter Gst Overview" link="ch01.html"/>
6
6
  <sub name="Clutter Actors And Objects" link="ch02.html">
@@ -2,10 +2,10 @@
2
2
  <html>
3
3
  <head>
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
- <title>Clutter Gst 2.0.10
6
- Reference Manual: Clutter Gst 2.0.10 Reference Manual</title>
5
+ <title>Clutter Gst 2.0.12
6
+ Reference Manual: Clutter Gst 2.0.12 Reference Manual</title>
7
7
  <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
8
- <link rel="home" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
8
+ <link rel="home" href="index.html" title="Clutter Gst 2.0.12 Reference Manual">
9
9
  <link rel="next" href="ch01.html" title="Clutter Gst Overview">
10
10
  <meta name="generator" content="GTK-Doc V1.19.1 (XML mode)">
11
11
  <link rel="stylesheet" href="style.css" type="text/css">
@@ -14,9 +14,9 @@
14
14
  <div class="book">
15
15
  <div class="titlepage">
16
16
  <div>
17
- <div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">Clutter Gst 2.0.10
17
+ <div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">Clutter Gst 2.0.12
18
18
  Reference Manual</p></th></tr></table></div>
19
- <div><p class="releaseinfo">Version 2.0.10
19
+ <div><p class="releaseinfo">Version 2.0.12
20
20
  </p></div>
21
21
  <div><p class="copyright">Copyright © 2006, 2007, 2008 OpenedHand LTD</p></div>
22
22
  <div><p class="copyright">Copyright © 2009, 2010 Intel Corporation</p></div>
@@ -2,11 +2,11 @@
2
2
  <html>
3
3
  <head>
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
- <title>Clutter Gst 2.0.10
5
+ <title>Clutter Gst 2.0.12
6
6
  Reference Manual: Appendix A. License</title>
7
7
  <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
8
- <link rel="home" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
9
- <link rel="up" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
8
+ <link rel="home" href="index.html" title="Clutter Gst 2.0.12 Reference Manual">
9
+ <link rel="up" href="index.html" title="Clutter Gst 2.0.12 Reference Manual">
10
10
  <link rel="prev" href="clutter-gst-Versioning-Macros.html" title="Versioning Macros">
11
11
  <meta name="generator" content="GTK-Doc V1.19.1 (XML mode)">
12
12
  <link rel="stylesheet" href="style.css" type="text/css">
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: clutter-gstreamer
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.0
4
+ version: 2.2.1
5
5
  platform: x86-mingw32
6
6
  authors:
7
7
  - The Ruby-GNOME2 Project Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-03-09 00:00:00.000000000 Z
11
+ date: 2014-10-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: clutter
@@ -16,40 +16,40 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 2.2.0
19
+ version: 2.2.1
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 2.2.0
26
+ version: 2.2.1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: gstreamer
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: 2.2.0
33
+ version: 2.2.1
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - '='
39
39
  - !ruby/object:Gem::Version
40
- version: 2.2.0
40
+ version: 2.2.1
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: test-unit-notify
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - '>='
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - '>='
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  description: Ruby/ClutterGStreamer is a Ruby binding of Clutter-GStreamer.
@@ -60,6 +60,7 @@ extra_rdoc_files: []
60
60
  files:
61
61
  - Rakefile
62
62
  - lib/clutter-gst.rb
63
+ - lib/clutter-gstreamer.rb
63
64
  - sample/media-actions-pause.png
64
65
  - sample/media-actions-start.png
65
66
  - sample/vid-panel.png
@@ -117,17 +118,17 @@ require_paths:
117
118
  - lib
118
119
  required_ruby_version: !ruby/object:Gem::Requirement
119
120
  requirements:
120
- - - '>='
121
+ - - ">="
121
122
  - !ruby/object:Gem::Version
122
123
  version: 1.9.3
123
124
  required_rubygems_version: !ruby/object:Gem::Requirement
124
125
  requirements:
125
- - - '>='
126
+ - - ">="
126
127
  - !ruby/object:Gem::Version
127
128
  version: '0'
128
129
  requirements: []
129
130
  rubyforge_project:
130
- rubygems_version: 2.0.14
131
+ rubygems_version: 2.2.2
131
132
  signing_key:
132
133
  specification_version: 4
133
134
  summary: Ruby/ClutterGStreamer is a Ruby binding of Clutter-GStreamer.