Add support for flac >= 1.1.3 which changed the API. Fixes bug #385887.
[platform/upstream/gstreamer.git] / ext / flac / gstflacenc.h
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20
21 #ifndef __GST_FLAC_ENC_H__
22 #define __GST_FLAC_ENC_H__
23
24 #include <gst/gst.h>
25
26 #include <FLAC/all.h>
27
28 #if !defined(FLAC_API_VERSION_CURRENT) || FLAC_API_VERSION_CURRENT < 8
29 #define LEGACY_FLAC
30 #else
31 #undef LEGACY_FLAC
32 #endif 
33
34 G_BEGIN_DECLS
35
36 #define GST_TYPE_FLAC_ENC (gst_flac_enc_get_type())
37 #define GST_FLAC_ENC(obj) G_TYPE_CHECK_INSTANCE_CAST(obj, GST_TYPE_FLAC_ENC, GstFlacEnc)
38 #define GST_FLAC_ENC_CLASS(klass) G_TYPE_CHECK_CLASS_CAST(klass, GST_TYPE_FLAC_ENC, GstFlacEncClass)
39 #define GST_IS_FLAC_ENC(obj) G_TYPE_CHECK_INSTANCE_TYPE(obj, GST_TYPE_FLAC_ENC)
40 #define GST_IS_FLAC_ENC_CLASS(klass) G_TYPE_CHECK_CLASS_TYPE(klass, GST_TYPE_FLAC_ENC)
41
42 typedef struct _GstFlacEnc GstFlacEnc;
43 typedef struct _GstFlacEncClass GstFlacEncClass;
44
45 struct _GstFlacEnc {
46   GstElement     element;
47
48   GstPad        *sinkpad;
49   GstPad        *srcpad;
50
51   gboolean       first;
52   GstBuffer     *first_buf;
53   guint64        offset;
54   guint64        samples_written;
55   gboolean       eos;
56   gint           channels;
57   gint           depth;
58   gint           sample_rate;
59   gboolean       negotiated;
60   gint           quality;
61   gboolean       stopped;
62   FLAC__int32   *data;
63
64 #if !defined(FLAC_API_VERSION_CURRENT) || FLAC_API_VERSION_CURRENT < 8
65   FLAC__SeekableStreamEncoder *encoder;
66 #else
67   FLAC__StreamEncoder *encoder;
68 #endif
69   FLAC__StreamMetadata **meta;
70
71   GstTagList *     tags;
72
73   /* queue headers until we have them all so we can add streamheaders to caps */
74   gboolean         got_headers;
75   GList           *headers;
76 };
77
78 struct _GstFlacEncClass {
79   GstElementClass parent_class;
80 };
81
82 GType gst_flac_enc_get_type(void);
83
84 G_END_DECLS
85
86 #endif /* __GST_FLAC_ENC_H__ */