mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-02 21:48:55 +00:00
chopmydata: Fix FIXMEs in gst_element_class_set_static_metadata
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1097>
This commit is contained in:
parent
08f924b491
commit
1fa1b18a24
2 changed files with 5 additions and 4 deletions
|
@ -8202,7 +8202,7 @@
|
||||||
},
|
},
|
||||||
"chopmydata": {
|
"chopmydata": {
|
||||||
"author": "David Schleef <ds@schleef.org>",
|
"author": "David Schleef <ds@schleef.org>",
|
||||||
"description": "FIXME",
|
"description": "Split up a stream into randomly-sized buffers",
|
||||||
"hierarchy": [
|
"hierarchy": [
|
||||||
"GstChopMyData",
|
"GstChopMyData",
|
||||||
"GstElement",
|
"GstElement",
|
||||||
|
@ -8211,7 +8211,7 @@
|
||||||
"GObject"
|
"GObject"
|
||||||
],
|
],
|
||||||
"klass": "Generic",
|
"klass": "Generic",
|
||||||
"long-name": "FIXME",
|
"long-name": "Chop my data",
|
||||||
"pad-templates": {
|
"pad-templates": {
|
||||||
"sink": {
|
"sink": {
|
||||||
"caps": "ANY",
|
"caps": "ANY",
|
||||||
|
|
|
@ -128,8 +128,9 @@ gst_chop_my_data_class_init (GstChopMyDataClass * klass)
|
||||||
gst_element_class_add_static_pad_template (element_class,
|
gst_element_class_add_static_pad_template (element_class,
|
||||||
&gst_chop_my_data_sink_template);
|
&gst_chop_my_data_sink_template);
|
||||||
|
|
||||||
gst_element_class_set_static_metadata (element_class, "FIXME",
|
gst_element_class_set_static_metadata (element_class, "Chop my data",
|
||||||
"Generic", "FIXME", "David Schleef <ds@schleef.org>");
|
"Generic", "Split up a stream into randomly-sized buffers",
|
||||||
|
"David Schleef <ds@schleef.org>");
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in a new issue