summaryrefslogtreecommitdiff
path: root/gst/common.h
diff options
context:
space:
mode:
authorJohan Dahlin <johan@gnome.org>2004-02-27 18:01:52 +0000
committerJohan Dahlin <johan@gnome.org>2004-02-27 18:01:52 +0000
commita37dede09ce2ce5109322d325e0a48082effbc5f (patch)
treee3e521df65fd1729d1a2c524b859d6af10de3de2 /gst/common.h
parentb27c464e5e099eb577ba9f5a0c8e5597aa7a9425 (diff)
examples/gstreamer/filesrc.py,player.py: New examples
Original commit message from CVS: * examples/gstreamer/filesrc.py,player.py: New examples * gstreamer/gstreamer.override: Add a dict like interface to GstTagList * gstreamer/gstpad-handlers.override: New file, split out from gstreamer.override * gstreamer/gst-types.defs: Don't use gst_buffer_free/gst_data_free, use gst_data_unref instead. * gstreamer/gst-types.c (PyGstData_to_value): Don't send address here. * gstreamer/arg-types.py (GstDataPtrArg.write_param): Send the address to stuff, since we really want to avoid segfaults :) * gstreamer/0.6.[c,defs,h,override]: Remove, we're focusing on 0.7 * gstreamer/0.7.[c,defs,h,override]: Remove, merge with gstreamer.* * gstreamer/Makefile.am: Clean up, remove versioning support.
Diffstat (limited to 'gst/common.h')
-rw-r--r--gst/common.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/gst/common.h b/gst/common.h
deleted file mode 100644
index c271193..0000000
--- a/gst/common.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/* gst-python
- * Copyright (C) 2002 David I. Lehn
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
- *
- * Author: David I. Lehn <dlehn@users.sourceforge.net>
- */
-
-#include <glib-object.h>
-#include <gst/gst.h>
-
-#include <gst/gstqueue.h>
-#include <gst/gsttypefind.h>
-
-typedef struct {
- PyObject *func, *data;
-} PyGstCustomNotify;
-
-void iterate_bin_all(GstBin *bin);
-guint add_iterate_bin(GstBin *bin);
-void remove_iterate_bin(guint id);