mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
segment: Enhance the GstSegment structure documentation
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/435>
This commit is contained in:
parent
416d4a13e0
commit
c740c10404
1 changed files with 59 additions and 15 deletions
|
@ -200,21 +200,65 @@ typedef enum { /*< flags >*/
|
||||||
/**
|
/**
|
||||||
* GstSegment:
|
* GstSegment:
|
||||||
* @flags: flags for this segment
|
* @flags: flags for this segment
|
||||||
* @rate: the playback rate of the segment
|
* @rate: the playback rate of the segment is set in response to a seek
|
||||||
* @applied_rate: the already applied rate to the segment
|
* event and, without any seek, the value should be `1.0`. This
|
||||||
* @format: the format of the segment values
|
* value is used by elements that synchronize buffer [running
|
||||||
* @base: the running time (plus elapsed time, see offset) of the segment start
|
* times](additional/design/synchronisation.md#running-time) on
|
||||||
* @offset: the amount (in buffer timestamps) that has already been elapsed in
|
* the clock (usually the sink elements), leading to consuming
|
||||||
* the segment
|
* buffers faster (for a value `> 1.0`) or slower (for `0.0 <
|
||||||
* @start: the start of the segment in buffer timestamp time (PTS)
|
* value < 1.0`) than normal playback speed. The rate also
|
||||||
* @stop: the stop of the segment in buffer timestamp time (PTS)
|
* defines the playback direction, meaning that when the value is
|
||||||
* @time: the stream time of the segment start
|
* lower than `0.0`, the playback happens in reverse, and the
|
||||||
* @position: the buffer timestamp position in the segment (used internally by
|
* [stream-time](additional/design/synchronisation.md#stream-time)
|
||||||
* elements such as sources, demuxers or parsers to track progress)
|
* is going backward. The `rate` value should never be `0.0`.
|
||||||
* @duration: the duration of the stream
|
* @applied_rate: The applied rate is the rate that has been applied to the stream.
|
||||||
|
* The effective/resulting playback rate of a stream is
|
||||||
|
* `rate * applied_rate`.
|
||||||
|
* The applied rate can be set by source elements when a server is
|
||||||
|
* sending the stream with an already modified playback speed
|
||||||
|
* rate. Filter elements that modify the stream in a way that
|
||||||
|
* modifies the playback speed should also modify the applied
|
||||||
|
* rate. For example the #videorate element when its
|
||||||
|
* #videorate:rate property is set will set the applied rate of
|
||||||
|
* the segment it pushed downstream. Also #scaletempo applies the
|
||||||
|
* input segment rate to the stream and outputs a segment with
|
||||||
|
* rate=1.0 and applied_rate=<inputsegment.rate>.
|
||||||
|
* @format: the unit used for all of the segment's values.
|
||||||
|
* @base: the running time (plus elapsed time, see offset) of the
|
||||||
|
* segment [start](GstSegment.start) ([stop](GstSegment.stop) if
|
||||||
|
* rate < 0.0).
|
||||||
|
* @offset: the offset expresses the elapsed time (in buffer timestamps)
|
||||||
|
* before a seek with its start (stop if rate < 0.0) seek type
|
||||||
|
* set to #GST_SEEK_TYPE_NONE, the value is set to the position
|
||||||
|
* of the segment at the time of the seek.
|
||||||
|
* @start: the start time of the segment (in buffer timestamps)
|
||||||
|
* [(PTS)](GstBuffer.pts), that is the timestamp of the first
|
||||||
|
* buffer to output inside the segment (last one during
|
||||||
|
* reverse playback). For example decoders will
|
||||||
|
* [clip](gst_segment_clip) out the buffers before the start
|
||||||
|
* time.
|
||||||
|
* @stop: the stop time of the segment (in buffer timestamps)
|
||||||
|
* [(PTS)](GstBuffer.pts), that is the timestamp of the last
|
||||||
|
* buffer to output inside the segment (first one during
|
||||||
|
* reverse playback). For example decoders will
|
||||||
|
* [clip](gst_segment_clip) out buffers after the stop time.
|
||||||
|
* @time: the stream time of the segment [start](GstSegment.start)
|
||||||
|
* ([stop](GstSegment.stop) if rate < 0.0).
|
||||||
|
* @position: the buffer timestamp position in the segment is supposed to be
|
||||||
|
* updated by elements such as sources, demuxers or parsers to
|
||||||
|
* track progress by setting it to the last pushed buffer' end time
|
||||||
|
* ([timestamp](GstBuffer.pts) + #GstBuffer.duration) for that
|
||||||
|
* specific segment. The position is used when reconfiguring the
|
||||||
|
* segment with #gst_segment_do_seek when the seek is only
|
||||||
|
* updating the segment (see [offset](GstSegment.offset)).
|
||||||
|
* @duration: the duration of the segment is the maximum absolute difference
|
||||||
|
* between #GstSegment.start and #GstSegment.stop if stop is not
|
||||||
|
* set, otherwise it should be the difference between those
|
||||||
|
* two values. This should be set by elements that know the
|
||||||
|
* overall stream duration (like demuxers) and will be used when
|
||||||
|
* seeking with #GST_SEEK_TYPE_END.
|
||||||
*
|
*
|
||||||
* A helper structure that holds the configured region of
|
* The structure that holds the configured region of interest in a media file.
|
||||||
* interest in a media file.
|
|
||||||
*/
|
*/
|
||||||
struct _GstSegment {
|
struct _GstSegment {
|
||||||
/*< public >*/
|
/*< public >*/
|
||||||
|
|
Loading…
Reference in a new issue