mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
c94f6bf5bf
Original commit message from CVS: * docs/design/draft-push-pull.txt: * docs/design/part-MT-refcounting.txt: * docs/design/part-TODO.txt: * docs/design/part-caps.txt: * docs/design/part-events.txt: * docs/design/part-gstbus.txt: * docs/design/part-gstpipeline.txt: * docs/design/part-messages.txt: * docs/design/part-push-pull.txt: * docs/design/part-query.txt: Some more docs.
33 lines
1.4 KiB
Text
33 lines
1.4 KiB
Text
|
|
- changing an object's name after construction is not allowed. Checks are performed
|
|
when adding objects to parents that no duplicate names are used, changing the name
|
|
to a duplicate name after adding it is therefore allowed and voids internal
|
|
consistency.
|
|
|
|
- check for race in _task_pause()/_stop() since the TASK_LOCK is not held by the
|
|
calling thread and the STREAM_LOCK not by the task code.
|
|
|
|
- only emit EOS in PLAYING. Make sure elements reemit the EOS message when going to
|
|
PLAYING again.
|
|
|
|
- implement return values from events in addition to the gboolean. This should be
|
|
done by making the event contain a GstStructure with input/output values, similar
|
|
to GstMessage.
|
|
|
|
- implement query ala events as opposed to the current return value of only a
|
|
guint64. I don't have a use case where this a problem yet, though.
|
|
|
|
- implement state change order on get<->loop-get<->loop elements. This probably
|
|
requires a backtracking algorithm.
|
|
|
|
- implement iterators for traversing elements upstream or dowstream.
|
|
|
|
- unlinking pads in the PAUSED state needs to make sure the stream thread is not
|
|
executing code. Can this be done with a flush to unlock all downstream chain
|
|
functions?
|
|
|
|
- make the seek event return the time where the seek will happen so that GstPipeline
|
|
can update the stream time. This is linked with making the events return values.
|
|
|
|
- implement clock selection as explained in part-gstpipeline.txt
|
|
|