ext/wavpack/gstwavpackenc.*: Handle non-zero start timestamps and stream discontinuit...
[platform/upstream/gst-plugins-good.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 #include "md5.h"
29
30 G_BEGIN_DECLS
31 #define GST_TYPE_WAVPACK_ENC \
32   (gst_wavpack_enc_get_type())
33 #define GST_WAVPACK_ENC(obj) \
34   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_WAVPACK_ENC,GstWavpackEnc))
35 #define GST_WAVPACK_ENC_CLASS(klass) \
36   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_WAVPACK_ENC,GstWavpackEnc))
37 #define GST_IS_WAVPACK_ENC(obj) \
38   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_WAVPACK_ENC))
39 #define GST_IS_WAVPACK_ENC_CLASS(klass) \
40   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_WAVPACK_ENC))
41 typedef struct _GstWavpackEnc GstWavpackEnc;
42 typedef struct _GstWavpackEncClass GstWavpackEncClass;
43
44 typedef struct
45 {
46   gboolean correction;
47   GstWavpackEnc *wavpack_enc;
48   gboolean passthrough;
49 } GstWavpackEncWriteID;
50
51
52 struct _GstWavpackEnc
53 {
54   GstElement element;
55
56   /*< private > */
57   GstPad *sinkpad, *srcpad;
58   GstPad *wvcsrcpad;
59
60   GstFlowReturn srcpad_last_return;
61   GstFlowReturn wvcsrcpad_last_return;
62
63   WavpackConfig *wp_config;
64   WavpackContext *wp_context;
65
66   gint samplerate;
67   gint channels;
68   gint channel_mask;
69   gint8 channel_mapping[8];
70   gboolean need_channel_remap;
71   gint depth;
72
73   GstWavpackEncWriteID wv_id;
74   GstWavpackEncWriteID wvc_id;
75
76   guint mode;
77   guint bitrate;
78   gdouble bps;
79   guint correction_mode;
80   gboolean md5;
81   MD5_CTX *md5_context;
82   guint extra_processing;
83   guint joint_stereo_mode;
84
85   void *first_block;
86   int32_t first_block_size;
87
88   GstBuffer *pending_buffer;
89   gint32 pending_offset;
90
91   GstClockTime timestamp_offset;
92   GstClockTime next_ts;
93 };
94
95 struct _GstWavpackEncClass
96 {
97   GstElementClass parent;
98 };
99
100 GType gst_wavpack_enc_get_type (void);
101
102 gboolean gst_wavpack_enc_plugin_init (GstPlugin * plugin);
103
104 G_END_DECLS
105 #endif /* __GST_WAVPACK_ENC_H__ */