b16e7f3748ff1127846cab66bfbaa2fe53b532b0
[platform/upstream/gstreamer.git] / ext / speex / gstspeexenc.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_SPEEXENC_H__
22 #define __GST_SPEEXENC_H__
23
24
25 #include <gst/gst.h>
26 #include <gst/base/gstadapter.h>
27
28 #include <speex/speex.h>
29 #include <speex/speex_header.h>
30
31 #ifdef __cplusplus
32 extern "C" {
33 #endif /* __cplusplus */
34
35
36 #define GST_TYPE_SPEEXENC \
37   (gst_speexenc_get_type())
38 #define GST_SPEEXENC(obj) \
39   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_SPEEXENC,GstSpeexEnc))
40 #define GST_SPEEXENC_CLASS(klass) \
41   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_SPEEXENC,GstSpeexEnc))
42 #define GST_IS_SPEEXENC(obj) \
43   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_SPEEXENC))
44 #define GST_IS_SPEEXENC_CLASS(obj) \
45   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_SPEEXENC))
46
47 #define MAX_FRAME_SIZE 2000*2
48 #define MAX_FRAME_BYTES 2000
49
50 typedef enum
51 {
52   GST_SPEEXENC_MODE_AUTO,
53   GST_SPEEXENC_MODE_UWB,
54   GST_SPEEXENC_MODE_WB,
55   GST_SPEEXENC_MODE_NB,
56 } GstSpeexMode;
57
58 typedef struct _GstSpeexEnc GstSpeexEnc;
59 typedef struct _GstSpeexEncClass GstSpeexEncClass;
60
61 struct _GstSpeexEnc {
62   GstElement            element;
63
64   /* pads */
65   GstPad                *sinkpad,
66                         *srcpad;
67
68   gint                  packet_count;
69   gint                  n_packets;
70
71   SpeexBits             bits;
72   SpeexHeader           header;
73 #if SPEEX_1_0
74   SpeexMode             *speex_mode;
75 #else
76   const SpeexMode       *speex_mode;
77 #endif
78   void                  *state;
79   GstSpeexMode          mode;
80   GstAdapter            *adapter;
81
82   gfloat                quality;
83   gint                  bitrate;
84   gboolean              vbr;
85   gint                  abr;
86   gboolean              vad;
87   gboolean              dtx;
88   gint                  complexity;
89   gint                  nframes;
90
91   gint                  lookahead;
92
93   gint                  channels;
94   gint                  rate;
95
96   gboolean              setup;
97   gboolean              header_sent;
98   gboolean              eos;
99
100   guint64               samples_in;
101   guint64               bytes_out;
102
103   GstTagList            *tags;
104
105   gchar                 *last_message;
106
107   gint                  frame_size;
108   guint64               frameno;
109
110   guint8                *comments;
111   gint                  comment_len;
112
113   gfloat                input[MAX_FRAME_SIZE];
114 };
115
116 struct _GstSpeexEncClass {
117   GstElementClass parent_class;
118
119   /* signals */
120   void (*frame_encoded) (GstElement *element);
121 };
122
123 GType gst_speexenc_get_type(void);
124
125
126 #ifdef __cplusplus
127 }
128 #endif /* __cplusplus */
129
130
131 #endif /* __GST_SPEEXENC_H__ */