1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright (C) 2023 Mathieu Duponchelle <mathieu@centricular.com>
//
// Take a look at the license at the top of the repository in the LICENSE file.
//! GStreamer elements for connecting pipelines in the same process
/**
* plugin-rsinter:
* @title: Rust inter elements
* @short_description: A set of elements for transferring data between pipelines
*
* This plugin exposes two elements, `intersink` and `intersrc`, that can be
* used to transfer data from one pipeline to multiple others in the same
* process.
*
* The elements are implemented using the `StreamProducer` API from
* gstreamer-utils.
*
* Since: plugins-rs-0.11.0
*/
use glib;
plugin_define!;