upload tizen1.0 source
[framework/multimedia/gst-plugins-good0.10.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 G_BEGIN_DECLS
29
30 #define GST_TYPE_FLAC_ENC (gst_flac_enc_get_type())
31 #define GST_FLAC_ENC(obj) G_TYPE_CHECK_INSTANCE_CAST(obj, GST_TYPE_FLAC_ENC, GstFlacEnc)
32 #define GST_FLAC_ENC_CLASS(klass) G_TYPE_CHECK_CLASS_CAST(klass, GST_TYPE_FLAC_ENC, GstFlacEncClass)
33 #define GST_IS_FLAC_ENC(obj) G_TYPE_CHECK_INSTANCE_TYPE(obj, GST_TYPE_FLAC_ENC)
34 #define GST_IS_FLAC_ENC_CLASS(klass) G_TYPE_CHECK_CLASS_TYPE(klass, GST_TYPE_FLAC_ENC)
35
36 typedef struct _GstFlacEnc GstFlacEnc;
37 typedef struct _GstFlacEncClass GstFlacEncClass;
38
39 struct _GstFlacEnc {
40   GstElement     element;
41
42   /* < private > */
43
44   GstPad        *sinkpad;
45   GstPad        *srcpad;
46
47   GstFlowReturn  last_flow; /* save flow from last push so we can pass the
48                              * correct flow return upstream in case the push
49                              * fails for some reason */
50
51   guint64        offset;
52   guint64        samples_written;
53   gint           channels;
54   gint           width;
55   gint           depth;
56   gint           sample_rate;
57   gint           quality;
58   gboolean       stopped;
59   guint           padding;
60   gint            seekpoints;
61
62 #if !defined(FLAC_API_VERSION_CURRENT) || FLAC_API_VERSION_CURRENT < 8
63   FLAC__SeekableStreamEncoder *encoder;
64 #else
65   FLAC__StreamEncoder *encoder;
66 #endif
67   FLAC__StreamMetadata **meta;
68
69   GstTagList *     tags;
70
71   /* queue headers until we have them all so we can add streamheaders to caps */
72   gboolean         got_headers;
73   GList           *headers;
74
75   /* Timestamp and granulepos tracking */
76   GstClockTime     start_ts;
77   GstClockTime     next_ts;
78   guint64          granulepos_offset;
79 };
80
81 struct _GstFlacEncClass {
82   GstElementClass parent_class;
83 };
84
85 GType gst_flac_enc_get_type(void);
86
87 G_END_DECLS
88
89 #endif /* __GST_FLAC_ENC_H__ */