mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 05:06:17 +00:00
gst/gst.defs: Remove unused functions.
Original commit message from CVS: * gst/gst.defs: Remove unused functions. * gst/gst.override: Ditto * gst/__init__.py (devloc): delete dl
This commit is contained in:
parent
40350b8931
commit
339261e4e2
5 changed files with 9 additions and 55 deletions
|
@ -1,6 +1,12 @@
|
||||||
2004-03-17 Johan Dahlin <johan@gnome.org>
|
2004-03-17 Johan Dahlin <johan@gnome.org>
|
||||||
|
|
||||||
* Makefile.am (DIST_SUBDIRS): Remove PLAYDIR.
|
* gst/gst.defs: Remove unused functions.
|
||||||
|
|
||||||
|
* gst/gst.override: Ditto
|
||||||
|
|
||||||
|
* gst/__init__.py (devloc): delete dl
|
||||||
|
|
||||||
|
* Makefile.am (DIST_SUBDIRS): Remove PLAYDIR
|
||||||
|
|
||||||
2004-03-16 Johan Dahlin <johan@gnome.org>
|
2004-03-16 Johan Dahlin <johan@gnome.org>
|
||||||
|
|
||||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
||||||
Subproject commit 581b12ce0812d391c32f212b9887be333bcdb420
|
Subproject commit af639632ef610fb83ee7a07bead59459986741f9
|
|
@ -33,7 +33,7 @@ if os.path.exists(devloc):
|
||||||
sys.path.append(devloc)
|
sys.path.append(devloc)
|
||||||
|
|
||||||
sys.setdlopenflags(dl.RTLD_LAZY | dl.RTLD_GLOBAL)
|
sys.setdlopenflags(dl.RTLD_LAZY | dl.RTLD_GLOBAL)
|
||||||
del devloc, sys, os
|
del devloc, sys, os, dl
|
||||||
|
|
||||||
from _gst import *
|
from _gst import *
|
||||||
|
|
||||||
|
|
49
gst/gst.defs
49
gst/gst.defs
|
@ -6104,52 +6104,3 @@
|
||||||
'("GstObject*" "parent")
|
'("GstObject*" "parent")
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
;;
|
|
||||||
;; Accelerate common GstBin iterate loop
|
|
||||||
;;
|
|
||||||
|
|
||||||
(define-function iterate_bin_all
|
|
||||||
(c-name "iterate_bin_all")
|
|
||||||
(return-type "none")
|
|
||||||
(parameters
|
|
||||||
'("GstBin*" "bin")
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-function add_iterate_bin
|
|
||||||
(c-name "add_iterate_bin")
|
|
||||||
(return-type "guint")
|
|
||||||
(parameters
|
|
||||||
'("GstBin*" "bin")
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-function remove_iterate_bin
|
|
||||||
(c-name "remove_iterate_bin")
|
|
||||||
(return-type "none")
|
|
||||||
(parameters
|
|
||||||
'("guint" "id")
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
;;
|
|
||||||
;; HACK
|
|
||||||
;;
|
|
||||||
|
|
||||||
;(define-method get_data
|
|
||||||
; (of-object "GstBuffer")
|
|
||||||
; (c-name "gst_buffer_get_data")
|
|
||||||
; (return-type "char*")
|
|
||||||
;)
|
|
||||||
|
|
||||||
;(define-method set_data
|
|
||||||
; (of-object "GstBuffer")
|
|
||||||
; (c-name "gst_buffer_set_data")
|
|
||||||
; (return-type "none")
|
|
||||||
; (parameters
|
|
||||||
; '("char*" "data")
|
|
||||||
; )
|
|
||||||
;)
|
|
||||||
|
|
||||||
|
|
|
@ -47,9 +47,6 @@ typedef struct {
|
||||||
PyObject *func, *data;
|
PyObject *func, *data;
|
||||||
} PyGstCustomNotify;
|
} PyGstCustomNotify;
|
||||||
|
|
||||||
void iterate_bin_all (GstBin *bin);
|
|
||||||
guint add_iterate_bin (GstBin *bin);
|
|
||||||
void remove_iterate_bin (guint id);
|
|
||||||
extern gboolean pygst_data_from_pyobject (PyObject *object, GstData **data);
|
extern gboolean pygst_data_from_pyobject (PyObject *object, GstData **data);
|
||||||
|
|
||||||
%%
|
%%
|
||||||
|
|
Loading…
Reference in a new issue