mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
rtmp2: fix code style, update documentation cache
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1256>
This commit is contained in:
parent
30274dee52
commit
8c37eea410
2 changed files with 38 additions and 1 deletions
|
@ -216290,6 +216290,18 @@
|
|||
"readable": true,
|
||||
"type": "GstStructure",
|
||||
"writable": false
|
||||
},
|
||||
"stop-commands": {
|
||||
"blurb": "RTMP commands to send on EOS event before closing connection",
|
||||
"conditionally-available": false,
|
||||
"construct": false,
|
||||
"construct-only": false,
|
||||
"controllable": false,
|
||||
"default": "deletestream+fcunpublish",
|
||||
"mutable": "null",
|
||||
"readable": true,
|
||||
"type": "GstRtmpStopCommands",
|
||||
"writable": true
|
||||
}
|
||||
},
|
||||
"rank": "primary + 1"
|
||||
|
@ -216568,6 +216580,31 @@
|
|||
"value": "1"
|
||||
}
|
||||
]
|
||||
},
|
||||
"GstRtmpStopCommands": {
|
||||
"kind": "flags",
|
||||
"values": [
|
||||
{
|
||||
"desc": "No command",
|
||||
"name": "none",
|
||||
"value": "0x00000000"
|
||||
},
|
||||
{
|
||||
"desc": "FCUnpublish",
|
||||
"name": "fcunpublish",
|
||||
"value": "0x00000001"
|
||||
},
|
||||
{
|
||||
"desc": "closeStream",
|
||||
"name": "closestream",
|
||||
"value": "0x00000002"
|
||||
},
|
||||
{
|
||||
"desc": "deleteStream",
|
||||
"name": "deletestream",
|
||||
"value": "0x00000004"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"package": "GStreamer Bad Plug-ins",
|
||||
|
|
|
@ -615,7 +615,7 @@ gst_rtmp2_sink_event (GstBaseSink * sink, GstEvent * event)
|
|||
break;
|
||||
}
|
||||
|
||||
return GST_BASE_SINK_CLASS (gst_rtmp2_sink_parent_class)->event (sink, event);;
|
||||
return GST_BASE_SINK_CLASS (gst_rtmp2_sink_parent_class)->event (sink, event);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
|
|
Loading…
Reference in a new issue