Added gst-plugins-base-subtitles0.10-0.10.34 for Meego Harmattan 1.2
[mafwsubrenderer] / gst-plugins-base-subtitles0.10 / gst / audioresample / gstaudioresample.h
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  * Copyright (C) <2007-2008> Sebastian Dröge <sebastian.droege@collabora.co.uk>
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 __AUDIO_RESAMPLE_H__
23 #define __AUDIO_RESAMPLE_H__
24
25 #include <gst/gst.h>
26 #include <gst/base/gstbasetransform.h>
27 #include <gst/audio/audio.h>
28
29 #include "speex_resampler_wrapper.h"
30
31 G_BEGIN_DECLS
32
33 #define GST_TYPE_AUDIO_RESAMPLE \
34   (gst_audio_resample_get_type())
35 #define GST_AUDIO_RESAMPLE(obj) \
36   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_AUDIO_RESAMPLE,GstAudioResample))
37 #define GST_AUDIO_RESAMPLE_CLASS(klass) \
38   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_AUDIO_RESAMPLE,GstAudioResampleClass))
39 #define GST_IS_AUDIO_RESAMPLE(obj) \
40   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_AUDIO_RESAMPLE))
41 #define GST_IS_AUDIO_RESAMPLE_CLASS(klass) \
42   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_AUDIO_RESAMPLE))
43
44 typedef struct _GstAudioResample GstAudioResample;
45 typedef struct _GstAudioResampleClass GstAudioResampleClass;
46
47 /**
48  * GstAudioResample:
49  *
50  * Opaque data structure.
51  */
52 struct _GstAudioResample {
53   GstBaseTransform element;
54
55   /* <private> */
56
57   GstCaps *srccaps, *sinkcaps;
58
59   gboolean need_discont;
60
61   GstClockTime t0;
62   guint64 in_offset0;
63   guint64 out_offset0;
64   guint64 samples_in;
65   guint64 samples_out;
66   
67   guint64 num_gap_samples;
68   guint64 num_nongap_samples;
69
70   gint channels;
71   gint inrate;
72   gint outrate;
73   gint quality;
74   gint width;
75   gboolean fp;
76
77   guint8 *tmp_in;
78   guint tmp_in_size;
79
80   guint8 *tmp_out;
81   guint tmp_out_size;
82
83   SpeexResamplerState *state;
84   const SpeexResampleFuncs *funcs;
85 };
86
87 struct _GstAudioResampleClass {
88   GstBaseTransformClass parent_class;
89 };
90
91 GType gst_audio_resample_get_type(void);
92
93 G_END_DECLS
94
95 #endif /* __AUDIO_RESAMPLE_H__ */