gst-gmyth/nuvdemux/gstnuvdemux.h
author renatofilho
Thu Jun 14 18:21:53 2007 +0100 (2007-06-14)
branchtrunk
changeset 752 b7f71ba285da
parent 608 43ce4ea2f9fb
child 754 cb885ee44618
permissions -rw-r--r--
[svn r758] fixed indent using GNU Style
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
#define GST_TYPE_NUV_DEMUX \
renatofilho@608
    30
  (gst_nuv_demux_get_type ())
renatofilho@608
    31
#define GST_NUV_DEMUX(obj) \
renatofilho@608
    32
  (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_NUV_DEMUX, GstNuvDemux))
renatofilho@608
    33
#define GST_NUV_DEMUX_CLASS(klass) \
renatofilho@608
    34
  (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_NUV_DEMUX, GstNuvDemuxClass))
renatofilho@608
    35
#define GST_IS_NUV_DEMUX(obj) \
renatofilho@608
    36
  (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_NUV_DEMUX))
renatofilho@608
    37
#define GST_IS_NUV_DEMUX_CLASS(klass) \
renatofilho@608
    38
  (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_NUV_DEMUX))
renatofilho@608
    39
typedef struct _GstNuvDemuxPrivate GstNuvDemuxPrivate;
renatofilho@751
    40
typedef struct _GstNuvDemux
renatofilho@751
    41
{
renatofilho@751
    42
  GstElement parent;
renatofilho@608
    43
  GstNuvDemuxPrivate *priv;
renatofilho@608
    44
} GstNuvDemux;
renatofilho@608
    45
renatofilho@751
    46
typedef struct _GstNuvDemuxClass
renatofilho@751
    47
{
renatofilho@608
    48
  GstElementClass parent_class;
renatofilho@608
    49
} GstNuvDemuxClass;
renatofilho@608
    50
renatofilho@751
    51
GType gst_nuv_demux_get_type(void);
renatofilho@608
    52
renatofilho@608
    53
G_END_DECLS
renatofilho@608
    54
#endif /* __GST_NUV_DEMUX_H__ */