2005-03-22 11:32:59 +00:00
|
|
|
|
|
|
|
- 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.
|
|
|
|
|
2005-04-21 09:37:34 +00:00
|
|
|
- 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
|
2005-10-20 17:18:12 +00:00
|
|
|
to GstQuery. A typical use case is performing a non-accurate seek to a keyframe,
|
|
|
|
after the seek you want to get the new stream time that will actually be used to
|
|
|
|
update the slider bar.
|
2005-03-22 11:32:59 +00:00
|
|
|
|
|
|
|
- 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
|
2005-10-08 16:49:15 +00:00
|
|
|
functions? Do we do this automatically or let the app handle this?
|
2005-03-22 11:32:59 +00:00
|
|
|
|
2005-10-08 16:49:15 +00:00
|
|
|
- implement clock selection as explained in part-gstpipeline.txt.
|
2005-03-22 11:32:59 +00:00
|
|
|
|
2005-07-15 13:44:19 +00:00
|
|
|
- when a pipeline with a live source goes to PAUSED again, a sample is prerolled
|
|
|
|
in the sinks. This sample should be discarded, possibly with a flush event
|
|
|
|
started from the source.
|
2005-10-08 16:49:15 +00:00
|
|
|
|
2005-10-28 16:21:29 +00:00
|
|
|
- convert framerate to GstFraction in GstCaps.
|
|
|
|
|
2005-10-08 16:49:15 +00:00
|
|
|
- implement latency calculation for live sources.
|
|
|
|
|
|
|
|
- implement master/slave clocks.
|
|
|
|
|
|
|
|
- implement QOS.
|
|
|
|
|
|
|
|
- implement BUFFERSIZE.
|
|
|
|
|
2005-10-20 17:18:12 +00:00
|
|
|
- make bin_bus_handler a vmethod so subclasses can use their own implementation
|
|
|
|
or chain to the parent.
|
|
|
|
|
docs/design/part-TODO.txt: Update TODO.
Original commit message from CVS:
* docs/design/part-TODO.txt:
Update TODO.
* gst/gstbin.c: (message_check), (bin_replace_message),
(bin_remove_messages), (is_eos), (gst_bin_add_func),
(update_degree), (gst_bin_sort_iterator_next), (bin_bus_handler),
(bin_query_duration_init), (bin_query_duration_fold),
(bin_query_duration_done), (bin_query_generic_fold),
(gst_bin_query):
Handle SEGMENT_START/DONE messages correctly.
More evolved query algorithm that handles duration queries
correctly.
* gst/gstelement.c: (gst_element_send_event), (gst_element_query),
(gst_element_get_state_func), (gst_element_abort_state),
(gst_element_commit_state), (gst_element_lost_state):
Some more debugging.
* gst/gstmessage.h:
Added doc.
2005-10-25 15:39:36 +00:00
|
|
|
- make it possible to seek on other formats than bytes in basesrc.
|