Tizen 2.0 Release
[framework/multimedia/gst-plugins-good0.10.git] / ext / wavpack / gstwavpackenc.h
1 /* GStreamer Wavpack encoder plugin
2  * Copyright (c) 2006 Sebastian Dröge <slomo@circular-chaos.org>
3  *
4  * gstwavpackenc.h: Wavpack audio encoder
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21
22 #ifndef __GST_WAVPACK_ENC_H__
23 #define __GST_WAVPACK_ENC_H__
24
25 #include <gst/gst.h>
26
27 #include <wavpack/wavpack.h>
28
29 G_BEGIN_DECLS
30 #define GST_TYPE_WAVPACK_ENC \
31   (gst_wavpack_enc_get_type())
32 #define GST_WAVPACK_ENC(obj) \
33   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_WAVPACK_ENC,GstWavpackEnc))
34 #define GST_WAVPACK_ENC_CLASS(klass) \
35   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_WAVPACK_ENC,GstWavpackEnc))
36 #define GST_IS_WAVPACK_ENC(obj) \
37   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_WAVPACK_ENC))
38 #define GST_IS_WAVPACK_ENC_CLASS(klass) \
39   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_WAVPACK_ENC))
40 typedef struct _GstWavpackEnc GstWavpackEnc;
41 typedef struct _GstWavpackEncClass GstWavpackEncClass;
42
43 typedef struct
44 {
45   gboolean correction;
46   GstWavpackEnc *wavpack_enc;
47   gboolean passthrough;
48 } GstWavpackEncWriteID;
49
50
51 struct _GstWavpackEnc
52 {
53   GstElement element;
54
55   /*< private > */
56   GstPad *sinkpad, *srcpad;
57   GstPad *wvcsrcpad;
58
59   GstFlowReturn srcpad_last_return;
60   GstFlowReturn wvcsrcpad_last_return;
61
62   WavpackConfig *wp_config;
63   WavpackContext *wp_context;
64
65   gint samplerate;
66   gint channels;
67   gint channel_mask;
68   gint8 channel_mapping[8];
69   gboolean need_channel_remap;
70   gint depth;
71
72   GstWavpackEncWriteID wv_id;
73   GstWavpackEncWriteID wvc_id;
74
75   guint mode;
76   guint bitrate;
77   gdouble bps;
78   guint correction_mode;
79   gboolean md5;
80   GChecksum *md5_context;
81   guint extra_processing;
82   guint joint_stereo_mode;
83
84   void *first_block;
85   int32_t first_block_size;
86
87   GstBuffer *pending_buffer;
88   gint32 pending_offset;
89
90   GstClockTime timestamp_offset;
91   GstClockTime next_ts;
92 };
93
94 struct _GstWavpackEncClass
95 {
96   GstElementClass parent;
97 };
98
99 GType gst_wavpack_enc_get_type (void);
100
101 gboolean gst_wavpack_enc_plugin_init (GstPlugin * plugin);
102
103 G_END_DECLS
104 #endif /* __GST_WAVPACK_ENC_H__ */