gstreamer 4.2.0 → 4.2.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 935cc086b41c366efd625ef6f68add15c187d3eaf77f5baefb73ba48d484566d
4
- data.tar.gz: 2cebf70866034ecebd506ca409752d08cb106b95ef1407693b46beff175528aa
3
+ metadata.gz: 314c77da8c35c6c7e6fe89643a3e8a7034fdd7438fa6140a28d734976a52c460
4
+ data.tar.gz: 6050b42babe819392312043a50125de2b4b5634a5922868692bb9c9a0d8071e5
5
5
  SHA512:
6
- metadata.gz: 035f7d0c8089c4f2206c1408a0464d45a34e70fb56f0c89b239d8d65a6e658ad2620e9ee02096240795392be856fda60393816ccda3b197274bd80640cea0a02
7
- data.tar.gz: 66bcd8495697d304c69be9ed9b369d8760ac2f1f7a477707a9f05d20c8a870ec0fe12a3321516069a8682988efef9c38e7044394c03b0d21b608f662a641b9e1
6
+ metadata.gz: a7b83691a4a2fb7440172bb7bfd68783233254ce98a88187f30b04d7137b4d2c643dbd2fccfffbd5957b7272aeda9c9f063db2aad91893db5a0b1958a0a18e5c
7
+ data.tar.gz: da5dca5ec526a4b34966f0dc469faf2b5fcccdff26a74ff0a84ec6b82d24187b666093f7d0c66964b92308f02464ddc330cdfdda70b1fdd1ae7a25d2689701e5
@@ -0,0 +1,37 @@
1
+ /* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
2
+ /*
3
+ * Copyright (C) 2023 Ruby-GNOME2 Project Team
4
+ *
5
+ * This library is free software; you can redistribute it and/or
6
+ * modify it under the terms of the GNU Lesser General Public
7
+ * License as published by the Free Software Foundation; either
8
+ * version 2.1 of the License, or (at your option) any later version.
9
+ *
10
+ * This library is distributed in the hope that it will be useful,
11
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13
+ * Lesser General Public License for more details.
14
+ *
15
+ * You should have received a copy of the GNU Lesser General Public
16
+ * License along with this library; if not, write to the Free Software
17
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18
+ * MA 02110-1301 USA
19
+ */
20
+
21
+ #include "rbgst.h"
22
+
23
+ static void
24
+ rb_gst_element_mark(gpointer object)
25
+ {
26
+ GstBus *bus = gst_element_get_bus(GST_ELEMENT(object));
27
+ if (bus) {
28
+ rbgobj_gc_mark_instance(bus);
29
+ gst_object_unref(bus);
30
+ }
31
+ }
32
+
33
+ void
34
+ rb_gst_init_element(void)
35
+ {
36
+ rbgobj_register_mark_func(GST_TYPE_ELEMENT, rb_gst_element_mark);
37
+ }
@@ -1,6 +1,6 @@
1
1
  /* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
2
2
  /*
3
- * Copyright (C) 2013-2019 Ruby-GNOME Project Team
3
+ * Copyright (C) 2013-2023 Ruby-GNOME 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
@@ -71,4 +71,5 @@ Init_gstreamer (void)
71
71
  rbgobj_register_g2r_func(GST_TYPE_LIST, rg_gst_value_list_g2r);
72
72
 
73
73
  rb_gst_init_child_proxy();
74
+ rb_gst_init_element();
74
75
  }
@@ -1,6 +1,6 @@
1
1
  /* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
2
2
  /*
3
- * Copyright (C) 2013-2014 Ruby-GNOME2 Project Team
3
+ * Copyright (C) 2013-2023 Ruby-GNOME 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
@@ -24,3 +24,4 @@
24
24
 
25
25
  extern void Init_gstreamer (void);
26
26
  G_GNUC_INTERNAL extern void rb_gst_init_child_proxy (void);
27
+ G_GNUC_INTERNAL extern void rb_gst_init_element (void);
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gstreamer
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.2.0
4
+ version: 4.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Ruby-GNOME Project Team
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2023-08-19 00:00:00.000000000 Z
10
+ date: 2024-04-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: gobject-introspection
@@ -16,14 +15,14 @@ dependencies:
16
15
  requirements:
17
16
  - - '='
18
17
  - !ruby/object:Gem::Version
19
- version: 4.2.0
18
+ version: 4.2.2
20
19
  type: :runtime
21
20
  prerelease: false
22
21
  version_requirements: !ruby/object:Gem::Requirement
23
22
  requirements:
24
23
  - - '='
25
24
  - !ruby/object:Gem::Version
26
- version: 4.2.0
25
+ version: 4.2.2
27
26
  description: Ruby/GStreamer is a Ruby binding for GStreamer.
28
27
  email: ruby-gnome2-devel-en@lists.sourceforge.net
29
28
  executables: []
@@ -37,6 +36,7 @@ files:
37
36
  - ext/gstreamer/depend
38
37
  - ext/gstreamer/extconf.rb
39
38
  - ext/gstreamer/rbgst-child-proxy.c
39
+ - ext/gstreamer/rbgst-element.c
40
40
  - ext/gstreamer/rbgst.c
41
41
  - ext/gstreamer/rbgst.h
42
42
  - extconf.rb
@@ -82,7 +82,6 @@ licenses:
82
82
  - LGPL-2.1+
83
83
  metadata:
84
84
  msys2_mingw_dependencies: gstreamer
85
- post_install_message:
86
85
  rdoc_options: []
87
86
  require_paths:
88
87
  - lib
@@ -97,8 +96,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
97
96
  - !ruby/object:Gem::Version
98
97
  version: '0'
99
98
  requirements: []
100
- rubygems_version: 3.5.0.dev
101
- signing_key:
99
+ rubygems_version: 3.6.0.dev
102
100
  specification_version: 4
103
101
  summary: Ruby/GStreamer is a Ruby binding for GStreamer.
104
102
  test_files: []