mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
multiqueue, inputselector: show pad properties in gst-inspect-1.0
This commit is contained in:
parent
e7ccd58171
commit
5c774f0842
2 changed files with 4 additions and 3 deletions
|
@ -1293,8 +1293,8 @@ gst_input_selector_class_init (GstInputSelectorClass * klass)
|
|||
"Julien Moutte <julien@moutte.net>, "
|
||||
"Jan Schmidt <thaytan@mad.scientist.com>, "
|
||||
"Wim Taymans <wim.taymans@gmail.com>");
|
||||
gst_element_class_add_static_pad_template (gstelement_class,
|
||||
&gst_input_selector_sink_factory);
|
||||
gst_element_class_add_static_pad_template_with_gtype (gstelement_class,
|
||||
&gst_input_selector_sink_factory, GST_TYPE_SELECTOR_PAD);
|
||||
gst_element_class_add_static_pad_template (gstelement_class,
|
||||
&gst_input_selector_src_factory);
|
||||
|
||||
|
|
|
@ -630,7 +630,8 @@ gst_multi_queue_class_init (GstMultiQueueClass * klass)
|
|||
gst_element_class_set_static_metadata (gstelement_class,
|
||||
"MultiQueue",
|
||||
"Generic", "Multiple data queue", "Edward Hervey <edward@fluendo.com>");
|
||||
gst_element_class_add_static_pad_template (gstelement_class, &sinktemplate);
|
||||
gst_element_class_add_static_pad_template_with_gtype (gstelement_class,
|
||||
&sinktemplate, GST_TYPE_MULTIQUEUE_PAD);
|
||||
gst_element_class_add_static_pad_template (gstelement_class, &srctemplate);
|
||||
|
||||
gstelement_class->request_new_pad =
|
||||
|
|
Loading…
Reference in a new issue