mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
docs: improve decodebin2 docs a little
Mention that new pads may be created even after no-more-pads. https://bugzilla.gnome.org/show_bug.cgi?id=634584
This commit is contained in:
parent
8fb2c27ed0
commit
1bfefc50af
1 changed files with 15 additions and 11 deletions
|
@ -33,8 +33,9 @@
|
||||||
*
|
*
|
||||||
* The following section describes how decodebin2 works internally.
|
* The following section describes how decodebin2 works internally.
|
||||||
*
|
*
|
||||||
* The first part of decodebin2 is it's typefind element, which tries
|
* The first part of decodebin2 is its typefind element, which tries
|
||||||
* to get the type of the input stream. If the type is found autoplugging starts.
|
* to determine the media type of the input stream. If the type is found
|
||||||
|
* autoplugging starts.
|
||||||
*
|
*
|
||||||
* decodebin2 internally organizes the elements it autoplugged into GstDecodeChains
|
* decodebin2 internally organizes the elements it autoplugged into GstDecodeChains
|
||||||
* and GstDecodeGroups. A decode chain is a single chain of decoding, this
|
* and GstDecodeGroups. A decode chain is a single chain of decoding, this
|
||||||
|
@ -47,23 +48,27 @@
|
||||||
* A decode group combines a number of chains that are created by a
|
* A decode group combines a number of chains that are created by a
|
||||||
* demuxer element. All those chains are connected through a multiqueue to
|
* demuxer element. All those chains are connected through a multiqueue to
|
||||||
* the demuxer. A new group for the same demuxer is only created if the
|
* the demuxer. A new group for the same demuxer is only created if the
|
||||||
* demuxer has signaled no-more pads, in which case all following pads
|
* demuxer has signaled no-more-pads, in which case all following pads
|
||||||
* create a new chain in the new group.
|
* create a new chain in the new group.
|
||||||
*
|
*
|
||||||
* This continues until the top-level decode chain is complete. A decode
|
* This continues until the top-level decode chain is complete. A decode
|
||||||
* chain is complete if it either ends with a blocked endpad, if autoplugging
|
* chain is complete if it either ends with a blocked endpad, if autoplugging
|
||||||
* stopped because no suitable plugins could be found or if the active group
|
* stopped because no suitable plugins could be found or if the active group
|
||||||
* is complete. A decode group OTOH is complete if all child chains are complete.
|
* is complete. A decode group on the other hand is complete if all child
|
||||||
|
* chains are complete.
|
||||||
*
|
*
|
||||||
* If this happens at some point, all endpads of all active groups are exposed.
|
* If this happens at some point, all endpads of all active groups are exposed.
|
||||||
* For this decodebin2 adds the endpads, signals no-more-pads and then unblocks
|
* For this decodebin2 adds the endpads, signals no-more-pads and then unblocks
|
||||||
* them. Now playback starts.
|
* them. Now playback starts.
|
||||||
*
|
*
|
||||||
* If one of the chains that end on a endpad receives EOS decodebin2 checks upwards
|
* If one of the chains that end on a endpad receives EOS decodebin2 checks
|
||||||
* via the parent pointers if all chains and groups are drained. In that case
|
* if all chains and groups are drained. In that case everything goes into EOS.
|
||||||
* everything goes into EOS.
|
* If there is a chain where the active group is drained but there exist next
|
||||||
* If there is a chain where the active group is drained but there exist next groups
|
* groups, the active group is hidden (endpads are removed) and the next group
|
||||||
* the active group is hidden (endpads are removed) and the next group is exposed.
|
* is exposed. This means that in some cases more pads may be created even
|
||||||
|
* after the initial no-more-pads signal. This happens for example with
|
||||||
|
* so-called "chained oggs", most commonly found among ogg/vorbis internet
|
||||||
|
* radio streams.
|
||||||
*
|
*
|
||||||
* Note 1: If we're talking about blocked endpads this really means that the
|
* Note 1: If we're talking about blocked endpads this really means that the
|
||||||
* *target* pads of the endpads are blocked. Pads that are exposed to the outside
|
* *target* pads of the endpads are blocked. Pads that are exposed to the outside
|
||||||
|
@ -3416,8 +3421,7 @@ gst_decode_pad_new (GstDecodeBin * dbin, GstPad * pad, GstDecodeChain * chain)
|
||||||
pad_tmpl = gst_static_pad_template_get (&decoder_bin_src_template);
|
pad_tmpl = gst_static_pad_template_get (&decoder_bin_src_template);
|
||||||
dpad =
|
dpad =
|
||||||
g_object_new (GST_TYPE_DECODE_PAD, "direction", GST_PAD_DIRECTION (pad),
|
g_object_new (GST_TYPE_DECODE_PAD, "direction", GST_PAD_DIRECTION (pad),
|
||||||
"template", pad_tmpl,
|
"template", pad_tmpl, NULL);
|
||||||
NULL);
|
|
||||||
gst_ghost_pad_construct (GST_GHOST_PAD_CAST (dpad));
|
gst_ghost_pad_construct (GST_GHOST_PAD_CAST (dpad));
|
||||||
gst_ghost_pad_set_target (GST_GHOST_PAD_CAST (dpad), pad);
|
gst_ghost_pad_set_target (GST_GHOST_PAD_CAST (dpad), pad);
|
||||||
dpad->chain = chain;
|
dpad->chain = chain;
|
||||||
|
|
Loading…
Reference in a new issue