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