mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
docs: update porting guide
This commit is contained in:
parent
2e8d1620ef
commit
3169e8414b
1 changed files with 8 additions and 1 deletions
|
@ -64,11 +64,18 @@ The 0.11 porting guide
|
|||
|
||||
GstParamSpecMiniObject is removed, use boxed param spec now with the GType
|
||||
of the specific GstMiniObject derived type. Also
|
||||
gst_param_spec_mini_object()
|
||||
gst_param_spec_mini_object().
|
||||
|
||||
gst_param_spec_mini_object() -> g_param_spec_boxed()
|
||||
|
||||
The specific gst_value_*_mini_object() methods are removed, used the generic
|
||||
boxed methods instead.
|
||||
|
||||
gst_value_set_mini_object() -> g_value_set_boxed()
|
||||
gst_value_take_mini_object() -> g_value_take_boxed()
|
||||
gst_value_take_get_object() -> g_value_get_boxed()
|
||||
gst_value_take_dup_object() -> g_value_dup_boxed()
|
||||
|
||||
* GstBuffer
|
||||
A GstBuffer is now a simple boxed type this means that subclassing is not
|
||||
possible anymore. To add more data to the buffer, you have to use the
|
||||
|
|
Loading…
Reference in a new issue