mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
update porting doc
This commit is contained in:
parent
f746174c10
commit
1fcd85308a
1 changed files with 11 additions and 0 deletions
|
@ -136,6 +136,17 @@ The 0.11 porting guide
|
||||||
simply do the fixation in the element or use a vmethod from the base class
|
simply do the fixation in the element or use a vmethod from the base class
|
||||||
if appropriate.
|
if appropriate.
|
||||||
|
|
||||||
|
The GstPadGetCapsFunction was removed and replaced with a GST_QUERY_CAPS
|
||||||
|
query.
|
||||||
|
|
||||||
|
gst_pad_proxy_getcaps() -> gst_pad_proxy_query_caps()
|
||||||
|
gst_pad_get_caps() -> gst_pad_query_caps()
|
||||||
|
gst_pad_peer_get_caps() -> gst_pad_peer_query_caps()
|
||||||
|
gst_pad_accept_caps() -> gst_pad_query_accept_caps()
|
||||||
|
gst_pad_peer_accept_caps() -> gst_pad_peer_query_accept_caps()
|
||||||
|
gst_pad_query_peer_*() -> gst_pad_peer_query_*()
|
||||||
|
|
||||||
|
|
||||||
* GstPadTemplate
|
* GstPadTemplate
|
||||||
gst_pad_template_get_caps() returns a new reference of the caps
|
gst_pad_template_get_caps() returns a new reference of the caps
|
||||||
and the return value needs to be unreffed after usage.
|
and the return value needs to be unreffed after usage.
|
||||||
|
|
Loading…
Reference in a new issue