Initialize Tizen 2.3
[framework/multimedia/gst-plugins-base0.10.git] / ext / vorbis / gstvorbisenc.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_VORBIS_ENC_H__
22 #define __GST_VORBIS_ENC_H__
23
24
25 #include <gst/gst.h>
26 #include <gst/audio/gstaudioencoder.h>
27
28 #include <vorbis/codec.h>
29
30 G_BEGIN_DECLS
31
32 #define GST_TYPE_VORBISENC \
33   (gst_vorbis_enc_get_type())
34 #define GST_VORBISENC(obj) \
35   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_VORBISENC,GstVorbisEnc))
36 #define GST_VORBISENC_CLASS(klass) \
37   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_VORBISENC,GstVorbisEncClass))
38 #define GST_IS_VORBISENC(obj) \
39   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_VORBISENC))
40 #define GST_IS_VORBISENC_CLASS(klass) \
41   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_VORBISENC))
42
43 typedef struct _GstVorbisEnc GstVorbisEnc;
44 typedef struct _GstVorbisEncClass GstVorbisEncClass;
45
46 /**
47  * GstVorbisEnc:
48  *
49  * Opaque data structure.
50  */
51 struct _GstVorbisEnc {
52   GstAudioEncoder element;
53
54   GstCaps         *sinkcaps;
55
56   /* codec */
57   vorbis_info      vi; /* struct that stores all the static vorbis bitstream
58                                                             settings */
59   vorbis_comment   vc; /* struct that stores all the user comments */
60
61   vorbis_dsp_state vd; /* central working state for the packet->PCM decoder */
62   vorbis_block     vb; /* local working space for packet->PCM decode */
63
64   /* properties */
65   gboolean         managed;
66   gint             bitrate;
67   gint             min_bitrate;
68   gint             max_bitrate;
69   gfloat           quality;
70   gboolean         quality_set;
71
72   gint             channels;
73   gint             frequency;
74
75   guint64          samples_in;
76   guint64          samples_out;
77   guint64          bytes_out;
78
79   GstTagList *     tags;
80
81   gboolean         setup;
82   gboolean         header_sent;
83   gchar           *last_message;
84   GSList          *headers;
85 };
86
87 struct _GstVorbisEncClass {
88   GstAudioEncoderClass parent_class;
89 };
90
91 GType gst_vorbis_enc_get_type(void);
92
93 G_END_DECLS
94
95 #endif /* __GST_VORBIS_ENC_H__ */