porting: update
authorWim Taymans <wim.taymans@collabora.co.uk>
Fri, 28 Oct 2011 10:31:03 +0000 (12:31 +0200)
committerWim Taymans <wim.taymans@collabora.co.uk>
Fri, 28 Oct 2011 10:31:03 +0000 (12:31 +0200)
docs/random/porting-to-0.11.txt

index 39c0830..6b4eca6 100644 (file)
@@ -212,6 +212,10 @@ The 0.11 porting guide
     on the pads where the buffer is pushed on. Likewise GST_BUFFER_COPY_CAPS is
     not needed anymore. gst_buffer_get/set_caps() are gone too.
 
+    GST_BUFFER_TIMESTAMP is gone, use GST_BUFFER_PTS or GST_BUFFER_DTS instead.
+    Likewise GST_BUFFER_TIMESTAMP_IS_VALID() was changed to
+    GST_BUFFER_PTS_IS_VALID and GST_BUFFER_DTS_IS_VALID
+
 * GstBufferList
     The GstBufferList object is much simplified because most of the
     functionality in the groups is now part of the GstMemory in buffers.
@@ -315,6 +319,9 @@ The 0.11 porting guide
 
     Arguments changed from guint to gsize.
 
+    gst_adapter_prev_timestamp() is removed and should be replaced with
+    gst_adapter_prev_pts() and gst_adapter_prev_dts().
+
 * GstBitReader, GstByteReader, GstByteWriter
     gst_*_reader_new_from_buffer(), gst_*_reader_init_from_buffer() removed, get
     access to the buffer data with _map() and then use the _new() functions.