Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Guillaume Desmottes
gst-plugins-rs
Commits
f40b6e9d
Commit
f40b6e9d
authored
Jan 21, 2020
by
Guillaume Desmottes
🐐
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tutorial: remove all plugins but identity
parent
e0695b63
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
6 deletions
+0
-6
gst-plugin-tutorial/src/lib.rs
gst-plugin-tutorial/src/lib.rs
+0
-6
No files found.
gst-plugin-tutorial/src/lib.rs
View file @
f40b6e9d
...
...
@@ -19,17 +19,11 @@ extern crate num_traits;
extern
crate
once_cell
;
mod
identity
;
mod
progressbin
;
mod
rgb2gray
;
mod
sinesrc
;
// Plugin entry point that should register all elements provided by this plugin,
// and everything else that this plugin might provide (e.g. typefinders or device providers).
fn
plugin_init
(
plugin
:
&
gst
::
Plugin
)
->
Result
<
(),
glib
::
BoolError
>
{
rgb2gray
::
register
(
plugin
)
?
;
sinesrc
::
register
(
plugin
)
?
;
identity
::
register
(
plugin
)
?
;
progressbin
::
register
(
plugin
)
?
;
Ok
(())
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment