renatofilho@608: /* GStreamer renatofilho@608: * Copyright (C) <2006> Renato Araujo Oliveira Filho renatofilho@608: * Rosfran Borges renatofilho@608: * renatofilho@608: * This library is free software; you can redistribute it and/or renatofilho@608: * modify it under the terms of the GNU Library General Public renatofilho@608: * License as published by the Free Software Foundation; either renatofilho@608: * version 2 of the License, or (at your option) any later version. renatofilho@608: * renatofilho@608: * This library is distributed in the hope that it will be useful, renatofilho@608: * but WITHOUT ANY WARRANTY; without even the implied warranty of renatofilho@608: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU renatofilho@608: * Library General Public License for more details. renatofilho@608: * renatofilho@608: * You should have received a copy of the GNU Library General Public renatofilho@608: * License along with this library; if not, write to the renatofilho@608: * Free Software Foundation, Inc., 59 Temple Place - Suite 330, renatofilho@608: * Boston, MA 02111-1307, USA. renatofilho@608: */ renatofilho@608: renatofilho@608: #ifndef __GST_NUV_DEMUX_H__ renatofilho@608: #define __GST_NUV_DEMUX_H__ renatofilho@608: renatofilho@608: #include renatofilho@608: renatofilho@608: #include renatofilho@608: renatofilho@608: G_BEGIN_DECLS renatofilho@608: renatofilho@608: #define GST_TYPE_NUV_DEMUX \ renatofilho@608: (gst_nuv_demux_get_type ()) renatofilho@608: #define GST_NUV_DEMUX(obj) \ renatofilho@608: (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_NUV_DEMUX, GstNuvDemux)) renatofilho@608: #define GST_NUV_DEMUX_CLASS(klass) \ renatofilho@608: (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_NUV_DEMUX, GstNuvDemuxClass)) renatofilho@608: #define GST_IS_NUV_DEMUX(obj) \ renatofilho@608: (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_NUV_DEMUX)) renatofilho@608: #define GST_IS_NUV_DEMUX_CLASS(klass) \ renatofilho@608: (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_NUV_DEMUX)) renatofilho@608: renatofilho@608: typedef struct _GstNuvDemuxPrivate GstNuvDemuxPrivate; renatofilho@608: typedef struct _GstNuvDemux { renatofilho@608: GstElement parent; renatofilho@608: GstNuvDemuxPrivate *priv; renatofilho@608: } GstNuvDemux; renatofilho@608: renatofilho@608: typedef struct _GstNuvDemuxClass { renatofilho@608: GstElementClass parent_class; renatofilho@608: } GstNuvDemuxClass; renatofilho@608: renatofilho@608: GType gst_nuv_demux_get_type (void); renatofilho@608: renatofilho@608: G_END_DECLS renatofilho@608: renatofilho@608: #endif /* __GST_NUV_DEMUX_H__ */