gst_plugins_base/ext/vorbis/vorbistag.h
branchRCL_3
changeset 30 7e817e7e631c
parent 0 0e761a78d257
equal deleted inserted replaced
29:567bb019e3e3 30:7e817e7e631c
       
     1 /* -*- c-basic-offset: 2 -*-
       
     2  * GStreamer
       
     3  * Copyright (C) <2006> James Livingston <doclivingston@gmail.com>
       
     4  *
       
     5  * This library is free software; you can redistribute it and/or
       
     6  * modify it under the terms of the GNU Library General Public
       
     7  * License as published by the Free Software Foundation; either
       
     8  * version 2 of the License, or (at your option) any later version.
       
     9  *
       
    10  * This library is distributed in the hope that it will be useful,
       
    11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
       
    13  * Library General Public License for more details.
       
    14  *
       
    15  * You should have received a copy of the GNU Library General Public
       
    16  * License along with this library; if not, write to the
       
    17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
       
    18  * Boston, MA 02111-1307, USA.
       
    19  */
       
    20 
       
    21 
       
    22 #ifndef __GST_VORBIS_TAG_H__
       
    23 #define __GST_VORBIS_TAG_H__
       
    24 
       
    25 #include "vorbisparse.h"
       
    26 
       
    27 
       
    28 G_BEGIN_DECLS
       
    29 
       
    30 
       
    31 #define GST_TYPE_VORBIS_TAG \
       
    32   (gst_vorbis_tag_get_type())
       
    33 #define GST_VORBIS_TAG(obj) \
       
    34   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_VORBIS_TAG,GstVorbisTag))
       
    35 #define GST_VORBIS_TAG_CLASS(klass) \
       
    36   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_VORBIS_TAG,GstVorbisTagClass))
       
    37 #define GST_IS_VORBIS_TAG(obj) \
       
    38   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_VORBIS_TAG))
       
    39 #define GST_IS_VORBIS_TAG_CLASS(klass) \
       
    40   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_VORBIS_TAG))
       
    41 
       
    42 
       
    43 typedef struct _GstVorbisTag GstVorbisTag;
       
    44 typedef struct _GstVorbisTagClass GstVorbisTagClass;
       
    45 
       
    46 /**
       
    47  * GstVorbisTag:
       
    48  *
       
    49  * Opaque data structure.
       
    50  */
       
    51 struct _GstVorbisTag {
       
    52   GstVorbisParse parse;
       
    53 };
       
    54 
       
    55 struct _GstVorbisTagClass {
       
    56   GstVorbisParseClass parent_class;
       
    57 };
       
    58 
       
    59 GType gst_vorbis_tag_get_type(void);
       
    60 
       
    61 G_END_DECLS
       
    62 
       
    63 #endif /* __GST_VORBIS_TAG_H__ */