gst/gst.defs: Remove unused functions.
authorJohan Dahlin <johan@gnome.org>
Wed, 17 Mar 2004 12:27:20 +0000 (12:27 +0000)
committerJohan Dahlin <johan@gnome.org>
Wed, 17 Mar 2004 12:27:20 +0000 (12:27 +0000)
Original commit message from CVS:
* gst/gst.defs: Remove unused functions.

* gst/gst.override: Ditto

* gst/__init__.py (devloc): delete dl

ChangeLog
common
gst/__init__.py
gst/gst.defs
gst/gst.override

index 08ee873..f63ef2e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,12 @@
 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>
 
diff --git a/common b/common
index 581b12c..af63963 160000 (submodule)
--- a/common
+++ b/common
@@ -1 +1 @@
-Subproject commit 581b12ce0812d391c32f212b9887be333bcdb420
+Subproject commit af639632ef610fb83ee7a07bead59459986741f9
index ac7907f..c466e28 100644 (file)
@@ -33,7 +33,7 @@ if os.path.exists(devloc):
    sys.path.append(devloc)
 
 sys.setdlopenflags(dl.RTLD_LAZY | dl.RTLD_GLOBAL)
-del devloc, sys, os
+del devloc, sys, os, dl
 
 from _gst import *
 
index b87947c..3505190 100644 (file)
     '("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")
-;  )
-;)
-
index 1074114..2c78ae9 100644 (file)
@@ -47,9 +47,6 @@ typedef struct {
      PyObject *func, *data;
 } 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);
 
 %%