mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
baseparse: minor docs fix
This commit is contained in:
parent
c06d9f7b98
commit
d4a4a96f82
1 changed files with 5 additions and 4 deletions
|
@ -182,8 +182,10 @@ struct _GstBaseParse {
|
|||
* @stop: Optional.
|
||||
* Called when the element stops processing.
|
||||
* Allows closing external resources.
|
||||
* @set_sink_caps: allows the subclass to be notified of the actual caps set.
|
||||
* @get_sink_caps: allows the subclass to do its own sink get caps if needed.
|
||||
* @set_sink_caps: Optional.
|
||||
* Allows the subclass to be notified of the actual caps set.
|
||||
* @get_sink_caps: Optional.
|
||||
* Allows the subclass to do its own sink get caps if needed.
|
||||
* @handle_frame: Parses the input data into valid frames as defined by subclass
|
||||
* which should be passed to gst_base_parse_finish_frame().
|
||||
* The frame's input buffer is guaranteed writable,
|
||||
|
@ -222,8 +224,7 @@ struct _GstBaseParse {
|
|||
* parent to let the default handler run (Since 1.2)
|
||||
*
|
||||
* Subclasses can override any of the available virtual methods or not, as
|
||||
* needed. At minimum @check_valid_frame and @parse_frame needs to be
|
||||
* overridden.
|
||||
* needed. At minimum @handle_frame needs to be overridden.
|
||||
*/
|
||||
struct _GstBaseParseClass {
|
||||
GstElementClass parent_class;
|
||||
|
|
Loading…
Reference in a new issue