mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
gst: More API additions to gstreamer core. Fixes #587432
This commit is contained in:
parent
3f466167e9
commit
065a82a88a
2 changed files with 24 additions and 0 deletions
|
@ -147,6 +147,27 @@
|
|||
(return-type "guint")
|
||||
)
|
||||
|
||||
(define-method prev_timestamp
|
||||
(of-object "GstAdapter")
|
||||
(c-name "gst_adapter_prev_timestamp")
|
||||
(return-type "GstClockTime")
|
||||
(parameters
|
||||
'("guint64*" "distance")
|
||||
)
|
||||
)
|
||||
|
||||
(define-method masked_scan_uint32
|
||||
(of-object "GstAdapter")
|
||||
(c-name "gst_adapter_masked_scan_uint32")
|
||||
(return-type "guint")
|
||||
(parameters
|
||||
'("guint32" "mask")
|
||||
'("guint32" "pattern")
|
||||
'("guint" "offset")
|
||||
'("guint" "size")
|
||||
)
|
||||
)
|
||||
|
||||
(define-function gst_adapter_get_type
|
||||
(c-name "gst_adapter_get_type")
|
||||
(return-type "GType")
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
ignore
|
||||
gst_element_set_start_time
|
||||
gst_element_get_start_time
|
||||
gst_element_lost_state_full
|
||||
gst_event_new_step
|
||||
gst_event_parse_step
|
||||
gst_message_new_tag_full
|
||||
|
@ -32,6 +33,8 @@ ignore
|
|||
gst_task_set_pool
|
||||
gst_task_set_thread_callbacks
|
||||
gst_task_set_state
|
||||
gst_adapter_prev_timestamp
|
||||
gst_adapter_masked_scan_uint32
|
||||
%%
|
||||
ignore-type
|
||||
GstBufferList
|
||||
|
|
Loading…
Reference in a new issue