gst-indent
[platform/upstream/gst-plugins-good.git] / gst / monoscope / gstmonoscope.c
1 /* gstmonoscope.c: implementation of monoscope drawing element
2  * Copyright (C) <2002> Richard Boulton <richard@tartarus.org>
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 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif
23
24 #include <gst/gst.h>
25 #include <gst/video/video.h>
26 #include <gst/audio/audio.h>
27 #include "monoscope.h"
28
29 #define GST_TYPE_MONOSCOPE (gst_monoscope_get_type())
30 #define GST_MONOSCOPE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_MONOSCOPE,GstMonoscope))
31 #define GST_MONOSCOPE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_MONOSCOPE,GstMonoscope))
32 #define GST_IS_MONOSCOPE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_MONOSCOPE))
33 #define GST_IS_MONOSCOPE_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_MONOSCOPE))
34
35 typedef struct _GstMonoscope GstMonoscope;
36 typedef struct _GstMonoscopeClass GstMonoscopeClass;
37
38 struct _GstMonoscope
39 {
40   GstElement element;
41
42   /* pads */
43   GstPad *sinkpad, *srcpad;
44
45   /* the timestamp of the next frame */
46   guint64 next_time;
47   gint16 datain[512];
48
49   /* video state */
50   gdouble fps;
51   gint width;
52   gint height;
53   gboolean first_buffer;
54
55   /* visualisation state */
56   struct monoscope_state *visstate;
57 };
58
59 struct _GstMonoscopeClass
60 {
61   GstElementClass parent_class;
62 };
63
64 GType gst_monoscope_get_type (void);
65
66
67 /* elementfactory information */
68 static GstElementDetails gst_monoscope_details = {
69   "Monoscope",
70   "Visualization",
71   "Displays a highly stabilised waveform of audio input",
72   "Richard Boulton <richard@tartarus.org>"
73 };
74
75 /* signals and args */
76 enum
77 {
78   /* FILL ME */
79   LAST_SIGNAL
80 };
81
82 enum
83 {
84   ARG_0,
85   /* FILL ME */
86 };
87
88 static GstStaticPadTemplate src_template = GST_STATIC_PAD_TEMPLATE ("src",
89     GST_PAD_SRC,
90     GST_PAD_ALWAYS,
91     GST_STATIC_CAPS (GST_VIDEO_CAPS_xRGB_HOST_ENDIAN)
92     );
93
94 static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink",
95     GST_PAD_SINK,
96     GST_PAD_ALWAYS,
97     GST_STATIC_CAPS (GST_AUDIO_INT_STANDARD_PAD_TEMPLATE_CAPS)
98     );
99
100
101 static void gst_monoscope_class_init (GstMonoscopeClass * klass);
102 static void gst_monoscope_base_init (GstMonoscopeClass * klass);
103 static void gst_monoscope_init (GstMonoscope * monoscope);
104
105 static void gst_monoscope_chain (GstPad * pad, GstData * _data);
106
107 static GstPadLinkReturn
108 gst_monoscope_srcconnect (GstPad * pad, const GstCaps * caps);
109
110 static GstElementClass *parent_class = NULL;
111
112 GType
113 gst_monoscope_get_type (void)
114 {
115   static GType type = 0;
116
117   if (!type) {
118     static const GTypeInfo info = {
119       sizeof (GstMonoscopeClass),
120       (GBaseInitFunc) gst_monoscope_base_init,
121       NULL,
122       (GClassInitFunc) gst_monoscope_class_init,
123       NULL,
124       NULL,
125       sizeof (GstMonoscope),
126       0,
127       (GInstanceInitFunc) gst_monoscope_init,
128     };
129     type = g_type_register_static (GST_TYPE_ELEMENT, "GstMonoscope", &info, 0);
130   }
131   return type;
132 }
133
134 static void
135 gst_monoscope_base_init (GstMonoscopeClass * klass)
136 {
137   GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
138
139   gst_element_class_add_pad_template (element_class,
140       gst_static_pad_template_get (&src_template));
141   gst_element_class_add_pad_template (element_class,
142       gst_static_pad_template_get (&sink_template));
143   gst_element_class_set_details (element_class, &gst_monoscope_details);
144 }
145
146 static void
147 gst_monoscope_class_init (GstMonoscopeClass * klass)
148 {
149   GObjectClass *gobject_class;
150   GstElementClass *gstelement_class;
151
152   gobject_class = (GObjectClass *) klass;
153   gstelement_class = (GstElementClass *) klass;
154
155   parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
156 }
157
158 static void
159 gst_monoscope_init (GstMonoscope * monoscope)
160 {
161   /* create the sink and src pads */
162   monoscope->sinkpad =
163       gst_pad_new_from_template (gst_static_pad_template_get (&sink_template),
164       "sink");
165   monoscope->srcpad =
166       gst_pad_new_from_template (gst_static_pad_template_get (&src_template),
167       "src");
168   gst_element_add_pad (GST_ELEMENT (monoscope), monoscope->sinkpad);
169   gst_element_add_pad (GST_ELEMENT (monoscope), monoscope->srcpad);
170
171   gst_pad_set_chain_function (monoscope->sinkpad, gst_monoscope_chain);
172   gst_pad_set_link_function (monoscope->srcpad, gst_monoscope_srcconnect);
173
174   monoscope->next_time = 0;
175
176   /* reset the initial video state */
177   monoscope->first_buffer = TRUE;
178   monoscope->width = 256;
179   monoscope->height = 128;
180   monoscope->fps = 25.;         /* desired frame rate */
181 }
182
183 static GstPadLinkReturn
184 gst_monoscope_srcconnect (GstPad * pad, const GstCaps * caps)
185 {
186   GstMonoscope *monoscope = GST_MONOSCOPE (gst_pad_get_parent (pad));
187   GstStructure *structure;
188
189   structure = gst_caps_get_structure (caps, 0);
190
191   gst_structure_get_int (structure, "width", &monoscope->width);
192   gst_structure_get_int (structure, "height", &monoscope->height);
193   gst_structure_get_double (structure, "framerate", &monoscope->fps);
194
195   return GST_PAD_LINK_OK;
196 }
197
198 static void
199 gst_monoscope_chain (GstPad * pad, GstData * _data)
200 {
201   GstBuffer *bufin = GST_BUFFER (_data);
202   GstMonoscope *monoscope;
203   GstBuffer *bufout;
204   guint32 samples_in;
205   gint16 *data;
206   gint i;
207
208   monoscope = GST_MONOSCOPE (gst_pad_get_parent (pad));
209
210   GST_DEBUG ("Monoscope: chainfunc called");
211
212   samples_in = GST_BUFFER_SIZE (bufin) / sizeof (gint16);
213
214   GST_DEBUG ("input buffer has %d samples", samples_in);
215
216   /* FIXME: should really select the first 1024 samples after the timestamp. */
217   if (GST_BUFFER_TIMESTAMP (bufin) < monoscope->next_time || samples_in < 1024) {
218     GST_DEBUG ("timestamp is %" G_GUINT64_FORMAT ": want >= %" G_GUINT64_FORMAT,
219         GST_BUFFER_TIMESTAMP (bufin), monoscope->next_time);
220     gst_buffer_unref (bufin);
221     return;
222   }
223
224   data = (gint16 *) GST_BUFFER_DATA (bufin);
225   /* FIXME: Select samples in a better way. */
226   for (i = 0; i < 512; i++) {
227     monoscope->datain[i] = *data++;
228   }
229
230   if (monoscope->first_buffer) {
231     monoscope->visstate = monoscope_init (monoscope->width, monoscope->height);
232     g_assert (monoscope->visstate != 0);
233     GST_DEBUG ("making new pad");
234     if (!gst_pad_is_negotiated (monoscope->srcpad)) {
235       if (gst_pad_renegotiate (monoscope->srcpad) <= 0) {
236         GST_ELEMENT_ERROR (monoscope, CORE, NEGOTIATION, (NULL), (NULL));
237         return;
238       }
239     }
240     monoscope->first_buffer = FALSE;
241   }
242
243   bufout = gst_buffer_new ();
244   GST_BUFFER_SIZE (bufout) = monoscope->width * monoscope->height * 4;
245   GST_BUFFER_DATA (bufout) =
246       (guchar *) monoscope_update (monoscope->visstate, monoscope->datain);
247   GST_BUFFER_TIMESTAMP (bufout) = monoscope->next_time;
248   GST_BUFFER_FLAG_SET (bufout, GST_BUFFER_DONTFREE);
249
250   monoscope->next_time += GST_SECOND / monoscope->fps;
251
252   gst_pad_push (monoscope->srcpad, GST_DATA (bufout));
253
254   gst_buffer_unref (bufin);
255
256   GST_DEBUG ("Monoscope: exiting chainfunc");
257
258 }
259
260 static gboolean
261 plugin_init (GstPlugin * plugin)
262 {
263   return gst_element_register (plugin, "monoscope",
264       GST_RANK_NONE, GST_TYPE_MONOSCOPE);
265 }
266
267 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
268     GST_VERSION_MINOR,
269     "monoscope",
270     "Monoscope visualization",
271     plugin_init, VERSION, "LGPL", GST_PACKAGE, GST_ORIGIN)