ext/flac/: Port flactag to 0.10, add documentation for it and clean it up a bit.
[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   /* < private > */
49
50   GstPad        *sinkpad;
51   GstPad        *srcpad;
52
53   GstFlowReturn  last_flow; /* save flow from last push so we can pass the
54                              * correct flow return upstream in case the push
55                              * fails for some reason */
56
57   gboolean       first;
58   GstBuffer     *first_buf;
59   guint64        offset;
60   guint64        samples_written;
61   gboolean       eos;
62   gint           channels;
63   gint           width;
64   gint           depth;
65   gint           sample_rate;
66   gboolean       negotiated;
67   gint           quality;
68   gboolean       stopped;
69   FLAC__int32   *data;
70
71 #if !defined(FLAC_API_VERSION_CURRENT) || FLAC_API_VERSION_CURRENT < 8
72   FLAC__SeekableStreamEncoder *encoder;
73 #else
74   FLAC__StreamEncoder *encoder;
75 #endif
76   FLAC__StreamMetadata **meta;
77
78   GstTagList *     tags;
79
80   /* queue headers until we have them all so we can add streamheaders to caps */
81   gboolean         got_headers;
82   GList           *headers;
83 };
84
85 struct _GstFlacEncClass {
86   GstElementClass parent_class;
87 };
88
89 GType gst_flac_enc_get_type(void);
90
91 G_END_DECLS
92
93 #endif /* __GST_FLAC_ENC_H__ */