diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2012-08-20 13:51:05 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2012-08-20 13:52:05 +0100 |
commit | d1cef85759e1ef1d0ab9d1a3dca52778fcdebf68 (patch) | |
tree | 9675803d4af9c44d4f5e2f5960f6418e35f2e654 /docs/random | |
parent | 0e4d2814fdc8b4370749af107a08c25466427440 (diff) |
docs: minor update to porting doc for child proxy lookup method
And a typo fix.
Diffstat (limited to 'docs/random')
-rw-r--r-- | docs/random/porting-to-0.11.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/random/porting-to-0.11.txt b/docs/random/porting-to-0.11.txt index 530876b4f..1e906dbd9 100644 --- a/docs/random/porting-to-0.11.txt +++ b/docs/random/porting-to-0.11.txt @@ -501,7 +501,7 @@ The 0.11 porting guide 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 - 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). 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 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 stream headers are no longer in GstCaps, but sent as |