2011-05-27 08:14:19 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) <2011> Stefan Kost <ensonic@users.sf.net>
|
|
|
|
*
|
|
|
|
* gstwavescope.c: simple oscilloscope
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* SECTION:element-wavescope
|
|
|
|
* @see_also: goom
|
|
|
|
*
|
|
|
|
* Wavescope is a simple audio visualisation element. It renders the waveforms
|
|
|
|
* like on an oscilloscope.
|
|
|
|
*
|
|
|
|
* <refsect2>
|
|
|
|
* <title>Example launch line</title>
|
|
|
|
* |[
|
|
|
|
* gst-launch audiotestsrc ! audioconvert ! wavescope ! ximagesink
|
|
|
|
* ]|
|
|
|
|
* </refsect2>
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2011-11-23 07:14:38 +00:00
|
|
|
#include <stdlib.h>
|
2011-05-27 08:14:19 +00:00
|
|
|
#include "gstwavescope.h"
|
|
|
|
|
|
|
|
static GstStaticPadTemplate gst_wave_scope_src_template =
|
|
|
|
GST_STATIC_PAD_TEMPLATE ("src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
2011-11-09 19:09:01 +00:00
|
|
|
#if G_BYTE_ORDER == G_BIG_ENDIAN
|
|
|
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_MAKE ("xRGB"))
|
|
|
|
#else
|
|
|
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_MAKE ("BGRx"))
|
|
|
|
#endif
|
2011-05-27 08:14:19 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
static GstStaticPadTemplate gst_wave_scope_sink_template =
|
|
|
|
GST_STATIC_PAD_TEMPLATE ("sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
2011-11-09 19:09:01 +00:00
|
|
|
GST_STATIC_CAPS ("audio/x-raw, "
|
|
|
|
"format = (string) " GST_AUDIO_NE (S16) ", "
|
2012-01-04 15:13:14 +00:00
|
|
|
"layout = (string) interleaved, "
|
|
|
|
"rate = (int) [ 8000, 96000 ], "
|
|
|
|
"channels = (int) 2, " "channel-mask = (bitmask) 0x3")
|
2011-05-27 08:14:19 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_STATIC (wave_scope_debug);
|
|
|
|
#define GST_CAT_DEFAULT wave_scope_debug
|
|
|
|
|
2011-11-23 07:14:38 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
PROP_STYLE
|
|
|
|
};
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
STYLE_DOTS = 0,
|
|
|
|
STYLE_LINES,
|
2011-11-30 21:11:40 +00:00
|
|
|
STYLE_COLOR_DOTS,
|
|
|
|
STYLE_COLOR_LINES,
|
2011-11-23 07:14:38 +00:00
|
|
|
NUM_STYLES
|
|
|
|
};
|
|
|
|
|
|
|
|
#define GST_TYPE_WAVE_SCOPE_STYLE (gst_wave_scope_style_get_type ())
|
|
|
|
static GType
|
|
|
|
gst_wave_scope_style_get_type (void)
|
|
|
|
{
|
|
|
|
static GType gtype = 0;
|
|
|
|
|
|
|
|
if (gtype == 0) {
|
|
|
|
static const GEnumValue values[] = {
|
|
|
|
{STYLE_DOTS, "draw dots (default)", "dots"},
|
|
|
|
{STYLE_LINES, "draw lines", "lines"},
|
2011-11-30 21:11:40 +00:00
|
|
|
{STYLE_COLOR_DOTS, "draw color dots", "color-dots"},
|
|
|
|
{STYLE_COLOR_LINES, "draw color lines", "color-lines"},
|
2011-11-23 07:14:38 +00:00
|
|
|
{0, NULL, NULL}
|
|
|
|
};
|
2011-05-27 08:14:19 +00:00
|
|
|
|
2011-11-23 07:14:38 +00:00
|
|
|
gtype = g_enum_register_static ("GstWaveScopeStyle", values);
|
|
|
|
}
|
|
|
|
return gtype;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void gst_wave_scope_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_wave_scope_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec);
|
2011-11-30 21:11:40 +00:00
|
|
|
static void gst_wave_scope_finalize (GObject * object);
|
2011-11-23 07:14:38 +00:00
|
|
|
|
2012-07-16 20:02:44 +00:00
|
|
|
static void render_dots (GstAudioVisualizer * scope, guint32 * vdata,
|
2011-11-23 07:14:38 +00:00
|
|
|
gint16 * adata, guint num_samples);
|
2012-07-16 20:02:44 +00:00
|
|
|
static void render_lines (GstAudioVisualizer * scope, guint32 * vdata,
|
2011-11-23 07:14:38 +00:00
|
|
|
gint16 * adata, guint num_samples);
|
2012-07-16 20:02:44 +00:00
|
|
|
static void render_color_dots (GstAudioVisualizer * base, guint32 * vdata,
|
2011-11-30 21:11:40 +00:00
|
|
|
gint16 * adata, guint num_samples);
|
2012-07-16 20:02:44 +00:00
|
|
|
static void render_color_lines (GstAudioVisualizer * base, guint32 * vdata,
|
2011-11-30 21:11:40 +00:00
|
|
|
gint16 * adata, guint num_samples);
|
2011-11-23 07:14:38 +00:00
|
|
|
|
2012-07-16 20:02:44 +00:00
|
|
|
static gboolean gst_wave_scope_setup (GstAudioVisualizer * scope);
|
|
|
|
static gboolean gst_wave_scope_render (GstAudioVisualizer * base,
|
2012-08-17 20:57:10 +00:00
|
|
|
GstBuffer * audio, GstVideoFrame * video);
|
2011-05-27 08:14:19 +00:00
|
|
|
|
2011-12-30 10:41:17 +00:00
|
|
|
#define gst_wave_scope_parent_class parent_class
|
2012-07-16 20:02:44 +00:00
|
|
|
G_DEFINE_TYPE (GstWaveScope, gst_wave_scope, GST_TYPE_AUDIO_VISUALIZER);
|
2011-05-27 08:14:19 +00:00
|
|
|
|
|
|
|
static void
|
2011-11-09 19:09:01 +00:00
|
|
|
gst_wave_scope_class_init (GstWaveScopeClass * g_class)
|
2011-05-27 08:14:19 +00:00
|
|
|
{
|
2011-11-23 07:14:38 +00:00
|
|
|
GObjectClass *gobject_class = (GObjectClass *) g_class;
|
2011-11-23 10:08:39 +00:00
|
|
|
GstElementClass *gstelement_class = (GstElementClass *) g_class;
|
2012-07-16 20:02:44 +00:00
|
|
|
GstAudioVisualizerClass *scope_class = (GstAudioVisualizerClass *) g_class;
|
2011-05-27 08:14:19 +00:00
|
|
|
|
2011-11-23 07:14:38 +00:00
|
|
|
gobject_class->set_property = gst_wave_scope_set_property;
|
|
|
|
gobject_class->get_property = gst_wave_scope_get_property;
|
2011-11-30 21:11:40 +00:00
|
|
|
gobject_class->finalize = gst_wave_scope_finalize;
|
2011-11-23 07:14:38 +00:00
|
|
|
|
2011-11-30 21:11:40 +00:00
|
|
|
scope_class->setup = GST_DEBUG_FUNCPTR (gst_wave_scope_setup);
|
2011-05-27 08:14:19 +00:00
|
|
|
scope_class->render = GST_DEBUG_FUNCPTR (gst_wave_scope_render);
|
2011-11-23 07:14:38 +00:00
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, PROP_STYLE,
|
|
|
|
g_param_spec_enum ("style", "drawing style",
|
|
|
|
"Drawing styles for the wave form display.",
|
|
|
|
GST_TYPE_WAVE_SCOPE_STYLE, STYLE_DOTS,
|
|
|
|
G_PARAM_CONSTRUCT | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2011-05-27 08:14:19 +00:00
|
|
|
|
2011-11-23 10:08:39 +00:00
|
|
|
gst_element_class_set_details_simple (gstelement_class,
|
|
|
|
"Waveform oscilloscope", "Visualization", "Simple waveform oscilloscope",
|
|
|
|
"Stefan Kost <ensonic@users.sf.net>");
|
|
|
|
|
|
|
|
gst_element_class_add_pad_template (gstelement_class,
|
2011-05-27 08:14:19 +00:00
|
|
|
gst_static_pad_template_get (&gst_wave_scope_src_template));
|
2011-11-23 10:08:39 +00:00
|
|
|
gst_element_class_add_pad_template (gstelement_class,
|
2011-05-27 08:14:19 +00:00
|
|
|
gst_static_pad_template_get (&gst_wave_scope_sink_template));
|
|
|
|
|
|
|
|
scope_class->render = GST_DEBUG_FUNCPTR (gst_wave_scope_render);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-11-09 19:09:01 +00:00
|
|
|
gst_wave_scope_init (GstWaveScope * scope)
|
2011-05-27 08:14:19 +00:00
|
|
|
{
|
|
|
|
/* do nothing */
|
|
|
|
}
|
|
|
|
|
2011-11-30 21:11:40 +00:00
|
|
|
static void
|
|
|
|
gst_wave_scope_finalize (GObject * object)
|
|
|
|
{
|
|
|
|
GstWaveScope *scope = GST_WAVE_SCOPE (object);
|
|
|
|
|
|
|
|
if (scope->flt) {
|
|
|
|
g_free (scope->flt);
|
|
|
|
scope->flt = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2012-07-16 20:02:44 +00:00
|
|
|
gst_wave_scope_setup (GstAudioVisualizer * bscope)
|
2011-11-30 21:11:40 +00:00
|
|
|
{
|
|
|
|
GstWaveScope *scope = GST_WAVE_SCOPE (bscope);
|
|
|
|
|
|
|
|
if (scope->flt)
|
|
|
|
g_free (scope->flt);
|
|
|
|
|
2012-02-07 11:02:05 +00:00
|
|
|
scope->flt = g_new0 (gdouble, 6 * GST_AUDIO_INFO_CHANNELS (&bscope->ainfo));
|
2011-11-30 21:11:40 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2011-11-23 07:14:38 +00:00
|
|
|
static void
|
|
|
|
gst_wave_scope_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
2011-05-27 08:14:19 +00:00
|
|
|
{
|
2011-11-23 07:14:38 +00:00
|
|
|
GstWaveScope *scope = GST_WAVE_SCOPE (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_STYLE:
|
|
|
|
scope->style = g_value_get_enum (value);
|
|
|
|
switch (scope->style) {
|
|
|
|
case STYLE_DOTS:
|
|
|
|
scope->process = render_dots;
|
|
|
|
break;
|
|
|
|
case STYLE_LINES:
|
|
|
|
scope->process = render_lines;
|
|
|
|
break;
|
2011-11-30 21:11:40 +00:00
|
|
|
case STYLE_COLOR_DOTS:
|
|
|
|
scope->process = render_color_dots;
|
|
|
|
break;
|
|
|
|
case STYLE_COLOR_LINES:
|
|
|
|
scope->process = render_color_lines;
|
|
|
|
break;
|
2011-11-23 07:14:38 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_wave_scope_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstWaveScope *scope = GST_WAVE_SCOPE (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_STYLE:
|
|
|
|
g_value_set_enum (value, scope->style);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-23 07:40:49 +00:00
|
|
|
#include "gstdrawhelpers.h"
|
|
|
|
|
2011-11-23 07:14:38 +00:00
|
|
|
static void
|
2012-07-16 20:02:44 +00:00
|
|
|
render_dots (GstAudioVisualizer * base, guint32 * vdata, gint16 * adata,
|
2011-11-23 07:14:38 +00:00
|
|
|
guint num_samples)
|
|
|
|
{
|
2012-02-07 11:02:05 +00:00
|
|
|
gint channels = GST_AUDIO_INFO_CHANNELS (&base->ainfo);
|
2011-11-23 07:40:49 +00:00
|
|
|
guint i, c, s, x, y, oy;
|
2011-05-27 08:14:19 +00:00
|
|
|
gfloat dx, dy;
|
2012-08-17 20:57:10 +00:00
|
|
|
guint w = GST_VIDEO_INFO_WIDTH (&base->vinfo);
|
|
|
|
guint h = GST_VIDEO_INFO_HEIGHT (&base->vinfo);
|
2011-05-27 08:14:19 +00:00
|
|
|
|
|
|
|
/* draw dots */
|
2011-11-23 07:14:38 +00:00
|
|
|
dx = (gfloat) w / (gfloat) num_samples;
|
2011-11-30 21:11:40 +00:00
|
|
|
dy = h / 65536.0;
|
|
|
|
oy = h / 2;
|
2011-11-23 07:14:38 +00:00
|
|
|
for (c = 0; c < channels; c++) {
|
|
|
|
s = c;
|
|
|
|
for (i = 0; i < num_samples; i++) {
|
|
|
|
x = (guint) ((gfloat) i * dx);
|
|
|
|
y = (guint) (oy + (gfloat) adata[s] * dy);
|
|
|
|
s += channels;
|
2011-11-23 07:40:49 +00:00
|
|
|
draw_dot (vdata, x, y, w, 0x00FFFFFF);
|
2011-05-27 08:14:19 +00:00
|
|
|
}
|
|
|
|
}
|
2011-11-23 07:14:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-07-16 20:02:44 +00:00
|
|
|
render_lines (GstAudioVisualizer * base, guint32 * vdata, gint16 * adata,
|
2011-11-23 07:14:38 +00:00
|
|
|
guint num_samples)
|
|
|
|
{
|
2012-02-07 11:02:05 +00:00
|
|
|
gint channels = GST_AUDIO_INFO_CHANNELS (&base->ainfo);
|
2011-11-23 07:40:49 +00:00
|
|
|
guint i, c, s, x, y, oy;
|
2011-11-23 07:14:38 +00:00
|
|
|
gfloat dx, dy;
|
2012-08-17 20:57:10 +00:00
|
|
|
guint w = GST_VIDEO_INFO_WIDTH (&base->vinfo);
|
|
|
|
guint h = GST_VIDEO_INFO_HEIGHT (&base->vinfo);
|
2011-11-23 07:14:38 +00:00
|
|
|
gint x2, y2;
|
|
|
|
|
|
|
|
/* draw lines */
|
2011-11-24 18:03:23 +00:00
|
|
|
dx = (gfloat) (w - 1) / (gfloat) num_samples;
|
|
|
|
dy = (h - 1) / 65536.0;
|
|
|
|
oy = (h - 1) / 2;
|
2011-11-23 07:14:38 +00:00
|
|
|
for (c = 0; c < channels; c++) {
|
|
|
|
s = c;
|
|
|
|
x2 = 0;
|
|
|
|
y2 = (guint) (oy + (gfloat) adata[s] * dy);
|
|
|
|
for (i = 1; i < num_samples; i++) {
|
|
|
|
x = (guint) ((gfloat) i * dx);
|
|
|
|
y = (guint) (oy + (gfloat) adata[s] * dy);
|
|
|
|
s += channels;
|
2011-11-24 18:03:23 +00:00
|
|
|
draw_line_aa (vdata, x2, x, y2, y, w, 0x00FFFFFF);
|
2011-11-23 07:14:38 +00:00
|
|
|
x2 = x;
|
|
|
|
y2 = y;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-30 21:11:40 +00:00
|
|
|
#define CUTOFF_1 0.15
|
|
|
|
#define CUTOFF_2 0.45
|
|
|
|
#define RESONANCE (1.0/0.5)
|
|
|
|
|
|
|
|
#define filter(in) G_STMT_START { \
|
|
|
|
flt[2] = in - (flt[1] * RESONANCE) - flt[0]; \
|
|
|
|
flt[1] += (flt[2] * CUTOFF_1); \
|
|
|
|
flt[0] += (flt[1] * CUTOFF_1); \
|
|
|
|
\
|
|
|
|
flt[5] = (flt[1] + flt[2]) - (flt[4] * RESONANCE) - flt[3]; \
|
|
|
|
flt[4] += (flt[5] * CUTOFF_2); \
|
|
|
|
flt[3] += (flt[4] * CUTOFF_2); \
|
|
|
|
} G_STMT_END
|
|
|
|
|
|
|
|
static void
|
2012-07-16 20:02:44 +00:00
|
|
|
render_color_dots (GstAudioVisualizer * base, guint32 * vdata,
|
2011-11-30 21:11:40 +00:00
|
|
|
gint16 * adata, guint num_samples)
|
|
|
|
{
|
|
|
|
GstWaveScope *scope = (GstWaveScope *) base;
|
2012-02-07 11:02:05 +00:00
|
|
|
gint channels = GST_AUDIO_INFO_CHANNELS (&base->ainfo);
|
2011-11-30 21:11:40 +00:00
|
|
|
guint i, c, s, x, y, oy;
|
|
|
|
gfloat dx, dy;
|
2012-08-17 20:57:10 +00:00
|
|
|
guint w = GST_VIDEO_INFO_WIDTH (&base->vinfo);
|
|
|
|
guint h = GST_VIDEO_INFO_HEIGHT (&base->vinfo), h1 = h - 2;
|
2011-11-30 21:11:40 +00:00
|
|
|
gdouble *flt = scope->flt;
|
|
|
|
|
|
|
|
/* draw dots */
|
|
|
|
dx = (gfloat) w / (gfloat) num_samples;
|
|
|
|
dy = h / 65536.0;
|
|
|
|
oy = h / 2;
|
|
|
|
for (c = 0; c < channels; c++) {
|
|
|
|
s = c;
|
|
|
|
for (i = 0; i < num_samples; i++) {
|
|
|
|
x = (guint) ((gfloat) i * dx);
|
|
|
|
filter ((gfloat) adata[s]);
|
|
|
|
|
|
|
|
y = (guint) (oy + flt[0] * dy);
|
|
|
|
y = CLAMP (y, 0, h1);
|
|
|
|
draw_dot_c (vdata, x, y, w, 0x00FF0000);
|
|
|
|
|
|
|
|
y = (guint) (oy + flt[3] * dy);
|
|
|
|
y = CLAMP (y, 0, h1);
|
|
|
|
draw_dot_c (vdata, x, y, w, 0x0000FF00);
|
|
|
|
|
|
|
|
y = (guint) (oy + (flt[4] + flt[5]) * dy);
|
|
|
|
y = CLAMP (y, 0, h1);
|
|
|
|
draw_dot_c (vdata, x, y, w, 0x000000FF);
|
|
|
|
|
|
|
|
s += channels;
|
|
|
|
}
|
|
|
|
flt += 6;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-07-16 20:02:44 +00:00
|
|
|
render_color_lines (GstAudioVisualizer * base, guint32 * vdata,
|
2011-11-30 21:11:40 +00:00
|
|
|
gint16 * adata, guint num_samples)
|
|
|
|
{
|
|
|
|
GstWaveScope *scope = (GstWaveScope *) base;
|
2012-02-07 11:02:05 +00:00
|
|
|
gint channels = GST_AUDIO_INFO_CHANNELS (&base->ainfo);
|
2011-11-30 21:11:40 +00:00
|
|
|
guint i, c, s, x, y, oy;
|
|
|
|
gfloat dx, dy;
|
2012-08-17 20:57:10 +00:00
|
|
|
guint w = GST_VIDEO_INFO_WIDTH (&base->vinfo);
|
|
|
|
guint h = GST_VIDEO_INFO_HEIGHT (&base->vinfo), h1 = h - 2;
|
2011-11-30 21:11:40 +00:00
|
|
|
gdouble *flt = scope->flt;
|
|
|
|
gint x2, y2, y3, y4;
|
|
|
|
|
|
|
|
/* draw lines */
|
|
|
|
dx = (gfloat) (w - 1) / (gfloat) num_samples;
|
|
|
|
dy = (h - 1) / 65536.0;
|
|
|
|
oy = (h - 1) / 2;
|
|
|
|
for (c = 0; c < channels; c++) {
|
|
|
|
s = c;
|
|
|
|
|
|
|
|
/* do first pixels */
|
|
|
|
x2 = 0;
|
|
|
|
filter ((gfloat) adata[s]);
|
|
|
|
|
|
|
|
y = (guint) (oy + flt[0] * dy);
|
|
|
|
y2 = CLAMP (y, 0, h1);
|
|
|
|
|
|
|
|
y = (guint) (oy + flt[3] * dy);
|
|
|
|
y3 = CLAMP (y, 0, h1);
|
|
|
|
|
|
|
|
y = (guint) (oy + (flt[4] + flt[5]) * dy);
|
|
|
|
y4 = CLAMP (y, 0, h1);
|
|
|
|
|
|
|
|
for (i = 1; i < num_samples; i++) {
|
|
|
|
x = (guint) ((gfloat) i * dx);
|
|
|
|
filter ((gfloat) adata[s]);
|
|
|
|
|
|
|
|
y = (guint) (oy + flt[0] * dy);
|
|
|
|
y = CLAMP (y, 0, h1);
|
|
|
|
draw_line_aa (vdata, x2, x, y2, y, w, 0x00FF0000);
|
|
|
|
y2 = y;
|
|
|
|
|
|
|
|
y = (guint) (oy + flt[3] * dy);
|
|
|
|
y = CLAMP (y, 0, h1);
|
|
|
|
draw_line_aa (vdata, x2, x, y3, y, w, 0x0000FF00);
|
|
|
|
y3 = y;
|
|
|
|
|
|
|
|
y = (guint) (oy + (flt[4] + flt[5]) * dy);
|
|
|
|
y = CLAMP (y, 0, h1);
|
|
|
|
draw_line_aa (vdata, x2, x, y4, y, w, 0x000000FF);
|
|
|
|
y4 = y;
|
|
|
|
|
|
|
|
x2 = x;
|
|
|
|
s += channels;
|
|
|
|
}
|
|
|
|
flt += 6;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-23 07:14:38 +00:00
|
|
|
static gboolean
|
2012-07-16 20:02:44 +00:00
|
|
|
gst_wave_scope_render (GstAudioVisualizer * base, GstBuffer * audio,
|
2012-08-17 20:57:10 +00:00
|
|
|
GstVideoFrame * video)
|
2011-11-23 07:14:38 +00:00
|
|
|
{
|
|
|
|
GstWaveScope *scope = GST_WAVE_SCOPE (base);
|
2012-08-17 20:57:10 +00:00
|
|
|
GstMapInfo amap;
|
2011-11-23 07:14:38 +00:00
|
|
|
guint num_samples;
|
2012-02-07 11:02:05 +00:00
|
|
|
gint channels = GST_AUDIO_INFO_CHANNELS (&base->ainfo);
|
2011-11-23 07:14:38 +00:00
|
|
|
|
2012-01-25 13:50:50 +00:00
|
|
|
gst_buffer_map (audio, &amap, GST_MAP_READ);
|
2011-11-23 10:08:39 +00:00
|
|
|
|
2012-02-07 11:02:05 +00:00
|
|
|
num_samples = amap.size / (channels * sizeof (gint16));
|
2012-08-17 20:57:10 +00:00
|
|
|
scope->process (base, (guint32 *) GST_VIDEO_FRAME_PLANE_DATA (video, 0),
|
|
|
|
(gint16 *) amap.data, num_samples);
|
2011-11-23 10:08:39 +00:00
|
|
|
|
2012-01-25 13:50:50 +00:00
|
|
|
gst_buffer_unmap (audio, &amap);
|
2011-11-23 10:08:39 +00:00
|
|
|
|
2011-05-27 08:14:19 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gst_wave_scope_plugin_init (GstPlugin * plugin)
|
|
|
|
{
|
|
|
|
GST_DEBUG_CATEGORY_INIT (wave_scope_debug, "wavescope", 0, "wavescope");
|
|
|
|
|
|
|
|
return gst_element_register (plugin, "wavescope", GST_RANK_NONE,
|
|
|
|
GST_TYPE_WAVE_SCOPE);
|
|
|
|
}
|