/* -*- Mode: C; c-basic-offset: 4 -*- */ /* gst-python * Copyright (C) 2008 * * 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. */ %% headers #ifdef HAVE_CONFIG_H # include #endif #define NO_IMPORT_PYGOBJECT #include "common.h" #include "pygst.h" #include #include #include #include #include "pygstminiobject.h" GST_DEBUG_CATEGORY_EXTERN (pygst_debug); #define GST_CAT_DEFAULT pygst_debug /* Boonky define that allows for backwards compatibility with Python 2.4 */ #if PY_VERSION_HEX < 0x02050000 #define Py_ssize_t int #endif %% modulename gst.video %% import gobject.GObject as PyGObject_Type import gst.Object as PyGstObject_Type import gst.Structure as PyGstStructure_Type import gst.Element as PyGstElement_Type import gst.Pad as PyGstPad_Type import gst.Buffer as PyGstBuffer_Type import gst.Message as PyGstMessage_Type import gst.SystemClock as PyGstSystemClock_Type import gst.BaseTransform as PyGstBaseTransform_Type import gst.BaseSink as PyGstBaseSink_Type %% include gstversion.override %% ignore-glob _* *init *_free *_get_type