docs: minor update to porting doc for child proxy lookup method

And a typo fix.
This commit is contained in:
Tim-Philipp Müller 2012-08-20 13:51:05 +01:00 committed by Tim-Philipp Müller
parent 0e4d2814fd
commit d1cef85759

View file

@ -501,7 +501,7 @@ The 0.11 porting guide
gst_tag_list_free() has been replaced by gst_tag_list_unref(). gst_tag_list_free() has been replaced by gst_tag_list_unref().
GST_TAG_IMAGE, GST_TAG_PREVIEW_IMAGE, GST_TAG_ATTACHMENT: many tags that GST_TAG_IMAGE, GST_TAG_PREVIEW_IMAGE, GST_TAG_ATTACHMENT: many tags that
used to be of type GstBuffer are not of type GstSample (which is basically used to be of type GstBuffer are now of type GstSample (which is basically
a struct containing a buffer alongside caps and some other info). a struct containing a buffer alongside caps and some other info).
gst_tag_list_get_buffer() => gst_tag_list_get_sample() gst_tag_list_get_buffer() => gst_tag_list_get_sample()
@ -570,6 +570,13 @@ The 0.11 porting guide
gst_video_format_parse_caps() -> use gst_video_info_from_caps() and gst_video_format_parse_caps() -> use gst_video_info_from_caps() and
then GstVideoInfo. then GstVideoInfo.
* GstChildProxy
gst_child_proxy_lookup() can no longer be called on GObjects that
do not implement the GstChildProxy interface. Use
g_object_class_find_property (G_OBJECT_GET_CLASS (obj), "foo")
instead for non-childproxy objects.
* "codec-data" and "streamheader" field in GstCaps (not implemented yet!) * "codec-data" and "streamheader" field in GstCaps (not implemented yet!)
codec-data and stream headers are no longer in GstCaps, but sent as codec-data and stream headers are no longer in GstCaps, but sent as