mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
11e199b27c
Original commit message from CVS: * Makefile.am: add gstinterfaces dir * configure.ac: get interfaces include dirs * gstreamer/.cvsignore: add .py[co] * gstreamer/0.6.defs: * gstreamer/0.6.override: * gstreamer/0.7.defs: * gstreamer/0.7.override: * gstreamer/common.defs: * gstreamer/common.override: rearrange code for both 0.6 and 0.7 support * gstreamer/Makefile.am: add -fno-strict-aliasing due to python issues * gstinterfaces/.cvsignore: * gstinterfaces/0.7.c: * gstinterfaces/0.7.defs: * gstinterfaces/0.7.h: * gstinterfaces/0.7.override: * gstinterfaces/Makefile.am: * gstinterfaces/__init__.py: * gstinterfaces/arg-types.py: * gstinterfaces/common.c: * gstinterfaces/common.defs: * gstinterfaces/common.h: * gstinterfaces/common.override: * gstinterfaces/gstinterfacesmodule.c: messy start of interfaces handling
42 lines
695 B
Text
42 lines
695 B
Text
;;
|
|
;; Override normal *_get_type handling via rename
|
|
;;
|
|
|
|
(define-method get_props_type
|
|
(of-object "GstPropsEntry")
|
|
(c-name "gst_props_entry_get_props_type")
|
|
(return-type "GstPropsType")
|
|
)
|
|
|
|
;;
|
|
;; Access GstProps properties list
|
|
;;
|
|
|
|
(define-method get_list
|
|
(of-object "GstProps")
|
|
(c-name "gst_props_get_list")
|
|
(return-type "const-GList*")
|
|
)
|
|
|
|
;;
|
|
;; 0.6 Boxed types
|
|
;;
|
|
|
|
(define-boxed BufferPool
|
|
(in-module "Gst")
|
|
(c-name "GstBufferPool")
|
|
(gtype-id "GST_TYPE_BUFFER_POOL")
|
|
)
|
|
|
|
(define-boxed Props
|
|
(in-module "Gst")
|
|
(c-name "GstProps")
|
|
(gtype-id "GST_TYPE_PROPS")
|
|
)
|
|
|
|
(define-boxed PropsEntry
|
|
(in-module "Gst")
|
|
(c-name "GstPropsEntry")
|
|
(gtype-id "GST_TYPE_PROPS_ENTRY")
|
|
)
|
|
|