gst-indent
[platform/upstream/gst-plugins-good.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
27 #include <speex.h>
28 #include <speex_header.h>
29
30 #ifdef __cplusplus
31 extern "C"
32 {
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   typedef struct _GstSpeexEnc GstSpeexEnc;
48   typedef struct _GstSpeexEncClass GstSpeexEncClass;
49
50   struct _GstSpeexEnc
51   {
52     GstElement element;
53
54     /* pads */
55     GstPad *sinkpad, *srcpad;
56
57     gint packet_count;
58     gint n_packets;
59
60     SpeexBits bits;
61     SpeexHeader header;
62     SpeexMode *mode;
63     void *state;
64     gint frame_size;
65     gint16 buffer[2000];
66     gint bufsize;
67     guint64 next_ts;
68
69     gint rate;
70   };
71
72   struct _GstSpeexEncClass
73   {
74     GstElementClass parent_class;
75
76     /* signals */
77     void (*frame_encoded) (GstElement * element);
78   };
79
80   GType gst_speexenc_get_type (void);
81
82
83 #ifdef __cplusplus
84 }
85 #endif                          /* __cplusplus */
86
87
88 #endif                          /* __GST_SPEEXENC_H__ */