Added gst-plugins-base-subtitles0.10-0.10.34 for Meego Harmattan 1.2
[mafwsubrenderer] / gst-plugins-base-subtitles0.10 / ext / vorbis / gstvorbisdec.h
1 /* -*- c-basic-offset: 2 -*-
2  * GStreamer
3  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
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_DEC_H__
23 #define __GST_VORBIS_DEC_H__
24
25 #ifdef HAVE_CONFIG_H
26 #  include "config.h"
27 #endif
28
29 #include <gst/gst.h>
30 #include "gstvorbisdeclib.h"
31
32 G_BEGIN_DECLS
33
34 #define GST_TYPE_VORBIS_DEC \
35   (gst_vorbis_dec_get_type())
36 #define GST_VORBIS_DEC(obj) \
37   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_VORBIS_DEC,GstVorbisDec))
38 #define GST_VORBIS_DEC_CLASS(klass) \
39   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_VORBIS_DEC,GstVorbisDecClass))
40 #define GST_IS_VORBIS_DEC(obj) \
41   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_VORBIS_DEC))
42 #define GST_IS_VORBIS_DEC_CLASS(klass) \
43   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_VORBIS_DEC))
44
45 typedef struct _GstVorbisDec GstVorbisDec;
46 typedef struct _GstVorbisDecClass GstVorbisDecClass;
47
48 /**
49  * GstVorbisDec:
50  *
51  * Opaque data structure.
52  */
53 struct _GstVorbisDec {
54   GstElement        element;
55
56   GstPad           *sinkpad;
57   GstPad           *srcpad;
58
59   vorbis_dsp_state  vd;
60   vorbis_info       vi;
61   vorbis_comment    vc;
62
63 #ifndef USE_TREMOLO
64   vorbis_block      vb;
65 #endif
66
67   gboolean          initialized;
68   guint             width;
69
70   /* list of buffers that need timestamps */
71   GList            *queued;
72   /* gather/decode queues for reverse playback */
73   GList            *gather;
74   GList            *decode;
75
76   GstSegment        segment;
77   gboolean          discont;
78   guint32           seqnum;
79
80   GstClockTime      last_timestamp;
81
82   GList            *pendingevents;
83   GstTagList       *taglist;
84   
85   CopySampleFunc    copy_samples;
86 };
87
88 struct _GstVorbisDecClass {
89   GstElementClass parent_class;
90 };
91
92 GType gst_vorbis_dec_get_type(void);
93
94 G_END_DECLS
95
96 #endif /* __GST_VORBIS_DEC_H__ */