mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-22 19:41:00 +00:00
tutorial: Add identity element based directly on GstElement
This commit is contained in:
parent
10da397d9b
commit
6bd4931120
2 changed files with 289 additions and 0 deletions
287
gst-plugin-tutorial/src/identity.rs
Normal file
287
gst-plugin-tutorial/src/identity.rs
Normal file
|
@ -0,0 +1,287 @@
|
|||
// Copyright (C) 2018 Sebastian Dröge <sebastian@centricular.com>
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
||||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
use glib;
|
||||
use glib::prelude::*;
|
||||
use glib::subclass;
|
||||
use glib::subclass::prelude::*;
|
||||
use gst;
|
||||
use gst::prelude::*;
|
||||
use gst::subclass::prelude::*;
|
||||
|
||||
// Struct containing all the element data
|
||||
struct Identity {
|
||||
cat: gst::DebugCategory,
|
||||
srcpad: gst::Pad,
|
||||
sinkpad: gst::Pad,
|
||||
}
|
||||
|
||||
impl Identity {
|
||||
// After creating of our two pads set all the functions on them
|
||||
//
|
||||
// Each function is wrapped in catch_panic_pad_function(), which will
|
||||
// - Catch panics from the pad functions and instead of aborting the process
|
||||
// it will simply convert them into an error message and poison the element
|
||||
// instance
|
||||
// - Extract our Identity struct from the object instance and pass it to us
|
||||
//
|
||||
// Details about what each function is good for is next to each function definition
|
||||
fn set_pad_functions(sinkpad: &gst::Pad, srcpad: &gst::Pad) {
|
||||
sinkpad.set_chain_function(|pad, parent, buffer| {
|
||||
Identity::catch_panic_pad_function(
|
||||
parent,
|
||||
|| gst::FlowReturn::Error,
|
||||
|identity, element| identity.sink_chain(pad, element, buffer),
|
||||
)
|
||||
});
|
||||
sinkpad.set_event_function(|pad, parent, event| {
|
||||
Identity::catch_panic_pad_function(
|
||||
parent,
|
||||
|| false,
|
||||
|identity, element| identity.sink_event(pad, element, event),
|
||||
)
|
||||
});
|
||||
sinkpad.set_query_function(|pad, parent, query| {
|
||||
Identity::catch_panic_pad_function(
|
||||
parent,
|
||||
|| false,
|
||||
|identity, element| identity.sink_query(pad, element, query),
|
||||
)
|
||||
});
|
||||
|
||||
srcpad.set_event_function(|pad, parent, event| {
|
||||
Identity::catch_panic_pad_function(
|
||||
parent,
|
||||
|| false,
|
||||
|identity, element| identity.src_event(pad, element, event),
|
||||
)
|
||||
});
|
||||
srcpad.set_query_function(|pad, parent, query| {
|
||||
Identity::catch_panic_pad_function(
|
||||
parent,
|
||||
|| false,
|
||||
|identity, element| identity.src_query(pad, element, query),
|
||||
)
|
||||
});
|
||||
}
|
||||
|
||||
// Called whenever a new buffer is passed to our sink pad. Here buffers should be processed and
|
||||
// whenever some output buffer is available have to push it out of the source pad.
|
||||
// Here we just pass through all buffers directly
|
||||
//
|
||||
// See the documentation of gst::Buffer and gst::BufferRef to see what can be done with
|
||||
// buffers.
|
||||
fn sink_chain(
|
||||
&self,
|
||||
pad: &gst::Pad,
|
||||
_element: &gst::Element,
|
||||
buffer: gst::Buffer,
|
||||
) -> gst::FlowReturn {
|
||||
gst_log!(self.cat, obj: pad, "Handling buffer {:?}", buffer);
|
||||
self.srcpad.push(buffer)
|
||||
}
|
||||
|
||||
// Called whenever an event arrives on the sink pad. It has to be handled accordingly and in
|
||||
// most cases has to be either passed to Pad::event_default() on this pad for default handling,
|
||||
// or Pad::push_event() on all pads with the opposite direction for direct forwarding.
|
||||
// Here we just pass through all events directly to the source pad.
|
||||
//
|
||||
// See the documentation of gst::Event and gst::EventRef to see what can be done with
|
||||
// events, and especially the gst::EventView type for inspecting events.
|
||||
fn sink_event(&self, pad: &gst::Pad, _element: &gst::Element, event: gst::Event) -> bool {
|
||||
gst_log!(self.cat, obj: pad, "Handling event {:?}", event);
|
||||
self.srcpad.push_event(event)
|
||||
}
|
||||
|
||||
// Called whenever a query is sent to the sink pad. It has to be answered if the element can
|
||||
// handle it, potentially by forwarding the query first to the peer pads of the pads with the
|
||||
// opposite direction, or false has to be returned. Default handling can be achieved with
|
||||
// Pad::query_default() on this pad and forwarding with Pad::peer_query() on the pads with the
|
||||
// opposite direction.
|
||||
// Here we just forward all queries directly to the source pad's peers.
|
||||
//
|
||||
// See the documentation of gst::Query and gst::QueryRef to see what can be done with
|
||||
// queries, and especially the gst::QueryView type for inspecting and modifying queries.
|
||||
fn sink_query(
|
||||
&self,
|
||||
pad: &gst::Pad,
|
||||
_element: &gst::Element,
|
||||
query: &mut gst::QueryRef,
|
||||
) -> bool {
|
||||
gst_log!(self.cat, obj: pad, "Handling query {:?}", query);
|
||||
self.srcpad.peer_query(query)
|
||||
}
|
||||
|
||||
// Called whenever an event arrives on the source pad. It has to be handled accordingly and in
|
||||
// most cases has to be either passed to Pad::event_default() on the same pad for default
|
||||
// handling, or Pad::push_event() on all pads with the opposite direction for direct
|
||||
// forwarding.
|
||||
// Here we just pass through all events directly to the sink pad.
|
||||
//
|
||||
// See the documentation of gst::Event and gst::EventRef to see what can be done with
|
||||
// events, and especially the gst::EventView type for inspecting events.
|
||||
fn src_event(&self, pad: &gst::Pad, _element: &gst::Element, event: gst::Event) -> bool {
|
||||
gst_log!(self.cat, obj: pad, "Handling event {:?}", event);
|
||||
self.sinkpad.push_event(event)
|
||||
}
|
||||
|
||||
// Called whenever a query is sent to the source pad. It has to be answered if the element can
|
||||
// handle it, potentially by forwarding the query first to the peer pads of the pads with the
|
||||
// opposite direction, or false has to be returned. Default handling can be achieved with
|
||||
// Pad::query_default() on this pad and forwarding with Pad::peer_query() on the pads with the
|
||||
// opposite direction.
|
||||
// Here we just forward all queries directly to the sink pad's peers.
|
||||
//
|
||||
// See the documentation of gst::Query and gst::QueryRef to see what can be done with
|
||||
// queries, and especially the gst::QueryView type for inspecting and modifying queries.
|
||||
fn src_query(
|
||||
&self,
|
||||
pad: &gst::Pad,
|
||||
_element: &gst::Element,
|
||||
query: &mut gst::QueryRef,
|
||||
) -> bool {
|
||||
gst_log!(self.cat, obj: pad, "Handling query {:?}", query);
|
||||
self.sinkpad.peer_query(query)
|
||||
}
|
||||
}
|
||||
|
||||
// This trait registers our type with the GObject object system and
|
||||
// provides the entry points for creating a new instance and setting
|
||||
// up the class data
|
||||
impl ObjectSubclass for Identity {
|
||||
const NAME: &'static str = "RsIdentity";
|
||||
type ParentType = gst::Element;
|
||||
type Instance = gst::subclass::ElementInstanceStruct<Self>;
|
||||
type Class = subclass::simple::ClassStruct<Self>;
|
||||
|
||||
// This macro provides some boilerplate.
|
||||
glib_object_subclass!();
|
||||
|
||||
// By default this would be called for creating a new instance but we
|
||||
// want access to the class struct below so this function is unreachable
|
||||
fn new() -> Self {
|
||||
unreachable!();
|
||||
}
|
||||
|
||||
// Called when a new instance is to be created. We need to return an instance
|
||||
// of our struct here and also get the class struct passed in case it's needed
|
||||
fn new_with_class(klass: &subclass::simple::ClassStruct<Self>) -> Self {
|
||||
// Create our two pads from the templates that were registered with
|
||||
// the class
|
||||
let templ = klass.get_pad_template("sink").unwrap();
|
||||
let sinkpad = gst::Pad::new_from_template(&templ, "sink");
|
||||
let templ = klass.get_pad_template("src").unwrap();
|
||||
let srcpad = gst::Pad::new_from_template(&templ, "src");
|
||||
|
||||
// And then set all our pad functions for handling anything that happens
|
||||
// on these pads
|
||||
Identity::set_pad_functions(&sinkpad, &srcpad);
|
||||
|
||||
// Return an instance of our struct and also include our debug category here.
|
||||
// The debug category will be used later whenever we need to put something
|
||||
// into the debug logs
|
||||
Self {
|
||||
cat: gst::DebugCategory::new(
|
||||
"rsidentity",
|
||||
gst::DebugColorFlags::empty(),
|
||||
"Identity Element",
|
||||
),
|
||||
srcpad,
|
||||
sinkpad,
|
||||
}
|
||||
}
|
||||
|
||||
// Called exactly once when registering the type. Used for
|
||||
// setting up metadata for all instances, e.g. the name and
|
||||
// classification and the pad templates with their caps.
|
||||
//
|
||||
// Actual instances can create pads based on those pad templates
|
||||
// with a subset of the caps given here.
|
||||
fn class_init(klass: &mut subclass::simple::ClassStruct<Self>) {
|
||||
// Set the element specific metadata. This information is what
|
||||
// is visible from gst-inspect-1.0 and can also be programatically
|
||||
// retrieved from the gst::Registry after initial registration
|
||||
// without having to load the plugin in memory.
|
||||
klass.set_metadata(
|
||||
"Identity",
|
||||
"Generic",
|
||||
"Does nothing with the data",
|
||||
"Sebastian Dröge <sebastian@centricular.com>",
|
||||
);
|
||||
|
||||
// Create and add pad templates for our sink and source pad. These
|
||||
// are later used for actually creating the pads and beforehand
|
||||
// already provide information to GStreamer about all possible
|
||||
// pads that could exist for this type.
|
||||
|
||||
// Our element can accept any possible caps on both pads
|
||||
let caps = gst::Caps::new_any();
|
||||
let src_pad_template = gst::PadTemplate::new(
|
||||
"src",
|
||||
gst::PadDirection::Src,
|
||||
gst::PadPresence::Always,
|
||||
&caps,
|
||||
);
|
||||
klass.add_pad_template(src_pad_template);
|
||||
|
||||
let sink_pad_template = gst::PadTemplate::new(
|
||||
"sink",
|
||||
gst::PadDirection::Sink,
|
||||
gst::PadPresence::Always,
|
||||
&caps,
|
||||
);
|
||||
klass.add_pad_template(sink_pad_template);
|
||||
}
|
||||
}
|
||||
|
||||
// Implementation of glib::Object virtual methods
|
||||
impl ObjectImpl for Identity {
|
||||
// This macro provides some boilerplate
|
||||
glib_object_impl!();
|
||||
|
||||
// Called right after construction of a new instance
|
||||
fn constructed(&self, obj: &glib::Object) {
|
||||
// Call the parent class' ::constructed() implementation first
|
||||
self.parent_constructed(obj);
|
||||
|
||||
// Here we actually add the pads we created in Identity::new() to the
|
||||
// element so that GStreamer is aware of their existence.
|
||||
let element = obj.downcast_ref::<gst::Element>().unwrap();
|
||||
element.add_pad(&self.sinkpad).unwrap();
|
||||
element.add_pad(&self.srcpad).unwrap();
|
||||
}
|
||||
}
|
||||
|
||||
// Implementation of gst::Element virtual methods
|
||||
impl ElementImpl for Identity {
|
||||
// Called whenever the state of the element should be changed. This allows for
|
||||
// starting up the element, allocating/deallocating resources or shutting down
|
||||
// the element again.
|
||||
fn change_state(
|
||||
&self,
|
||||
element: &gst::Element,
|
||||
transition: gst::StateChange,
|
||||
) -> gst::StateChangeReturn {
|
||||
gst_trace!(self.cat, obj: element, "Changing state {:?}", transition);
|
||||
|
||||
// Call the parent class' implementation of ::change_state()
|
||||
let ret = self.parent_change_state(element, transition);
|
||||
if ret == gst::StateChangeReturn::Failure {
|
||||
return ret;
|
||||
}
|
||||
|
||||
ret
|
||||
}
|
||||
}
|
||||
|
||||
// Registers the type for our element, and then registers in GStreamer under
|
||||
// the name "rsidentity" for being able to instantiate it via e.g.
|
||||
// gst::ElementFactory::make().
|
||||
pub fn register(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
|
||||
gst::Element::register(plugin, "rsidentity", 0, Identity::get_type())
|
||||
}
|
|
@ -17,6 +17,7 @@ extern crate gstreamer_video as gst_video;
|
|||
extern crate byte_slice_cast;
|
||||
extern crate num_traits;
|
||||
|
||||
mod identity;
|
||||
mod rgb2gray;
|
||||
mod sinesrc;
|
||||
|
||||
|
@ -25,6 +26,7 @@ mod sinesrc;
|
|||
fn plugin_init(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
|
||||
rgb2gray::register(plugin)?;
|
||||
sinesrc::register(plugin)?;
|
||||
identity::register(plugin)?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue