diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2012-09-02 01:17:44 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2012-09-02 01:18:58 +0100 |
commit | f712a9596c2bc1863edf9b816d9854eefca9ba45 (patch) | |
tree | cac752882a783536a0793e2a0bdd8cd6b3e5bd12 /docs | |
parent | a053bfb6f4fc8bd1d12626d8097ef7e9cf45b093 (diff) |
message: rename GST_MESSAGE_DURATION -> GST_MESSAGE_DURATION_CHANGED
The duration should be re-queried via a query using the
normal path, we don't want applications to use the value
from the message itself, since it might no match what a
duration query done from the sink upstream might yield.
Also disables duration caching in GstBin. It should be
added back again at some point.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/gst/gstreamer-sections.txt | 3 | ||||
-rw-r--r-- | docs/random/porting-to-0.11.txt | 9 |
2 files changed, 8 insertions, 4 deletions
diff --git a/docs/gst/gstreamer-sections.txt b/docs/gst/gstreamer-sections.txt index ca0389f9a..64fcf0fcc 100644 --- a/docs/gst/gstreamer-sections.txt +++ b/docs/gst/gstreamer-sections.txt @@ -1434,8 +1434,7 @@ gst_message_new_segment_start gst_message_parse_segment_start gst_message_new_segment_done gst_message_parse_segment_done -gst_message_new_duration -gst_message_parse_duration +gst_message_new_duration_changed gst_message_new_latency gst_message_new_async_start gst_message_new_async_done diff --git a/docs/random/porting-to-0.11.txt b/docs/random/porting-to-0.11.txt index 79315a8a3..0c4fffe44 100644 --- a/docs/random/porting-to-0.11.txt +++ b/docs/random/porting-to-0.11.txt @@ -351,6 +351,11 @@ The 0.11 porting guide The GstStructure is removed from the public API, use the getters to get a handle to a GstStructure. + GST_MESSAGE_DURATION -> GST_MESSAGE_DURATION_CHANGED + + gst_message_parse_duration() was removed (not needed any longer, do + a duration query to query the updated duration) + * GstCaps Is now a boxed type derived from GstMiniObject. @@ -602,8 +607,8 @@ The 0.11 porting guide create request pads from elements. * some elements that used to have a single dynamic source pad have a - static source pad now. Example: wavparse, id3demux, apedemux. (This - does not affect applications using decodebin or playbin) + static source pad now. Example: wavparse, id3demux, iceydemux, apedemux. + (This does not affect applications using decodebin or playbin). * the name of the GstXOverlay "prepare-xwindow-id" message has changed to "prepare-window-handle" (and GstXOverlay has been renamed to |