mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 04:56:24 +00:00
21 lines
317 B
Text
21 lines
317 B
Text
|
;;
|
||
|
;; HACK
|
||
|
;;
|
||
|
|
||
|
(define-function gst_buffer_get_data
|
||
|
(c-name "gst_buffer_get_data")
|
||
|
(return-type "char*")
|
||
|
(parameters
|
||
|
'("GstBuffer*" "buf")
|
||
|
)
|
||
|
)
|
||
|
|
||
|
(define-function gst_buffer_set_data
|
||
|
(c-name "gst_buffer_set_data")
|
||
|
(return-type "none")
|
||
|
(parameters
|
||
|
'("GstBuffer*" "buf")
|
||
|
'("char*" "data")
|
||
|
)
|
||
|
)
|