renatofilho@608
|
1 |
/* GStreamer
|
renatofilho@608
|
2 |
* Copyright (C) <2006> Renato Araujo Oliveira Filho <renato.filho@indt.org.br>
|
renatofilho@608
|
3 |
* Rosfran Borges <rosfran.borges@indt.org.br>
|
renatofilho@608
|
4 |
*
|
renatofilho@608
|
5 |
* This library is free software; you can redistribute it and/or
|
renatofilho@608
|
6 |
* modify it under the terms of the GNU Library General Public
|
renatofilho@608
|
7 |
* License as published by the Free Software Foundation; either
|
renatofilho@608
|
8 |
* version 2 of the License, or (at your option) any later version.
|
renatofilho@608
|
9 |
*
|
renatofilho@608
|
10 |
* This library is distributed in the hope that it will be useful,
|
renatofilho@608
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
renatofilho@608
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
renatofilho@608
|
13 |
* Library General Public License for more details.
|
renatofilho@608
|
14 |
*
|
renatofilho@608
|
15 |
* You should have received a copy of the GNU Library General Public
|
renatofilho@608
|
16 |
* License along with this library; if not, write to the
|
renatofilho@608
|
17 |
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
renatofilho@608
|
18 |
* Boston, MA 02111-1307, USA.
|
renatofilho@608
|
19 |
*/
|
renatofilho@608
|
20 |
|
renatofilho@608
|
21 |
#ifndef __GST_NUV_DEMUX_H__
|
renatofilho@608
|
22 |
#define __GST_NUV_DEMUX_H__
|
renatofilho@608
|
23 |
|
renatofilho@608
|
24 |
#include <gst/gst.h>
|
renatofilho@608
|
25 |
|
renatofilho@608
|
26 |
#include <gst/base/gstadapter.h>
|
renatofilho@608
|
27 |
|
renatofilho@608
|
28 |
G_BEGIN_DECLS
|
renatofilho@608
|
29 |
|
renatofilho@608
|
30 |
#define GST_TYPE_NUV_DEMUX \
|
renatofilho@608
|
31 |
(gst_nuv_demux_get_type ())
|
renatofilho@608
|
32 |
#define GST_NUV_DEMUX(obj) \
|
renatofilho@608
|
33 |
(G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_NUV_DEMUX, GstNuvDemux))
|
renatofilho@608
|
34 |
#define GST_NUV_DEMUX_CLASS(klass) \
|
renatofilho@608
|
35 |
(G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_NUV_DEMUX, GstNuvDemuxClass))
|
renatofilho@608
|
36 |
#define GST_IS_NUV_DEMUX(obj) \
|
renatofilho@608
|
37 |
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_NUV_DEMUX))
|
renatofilho@608
|
38 |
#define GST_IS_NUV_DEMUX_CLASS(klass) \
|
renatofilho@608
|
39 |
(G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_NUV_DEMUX))
|
renatofilho@608
|
40 |
|
renatofilho@608
|
41 |
typedef struct _GstNuvDemuxPrivate GstNuvDemuxPrivate;
|
renatofilho@608
|
42 |
typedef struct _GstNuvDemux {
|
renatofilho@608
|
43 |
GstElement parent;
|
renatofilho@608
|
44 |
GstNuvDemuxPrivate *priv;
|
renatofilho@608
|
45 |
} GstNuvDemux;
|
renatofilho@608
|
46 |
|
renatofilho@608
|
47 |
typedef struct _GstNuvDemuxClass {
|
renatofilho@608
|
48 |
GstElementClass parent_class;
|
renatofilho@608
|
49 |
} GstNuvDemuxClass;
|
renatofilho@608
|
50 |
|
renatofilho@608
|
51 |
GType gst_nuv_demux_get_type (void);
|
renatofilho@608
|
52 |
|
renatofilho@608
|
53 |
G_END_DECLS
|
renatofilho@608
|
54 |
|
renatofilho@608
|
55 |
#endif /* __GST_NUV_DEMUX_H__ */
|