2011-05-27 08:14:19 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) <2011> Stefan Kost <ensonic@users.sf.net>
|
|
|
|
*
|
2011-06-04 11:33:29 +00:00
|
|
|
* gstbaseaudiovisualizer.h: base class for audio visualisation elements
|
2011-05-27 08:14:19 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
/**
|
2011-06-04 11:33:29 +00:00
|
|
|
* SECTION:gstbaseaudiovisualizer
|
2011-05-27 08:14:19 +00:00
|
|
|
*
|
2011-06-04 11:37:04 +00:00
|
|
|
* A basclass for scopes. It takes care of re-fitting the audio-rate to
|
|
|
|
* video-rate. It also provides several background shading effects. These
|
|
|
|
* effects are applied to a previous picture before the render() implementation
|
|
|
|
* can draw a new frame.
|
2011-05-27 08:14:19 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
#include <string.h>
|
2011-05-27 20:25:00 +00:00
|
|
|
#include <gst/controller/gstcontroller.h>
|
2011-05-27 08:14:19 +00:00
|
|
|
|
2011-06-04 11:33:29 +00:00
|
|
|
#include "gstbaseaudiovisualizer.h"
|
2011-05-27 08:14:19 +00:00
|
|
|
|
2011-06-04 11:33:29 +00:00
|
|
|
GST_DEBUG_CATEGORY_STATIC (base_audio_visualizer_debug);
|
|
|
|
#define GST_CAT_DEFAULT (base_audio_visualizer_debug)
|
2011-05-27 08:14:19 +00:00
|
|
|
|
2011-06-04 11:33:29 +00:00
|
|
|
#define DEFAULT_SHADER GST_BASE_AUDIO_VISUALIZER_SHADER_FADE
|
2011-05-28 11:08:05 +00:00
|
|
|
#define DEFAULT_SHADE_AMOUNT 0x000a0a0a
|
|
|
|
|
2011-05-27 20:25:00 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
2011-05-28 11:08:05 +00:00
|
|
|
PROP_SHADER,
|
|
|
|
PROP_SHADE_AMOUNT
|
2011-05-27 20:25:00 +00:00
|
|
|
};
|
|
|
|
|
2011-05-27 08:14:19 +00:00
|
|
|
static GstBaseTransformClass *parent_class = NULL;
|
|
|
|
|
2011-06-04 11:33:29 +00:00
|
|
|
static void gst_base_audio_visualizer_class_init (GstBaseAudioVisualizerClass *
|
|
|
|
klass);
|
|
|
|
static void gst_base_audio_visualizer_init (GstBaseAudioVisualizer * scope,
|
|
|
|
GstBaseAudioVisualizerClass * g_class);
|
|
|
|
static void gst_base_audio_visualizer_set_property (GObject * object,
|
|
|
|
guint prop_id, const GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_base_audio_visualizer_get_property (GObject * object,
|
|
|
|
guint prop_id, GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_base_audio_visualizer_dispose (GObject * object);
|
|
|
|
|
|
|
|
static gboolean gst_base_audio_visualizer_src_negotiate (GstBaseAudioVisualizer
|
|
|
|
* scope);
|
|
|
|
static gboolean gst_base_audio_visualizer_src_setcaps (GstPad * pad,
|
|
|
|
GstCaps * caps);
|
|
|
|
static gboolean gst_base_audio_visualizer_sink_setcaps (GstPad * pad,
|
|
|
|
GstCaps * caps);
|
|
|
|
|
|
|
|
static GstFlowReturn gst_base_audio_visualizer_chain (GstPad * pad,
|
|
|
|
GstBuffer * buffer);
|
|
|
|
static GstStateChangeReturn gst_base_audio_visualizer_change_state (GstElement *
|
|
|
|
element, GstStateChange transition);
|
2011-05-27 08:14:19 +00:00
|
|
|
|
2011-05-27 20:25:00 +00:00
|
|
|
/* shading functions */
|
|
|
|
|
2011-06-04 11:33:29 +00:00
|
|
|
#define GST_TYPE_BASE_AUDIO_VISUALIZER_SHADER (gst_base_audio_visualizer_shader_get_type())
|
2011-05-27 20:25:00 +00:00
|
|
|
static GType
|
2011-06-04 11:33:29 +00:00
|
|
|
gst_base_audio_visualizer_shader_get_type (void)
|
2011-05-27 20:25:00 +00:00
|
|
|
{
|
|
|
|
static GType shader_type = 0;
|
|
|
|
static const GEnumValue shaders[] = {
|
2011-06-04 11:33:29 +00:00
|
|
|
{GST_BASE_AUDIO_VISUALIZER_SHADER_NONE, "None", "none"},
|
|
|
|
{GST_BASE_AUDIO_VISUALIZER_SHADER_FADE, "Fade", "fade"},
|
|
|
|
{GST_BASE_AUDIO_VISUALIZER_SHADER_FADE_AND_MOVE_UP, "Fade and move up",
|
2011-05-27 20:25:00 +00:00
|
|
|
"fade-and-move-up"},
|
2011-06-04 11:33:29 +00:00
|
|
|
{GST_BASE_AUDIO_VISUALIZER_SHADER_FADE_AND_MOVE_DOWN, "Fade and move down",
|
2011-05-28 11:36:51 +00:00
|
|
|
"fade-and-move-down"},
|
2011-06-04 11:33:29 +00:00
|
|
|
{GST_BASE_AUDIO_VISUALIZER_SHADER_FADE_AND_MOVE_HORIZ_OUT,
|
2011-05-28 11:36:51 +00:00
|
|
|
"Fade and move horizontaly out",
|
|
|
|
"fade-and-move-horiz-out"},
|
2011-05-27 20:25:00 +00:00
|
|
|
{0, NULL, NULL},
|
|
|
|
};
|
|
|
|
|
|
|
|
if (G_UNLIKELY (shader_type == 0)) {
|
2011-06-04 11:33:29 +00:00
|
|
|
shader_type =
|
|
|
|
g_enum_register_static ("GstBaseAudioVisualizerShader", shaders);
|
2011-05-27 20:25:00 +00:00
|
|
|
}
|
|
|
|
return shader_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-06-04 11:33:29 +00:00
|
|
|
shader_fade (GstBaseAudioVisualizer * scope, const guint8 * s, guint8 * d)
|
2011-05-27 20:25:00 +00:00
|
|
|
{
|
|
|
|
guint i, bpf = scope->bpf;
|
2011-05-28 11:08:05 +00:00
|
|
|
guint r = (scope->shade_amount >> 16) & 0xff;
|
|
|
|
guint g = (scope->shade_amount >> 8) & 0xff;
|
|
|
|
guint b = (scope->shade_amount >> 0) & 0xff;
|
|
|
|
|
|
|
|
/* we're only supporting GST_VIDEO_FORMAT_xRGB right now) */
|
|
|
|
#if G_BYTE_ORDER == G_LITTLE_ENDIAN
|
|
|
|
for (i = 0; i < bpf;) {
|
|
|
|
d[i] = (s[i] > b) ? s[i] - b : 0;
|
|
|
|
i++;
|
|
|
|
d[i] = (s[i] > g) ? s[i] - g : 0;
|
|
|
|
i++;
|
|
|
|
d[i] = (s[i] > r) ? s[i] - r : 0;
|
|
|
|
i++;
|
|
|
|
d[i++] = 0;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
for (i = 0; i < bpf;) {
|
|
|
|
d[i++] = 0;
|
|
|
|
d[i] = (s[i] > r) ? s[i] - r : 0;
|
|
|
|
i++;
|
|
|
|
d[i] = (s[i] > g) ? s[i] - g : 0;
|
|
|
|
i++;
|
|
|
|
d[i] = (s[i] > b) ? s[i] - b : 0;
|
|
|
|
i++;
|
2011-05-27 20:25:00 +00:00
|
|
|
}
|
2011-05-28 11:08:05 +00:00
|
|
|
#endif
|
2011-05-27 20:25:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-06-04 11:33:29 +00:00
|
|
|
shader_fade_and_move_up (GstBaseAudioVisualizer * scope, const guint8 * s,
|
|
|
|
guint8 * d)
|
2011-05-27 20:25:00 +00:00
|
|
|
{
|
|
|
|
guint i, j, bpf = scope->bpf;
|
|
|
|
guint bpl = 4 * scope->width;
|
2011-05-28 11:08:05 +00:00
|
|
|
guint r = (scope->shade_amount >> 16) & 0xff;
|
|
|
|
guint g = (scope->shade_amount >> 8) & 0xff;
|
|
|
|
guint b = (scope->shade_amount >> 0) & 0xff;
|
|
|
|
|
|
|
|
#if G_BYTE_ORDER == G_LITTLE_ENDIAN
|
|
|
|
for (j = 0, i = bpl; i < bpf;) {
|
|
|
|
d[j++] = (s[i] > b) ? s[i] - b : 0;
|
|
|
|
i++;
|
|
|
|
d[j++] = (s[i] > g) ? s[i] - g : 0;
|
|
|
|
i++;
|
|
|
|
d[j++] = (s[i] > r) ? s[i] - r : 0;
|
|
|
|
i++;
|
|
|
|
d[j++] = 0;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
for (i = 0; i < bpl; i += 4) {
|
|
|
|
d[j] = (s[j] > b) ? s[j] - b : 0;
|
|
|
|
j++;
|
|
|
|
d[j] = (s[j] > g) ? s[j] - g : 0;
|
|
|
|
j++;
|
|
|
|
d[j] = (s[j] > r) ? s[j] - r : 0;
|
|
|
|
j++;
|
|
|
|
d[j++] = 0;
|
2011-05-27 20:25:00 +00:00
|
|
|
}
|
2011-05-28 11:08:05 +00:00
|
|
|
#else
|
|
|
|
for (j = 0, i = bpl; i < bpf;) {
|
|
|
|
d[j++] = 0;
|
|
|
|
i++;
|
|
|
|
d[j++] = (s[i] > r) ? s[i] - r : 0;
|
|
|
|
i++;
|
|
|
|
d[j++] = (s[i] > g) ? s[i] - g : 0;
|
|
|
|
i++;
|
|
|
|
d[j++] = (s[i] > b) ? s[i] - b : 0;
|
|
|
|
i++;
|
2011-05-27 20:25:00 +00:00
|
|
|
}
|
2011-05-28 11:08:05 +00:00
|
|
|
for (i = 0; i < bpl; i += 4) {
|
|
|
|
d[j++] = 0;
|
|
|
|
d[j] = (s[j] > r) ? s[j] - r : 0;
|
|
|
|
j++;
|
|
|
|
d[j] = (s[j] > g) ? s[j] - g : 0;
|
|
|
|
j++;
|
|
|
|
d[j] = (s[j] > b) ? s[j] - b : 0;
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
#endif
|
2011-05-27 20:25:00 +00:00
|
|
|
}
|
|
|
|
|
2011-05-28 11:36:51 +00:00
|
|
|
static void
|
2011-06-04 11:33:29 +00:00
|
|
|
shader_fade_and_move_down (GstBaseAudioVisualizer * scope, const guint8 * s,
|
|
|
|
guint8 * d)
|
2011-05-28 11:36:51 +00:00
|
|
|
{
|
|
|
|
guint i, j, bpf = scope->bpf;
|
|
|
|
guint bpl = 4 * scope->width;
|
|
|
|
guint r = (scope->shade_amount >> 16) & 0xff;
|
|
|
|
guint g = (scope->shade_amount >> 8) & 0xff;
|
|
|
|
guint b = (scope->shade_amount >> 0) & 0xff;
|
|
|
|
|
|
|
|
#if G_BYTE_ORDER == G_LITTLE_ENDIAN
|
|
|
|
for (i = 0; i < bpl;) {
|
|
|
|
d[i] = (s[i] > b) ? s[i] - b : 0;
|
|
|
|
i++;
|
|
|
|
d[i] = (s[i] > g) ? s[i] - g : 0;
|
|
|
|
i++;
|
|
|
|
d[i] = (s[i] > r) ? s[i] - r : 0;
|
|
|
|
i++;
|
|
|
|
d[i++] = 0;
|
|
|
|
}
|
|
|
|
for (j = bpl, i = 0; j < bpf;) {
|
|
|
|
d[j++] = (s[i] > b) ? s[i] - b : 0;
|
|
|
|
i++;
|
|
|
|
d[j++] = (s[i] > g) ? s[i] - g : 0;
|
|
|
|
i++;
|
|
|
|
d[j++] = (s[i] > r) ? s[i] - r : 0;
|
|
|
|
i++;
|
|
|
|
d[j++] = 0;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
for (i = 0; i < bpl;) {
|
|
|
|
d[i++] = 0;
|
|
|
|
d[i] = (s[i] > r) ? s[i] - r : 0;
|
|
|
|
i++;
|
|
|
|
d[i] = (s[i] > g) ? s[i] - g : 0;
|
|
|
|
i++;
|
|
|
|
d[i] = (s[i] > b) ? s[i] - b : 0;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
for (j = bpl, i = 0; j < bpf;) {
|
|
|
|
d[j++] = 0;
|
|
|
|
i++;
|
|
|
|
d[j++] = (s[i] > r) ? s[i] - r : 0;
|
|
|
|
i++;
|
|
|
|
d[j++] = (s[i] > g) ? s[i] - g : 0;
|
|
|
|
i++;
|
|
|
|
d[j++] = (s[i] > b) ? s[i] - b : 0;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-06-04 11:33:29 +00:00
|
|
|
shader_fade_and_move_horiz_out (GstBaseAudioVisualizer * scope,
|
|
|
|
const guint8 * s, guint8 * d)
|
2011-05-28 11:36:51 +00:00
|
|
|
{
|
|
|
|
guint i, j, bpf = scope->bpf / 2;
|
|
|
|
guint bpl = 4 * scope->width;
|
|
|
|
guint r = (scope->shade_amount >> 16) & 0xff;
|
|
|
|
guint g = (scope->shade_amount >> 8) & 0xff;
|
|
|
|
guint b = (scope->shade_amount >> 0) & 0xff;
|
|
|
|
|
|
|
|
#if G_BYTE_ORDER == G_LITTLE_ENDIAN
|
|
|
|
/* middle up */
|
|
|
|
for (j = 0, i = bpl; i < bpf;) {
|
|
|
|
d[j++] = (s[i] > b) ? s[i] - b : 0;
|
|
|
|
i++;
|
|
|
|
d[j++] = (s[i] > g) ? s[i] - g : 0;
|
|
|
|
i++;
|
|
|
|
d[j++] = (s[i] > r) ? s[i] - r : 0;
|
|
|
|
i++;
|
|
|
|
d[j++] = 0;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
for (i = 0; i < bpl; i += 4) {
|
|
|
|
d[j] = (s[j] > b) ? s[j] - b : 0;
|
|
|
|
j++;
|
|
|
|
d[j] = (s[j] > g) ? s[j] - g : 0;
|
|
|
|
j++;
|
|
|
|
d[j] = (s[j] > r) ? s[j] - r : 0;
|
|
|
|
j++;
|
|
|
|
d[j++] = 0;
|
|
|
|
}
|
|
|
|
/* middle down */
|
|
|
|
for (i = bpf; i < bpf + bpl;) {
|
|
|
|
d[i] = (s[i] > b) ? s[i] - b : 0;
|
|
|
|
i++;
|
|
|
|
d[i] = (s[i] > g) ? s[i] - g : 0;
|
|
|
|
i++;
|
|
|
|
d[i] = (s[i] > r) ? s[i] - r : 0;
|
|
|
|
i++;
|
|
|
|
d[i++] = 0;
|
|
|
|
}
|
|
|
|
for (j = bpf + bpl, i = bpf; j < bpf + bpf;) {
|
|
|
|
d[j++] = (s[i] > b) ? s[i] - b : 0;
|
|
|
|
i++;
|
|
|
|
d[j++] = (s[i] > g) ? s[i] - g : 0;
|
|
|
|
i++;
|
|
|
|
d[j++] = (s[i] > r) ? s[i] - r : 0;
|
|
|
|
i++;
|
|
|
|
d[j++] = 0;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
/* middle up */
|
|
|
|
for (j = 0, i = bpl; i < bpf;) {
|
|
|
|
d[j++] = 0;
|
|
|
|
i++;
|
|
|
|
d[j++] = (s[i] > r) ? s[i] - r : 0;
|
|
|
|
i++;
|
|
|
|
d[j++] = (s[i] > g) ? s[i] - g : 0;
|
|
|
|
i++;
|
|
|
|
d[j++] = (s[i] > b) ? s[i] - b : 0;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
for (i = 0; i < bpl; i += 4) {
|
|
|
|
d[j++] = 0;
|
|
|
|
d[j] = (s[j] > r) ? s[j] - r : 0;
|
|
|
|
j++;
|
|
|
|
d[j] = (s[j] > g) ? s[j] - g : 0;
|
|
|
|
j++;
|
|
|
|
d[j] = (s[j] > b) ? s[j] - b : 0;
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
/* middle down */
|
|
|
|
for (i = bpf; i < bpf + bpl;) {
|
|
|
|
d[i++] = 0;
|
|
|
|
d[i] = (s[i] > r) ? s[i] - r : 0;
|
|
|
|
i++;
|
|
|
|
d[i] = (s[i] > g) ? s[i] - g : 0;
|
|
|
|
i++;
|
|
|
|
d[i] = (s[i] > b) ? s[i] - b : 0;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
for (j = bpf + bpl, i = bpf; j < bpf + bpf;) {
|
|
|
|
d[j++] = 0;
|
|
|
|
i++;
|
|
|
|
d[j++] = (s[i] > r) ? s[i] - r : 0;
|
|
|
|
i++;
|
|
|
|
d[j++] = (s[i] > g) ? s[i] - g : 0;
|
|
|
|
i++;
|
|
|
|
d[j++] = (s[i] > b) ? s[i] - b : 0;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-05-27 20:25:00 +00:00
|
|
|
static void
|
2011-06-04 11:33:29 +00:00
|
|
|
gst_base_audio_visualizer_change_shader (GstBaseAudioVisualizer * scope)
|
2011-05-27 20:25:00 +00:00
|
|
|
{
|
|
|
|
switch (scope->shader_type) {
|
2011-06-04 11:33:29 +00:00
|
|
|
case GST_BASE_AUDIO_VISUALIZER_SHADER_NONE:
|
2011-05-27 20:25:00 +00:00
|
|
|
scope->shader = NULL;
|
|
|
|
break;
|
2011-06-04 11:33:29 +00:00
|
|
|
case GST_BASE_AUDIO_VISUALIZER_SHADER_FADE:
|
2011-05-27 20:25:00 +00:00
|
|
|
scope->shader = shader_fade;
|
|
|
|
break;
|
2011-06-04 11:33:29 +00:00
|
|
|
case GST_BASE_AUDIO_VISUALIZER_SHADER_FADE_AND_MOVE_UP:
|
2011-05-27 20:25:00 +00:00
|
|
|
scope->shader = shader_fade_and_move_up;
|
|
|
|
break;
|
2011-06-04 11:33:29 +00:00
|
|
|
case GST_BASE_AUDIO_VISUALIZER_SHADER_FADE_AND_MOVE_DOWN:
|
2011-05-28 11:36:51 +00:00
|
|
|
scope->shader = shader_fade_and_move_down;
|
|
|
|
break;
|
2011-06-04 11:33:29 +00:00
|
|
|
case GST_BASE_AUDIO_VISUALIZER_SHADER_FADE_AND_MOVE_HORIZ_OUT:
|
2011-05-28 11:36:51 +00:00
|
|
|
scope->shader = shader_fade_and_move_horiz_out;
|
|
|
|
break;
|
2011-05-27 20:25:00 +00:00
|
|
|
default:
|
|
|
|
GST_ERROR ("invalid shader function");
|
|
|
|
scope->shader = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* base class */
|
|
|
|
|
2011-05-27 08:14:19 +00:00
|
|
|
GType
|
2011-06-04 11:33:29 +00:00
|
|
|
gst_base_audio_visualizer_get_type (void)
|
2011-05-27 08:14:19 +00:00
|
|
|
{
|
2011-06-04 11:33:29 +00:00
|
|
|
static volatile gsize base_audio_visualizer_type = 0;
|
2011-05-27 08:14:19 +00:00
|
|
|
|
2011-06-04 11:33:29 +00:00
|
|
|
if (g_once_init_enter (&base_audio_visualizer_type)) {
|
|
|
|
static const GTypeInfo base_audio_visualizer_info = {
|
|
|
|
sizeof (GstBaseAudioVisualizerClass),
|
2011-05-27 08:14:19 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2011-06-04 11:33:29 +00:00
|
|
|
(GClassInitFunc) gst_base_audio_visualizer_class_init,
|
2011-05-27 08:14:19 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2011-06-04 11:33:29 +00:00
|
|
|
sizeof (GstBaseAudioVisualizer),
|
2011-05-27 08:14:19 +00:00
|
|
|
0,
|
2011-06-04 11:33:29 +00:00
|
|
|
(GInstanceInitFunc) gst_base_audio_visualizer_init,
|
2011-05-27 08:14:19 +00:00
|
|
|
};
|
|
|
|
GType _type;
|
|
|
|
|
|
|
|
_type = g_type_register_static (GST_TYPE_ELEMENT,
|
2011-06-04 11:33:29 +00:00
|
|
|
"GstBaseAudioVisualizer", &base_audio_visualizer_info,
|
|
|
|
G_TYPE_FLAG_ABSTRACT);
|
|
|
|
g_once_init_leave (&base_audio_visualizer_type, _type);
|
2011-05-27 08:14:19 +00:00
|
|
|
}
|
2011-06-04 11:33:29 +00:00
|
|
|
return (GType) base_audio_visualizer_type;
|
2011-05-27 08:14:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-06-04 11:33:29 +00:00
|
|
|
gst_base_audio_visualizer_class_init (GstBaseAudioVisualizerClass * klass)
|
2011-05-27 08:14:19 +00:00
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = (GObjectClass *) klass;
|
|
|
|
GstElementClass *element_class = (GstElementClass *) klass;
|
|
|
|
|
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
|
|
|
|
2011-06-04 11:33:29 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (base_audio_visualizer_debug, "baseaudiovisualizer",
|
|
|
|
0, "scope audio visualisation base class");
|
2011-05-27 08:14:19 +00:00
|
|
|
|
2011-06-04 11:33:29 +00:00
|
|
|
gobject_class->set_property = gst_base_audio_visualizer_set_property;
|
|
|
|
gobject_class->get_property = gst_base_audio_visualizer_get_property;
|
|
|
|
gobject_class->dispose = gst_base_audio_visualizer_dispose;
|
2011-05-27 20:25:00 +00:00
|
|
|
|
2011-06-04 11:33:29 +00:00
|
|
|
element_class->change_state =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_base_audio_visualizer_change_state);
|
2011-05-27 20:25:00 +00:00
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, PROP_SHADER,
|
|
|
|
g_param_spec_enum ("shader", "shader type",
|
2011-06-04 11:33:29 +00:00
|
|
|
"Shader function to apply on each frame",
|
|
|
|
GST_TYPE_BASE_AUDIO_VISUALIZER_SHADER, DEFAULT_SHADER,
|
2011-05-27 20:25:00 +00:00
|
|
|
G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS));
|
2011-05-28 11:08:05 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_SHADE_AMOUNT,
|
|
|
|
g_param_spec_uint ("shade-amount", "shade amount",
|
|
|
|
"Shading color to use (big-endian ARGB)", 0, G_MAXUINT32,
|
|
|
|
DEFAULT_SHADE_AMOUNT,
|
|
|
|
G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS));
|
2011-05-27 08:14:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-06-04 11:33:29 +00:00
|
|
|
gst_base_audio_visualizer_init (GstBaseAudioVisualizer * scope,
|
|
|
|
GstBaseAudioVisualizerClass * g_class)
|
2011-05-27 08:14:19 +00:00
|
|
|
{
|
|
|
|
GstPadTemplate *pad_template;
|
|
|
|
|
|
|
|
/* create the sink and src pads */
|
|
|
|
pad_template =
|
|
|
|
gst_element_class_get_pad_template (GST_ELEMENT_CLASS (g_class), "sink");
|
|
|
|
g_return_if_fail (pad_template != NULL);
|
|
|
|
scope->sinkpad = gst_pad_new_from_template (pad_template, "sink");
|
|
|
|
gst_pad_set_chain_function (scope->sinkpad,
|
2011-06-04 11:33:29 +00:00
|
|
|
GST_DEBUG_FUNCPTR (gst_base_audio_visualizer_chain));
|
2011-05-27 08:14:19 +00:00
|
|
|
gst_pad_set_setcaps_function (scope->sinkpad,
|
2011-06-04 11:33:29 +00:00
|
|
|
GST_DEBUG_FUNCPTR (gst_base_audio_visualizer_sink_setcaps));
|
2011-05-27 08:14:19 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (scope), scope->sinkpad);
|
|
|
|
|
|
|
|
pad_template =
|
|
|
|
gst_element_class_get_pad_template (GST_ELEMENT_CLASS (g_class), "src");
|
|
|
|
g_return_if_fail (pad_template != NULL);
|
|
|
|
scope->srcpad = gst_pad_new_from_template (pad_template, "src");
|
|
|
|
gst_pad_set_setcaps_function (scope->srcpad,
|
2011-06-04 11:33:29 +00:00
|
|
|
GST_DEBUG_FUNCPTR (gst_base_audio_visualizer_src_setcaps));
|
2011-05-27 08:14:19 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (scope), scope->srcpad);
|
|
|
|
|
|
|
|
scope->adapter = gst_adapter_new ();
|
|
|
|
scope->inbuf = gst_buffer_new ();
|
|
|
|
|
2011-05-27 20:25:00 +00:00
|
|
|
/* properties */
|
|
|
|
scope->shader_type = DEFAULT_SHADER;
|
2011-06-04 11:33:29 +00:00
|
|
|
gst_base_audio_visualizer_change_shader (scope);
|
2011-05-28 11:08:05 +00:00
|
|
|
scope->shade_amount = DEFAULT_SHADE_AMOUNT;
|
2011-05-27 20:25:00 +00:00
|
|
|
|
2011-05-27 08:14:19 +00:00
|
|
|
/* reset the initial video state */
|
|
|
|
scope->width = 320;
|
|
|
|
scope->height = 200;
|
|
|
|
scope->fps_n = 25; /* desired frame rate */
|
|
|
|
scope->fps_d = 1;
|
|
|
|
scope->frame_duration = GST_CLOCK_TIME_NONE;
|
|
|
|
|
|
|
|
/* reset the initial audio state */
|
|
|
|
scope->rate = GST_AUDIO_DEF_RATE;
|
|
|
|
scope->channels = 2;
|
|
|
|
|
|
|
|
scope->next_ts = GST_CLOCK_TIME_NONE;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-05-27 20:25:00 +00:00
|
|
|
static void
|
2011-06-04 11:33:29 +00:00
|
|
|
gst_base_audio_visualizer_set_property (GObject * object, guint prop_id,
|
2011-05-27 20:25:00 +00:00
|
|
|
const GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
2011-06-04 11:33:29 +00:00
|
|
|
GstBaseAudioVisualizer *scope = GST_BASE_AUDIO_VISUALIZER (object);
|
2011-05-27 20:25:00 +00:00
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_SHADER:
|
|
|
|
scope->shader_type = g_value_get_enum (value);
|
2011-06-04 11:33:29 +00:00
|
|
|
gst_base_audio_visualizer_change_shader (scope);
|
2011-05-27 20:25:00 +00:00
|
|
|
break;
|
2011-05-28 11:08:05 +00:00
|
|
|
case PROP_SHADE_AMOUNT:
|
|
|
|
scope->shade_amount = g_value_get_uint (value);
|
|
|
|
break;
|
2011-05-27 20:25:00 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-06-04 11:33:29 +00:00
|
|
|
gst_base_audio_visualizer_get_property (GObject * object, guint prop_id,
|
2011-05-27 20:25:00 +00:00
|
|
|
GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
2011-06-04 11:33:29 +00:00
|
|
|
GstBaseAudioVisualizer *scope = GST_BASE_AUDIO_VISUALIZER (object);
|
2011-05-27 20:25:00 +00:00
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_SHADER:
|
|
|
|
g_value_set_enum (value, scope->shader_type);
|
|
|
|
break;
|
2011-05-28 11:08:05 +00:00
|
|
|
case PROP_SHADE_AMOUNT:
|
|
|
|
g_value_set_uint (value, scope->shade_amount);
|
|
|
|
break;
|
2011-05-27 20:25:00 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-27 08:14:19 +00:00
|
|
|
static void
|
2011-06-04 11:33:29 +00:00
|
|
|
gst_base_audio_visualizer_dispose (GObject * object)
|
2011-05-27 08:14:19 +00:00
|
|
|
{
|
2011-06-04 11:33:29 +00:00
|
|
|
GstBaseAudioVisualizer *scope = GST_BASE_AUDIO_VISUALIZER (object);
|
2011-05-27 08:14:19 +00:00
|
|
|
|
|
|
|
if (scope->adapter) {
|
|
|
|
g_object_unref (scope->adapter);
|
|
|
|
scope->adapter = NULL;
|
|
|
|
}
|
|
|
|
if (scope->inbuf) {
|
|
|
|
gst_buffer_unref (scope->inbuf);
|
|
|
|
scope->inbuf = NULL;
|
|
|
|
}
|
2011-05-27 20:25:00 +00:00
|
|
|
if (scope->pixelbuf) {
|
|
|
|
g_free (scope->pixelbuf);
|
|
|
|
scope->pixelbuf = NULL;
|
|
|
|
}
|
2011-05-27 08:14:19 +00:00
|
|
|
G_OBJECT_CLASS (parent_class)->dispose (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2011-06-04 11:33:29 +00:00
|
|
|
gst_base_audio_visualizer_sink_setcaps (GstPad * pad, GstCaps * caps)
|
2011-05-27 08:14:19 +00:00
|
|
|
{
|
2011-06-04 11:33:29 +00:00
|
|
|
GstBaseAudioVisualizer *scope;
|
2011-05-27 08:14:19 +00:00
|
|
|
GstStructure *structure;
|
|
|
|
gint channels;
|
|
|
|
gint rate;
|
|
|
|
gboolean res = TRUE;
|
|
|
|
|
2011-06-04 11:33:29 +00:00
|
|
|
scope = GST_BASE_AUDIO_VISUALIZER (gst_pad_get_parent (pad));
|
2011-05-27 08:14:19 +00:00
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
|
|
|
|
|
|
|
if (!gst_structure_get_int (structure, "channels", &channels) ||
|
|
|
|
!gst_structure_get_int (structure, "rate", &rate))
|
|
|
|
goto missing_caps_details;
|
|
|
|
|
|
|
|
if (channels != 2)
|
|
|
|
goto wrong_channels;
|
|
|
|
|
|
|
|
if (rate <= 0)
|
|
|
|
goto wrong_rate;
|
|
|
|
|
|
|
|
scope->channels = channels;
|
|
|
|
scope->rate = rate;
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (scope, "audio: channels %d, rate %d",
|
|
|
|
scope->channels, scope->rate);
|
|
|
|
|
|
|
|
done:
|
|
|
|
gst_object_unref (scope);
|
|
|
|
return res;
|
|
|
|
|
|
|
|
/* Errors */
|
|
|
|
missing_caps_details:
|
|
|
|
{
|
|
|
|
GST_WARNING_OBJECT (scope, "missing channels or rate in the caps");
|
|
|
|
res = FALSE;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
wrong_channels:
|
|
|
|
{
|
|
|
|
GST_WARNING_OBJECT (scope, "number of channels must be 2, but is %d",
|
|
|
|
channels);
|
|
|
|
res = FALSE;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
wrong_rate:
|
|
|
|
{
|
|
|
|
GST_WARNING_OBJECT (scope, "sample rate must be >0, but is %d", rate);
|
|
|
|
res = FALSE;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2011-06-04 11:33:29 +00:00
|
|
|
gst_base_audio_visualizer_src_negotiate (GstBaseAudioVisualizer * scope)
|
2011-05-27 08:14:19 +00:00
|
|
|
{
|
|
|
|
GstCaps *othercaps, *target, *intersect;
|
|
|
|
GstStructure *structure;
|
|
|
|
const GstCaps *templ;
|
|
|
|
|
|
|
|
templ = gst_pad_get_pad_template_caps (scope->srcpad);
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (scope, "performing negotiation");
|
|
|
|
|
|
|
|
/* see what the peer can do */
|
|
|
|
othercaps = gst_pad_peer_get_caps (scope->srcpad);
|
|
|
|
if (othercaps) {
|
|
|
|
intersect = gst_caps_intersect (othercaps, templ);
|
|
|
|
gst_caps_unref (othercaps);
|
|
|
|
|
|
|
|
if (gst_caps_is_empty (intersect))
|
|
|
|
goto no_format;
|
|
|
|
|
|
|
|
target = gst_caps_copy_nth (intersect, 0);
|
|
|
|
gst_caps_unref (intersect);
|
|
|
|
} else {
|
|
|
|
target = gst_caps_ref ((GstCaps *) templ);
|
|
|
|
}
|
|
|
|
|
|
|
|
structure = gst_caps_get_structure (target, 0);
|
|
|
|
gst_structure_fixate_field_nearest_int (structure, "width", scope->width);
|
|
|
|
gst_structure_fixate_field_nearest_int (structure, "height", scope->height);
|
|
|
|
gst_structure_fixate_field_nearest_fraction (structure, "framerate",
|
|
|
|
scope->fps_n, scope->fps_d);
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (scope, "final caps are %" GST_PTR_FORMAT, target);
|
|
|
|
|
|
|
|
gst_pad_set_caps (scope->srcpad, target);
|
|
|
|
gst_caps_unref (target);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
no_format:
|
|
|
|
{
|
|
|
|
gst_caps_unref (intersect);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2011-06-04 11:33:29 +00:00
|
|
|
gst_base_audio_visualizer_src_setcaps (GstPad * pad, GstCaps * caps)
|
2011-05-27 08:14:19 +00:00
|
|
|
{
|
2011-06-04 11:33:29 +00:00
|
|
|
GstBaseAudioVisualizer *scope;
|
|
|
|
GstBaseAudioVisualizerClass *klass;
|
2011-05-27 08:14:19 +00:00
|
|
|
gint w, h;
|
|
|
|
gint num, denom;
|
|
|
|
GstVideoFormat format;
|
|
|
|
gboolean res = TRUE;
|
|
|
|
|
2011-06-04 11:33:29 +00:00
|
|
|
scope = GST_BASE_AUDIO_VISUALIZER (gst_pad_get_parent (pad));
|
|
|
|
klass = GST_BASE_AUDIO_VISUALIZER_CLASS (G_OBJECT_GET_CLASS (scope));
|
2011-05-27 08:14:19 +00:00
|
|
|
|
|
|
|
if (!gst_video_format_parse_caps (caps, &format, &w, &h)) {
|
|
|
|
goto missing_caps_details;
|
|
|
|
}
|
|
|
|
if (!gst_video_parse_caps_framerate (caps, &num, &denom)) {
|
|
|
|
goto missing_caps_details;
|
|
|
|
}
|
|
|
|
|
|
|
|
scope->width = w;
|
|
|
|
scope->height = h;
|
|
|
|
scope->fps_n = num;
|
|
|
|
scope->fps_d = denom;
|
|
|
|
scope->video_format = format;
|
|
|
|
|
|
|
|
scope->frame_duration = gst_util_uint64_scale_int (GST_SECOND,
|
|
|
|
scope->fps_d, scope->fps_n);
|
|
|
|
scope->spf = gst_util_uint64_scale_int (scope->rate,
|
|
|
|
scope->fps_d, scope->fps_n);
|
2011-05-27 20:12:00 +00:00
|
|
|
scope->req_spf = scope->spf;
|
2011-05-27 08:14:19 +00:00
|
|
|
|
2011-05-27 20:25:00 +00:00
|
|
|
scope->bpf = w * h * 4;
|
|
|
|
|
|
|
|
if (scope->pixelbuf)
|
|
|
|
g_free (scope->pixelbuf);
|
|
|
|
scope->pixelbuf = g_malloc0 (scope->bpf);
|
|
|
|
|
2011-05-27 08:14:19 +00:00
|
|
|
if (klass->setup)
|
|
|
|
res = klass->setup (scope);
|
|
|
|
|
2011-05-27 20:12:00 +00:00
|
|
|
GST_DEBUG_OBJECT (scope, "video: dimension %dx%d, framerate %d/%d",
|
|
|
|
scope->width, scope->height, scope->fps_n, scope->fps_d);
|
|
|
|
GST_DEBUG_OBJECT (scope, "blocks: spf %u, req_spf %u",
|
|
|
|
scope->spf, scope->req_spf);
|
2011-05-27 08:14:19 +00:00
|
|
|
done:
|
|
|
|
gst_object_unref (scope);
|
|
|
|
return res;
|
|
|
|
|
|
|
|
/* Errors */
|
|
|
|
missing_caps_details:
|
|
|
|
{
|
|
|
|
GST_WARNING_OBJECT (scope,
|
|
|
|
"missing width, height or framerate in the caps");
|
|
|
|
res = FALSE;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstFlowReturn
|
2011-06-04 11:33:29 +00:00
|
|
|
gst_base_audio_visualizer_chain (GstPad * pad, GstBuffer * buffer)
|
2011-05-27 08:14:19 +00:00
|
|
|
{
|
|
|
|
GstFlowReturn ret = GST_FLOW_OK;
|
2011-06-04 11:33:29 +00:00
|
|
|
GstBaseAudioVisualizer *scope;
|
|
|
|
GstBaseAudioVisualizerClass *klass;
|
2011-05-27 08:14:19 +00:00
|
|
|
GstBuffer *inbuf;
|
2011-05-27 20:12:00 +00:00
|
|
|
guint avail, sbpf;
|
2011-06-04 11:33:29 +00:00
|
|
|
gboolean (*render) (GstBaseAudioVisualizer * scope, GstBuffer * audio,
|
2011-05-27 08:14:19 +00:00
|
|
|
GstBuffer * video);
|
|
|
|
|
2011-06-04 11:33:29 +00:00
|
|
|
scope = GST_BASE_AUDIO_VISUALIZER (gst_pad_get_parent (pad));
|
|
|
|
klass = GST_BASE_AUDIO_VISUALIZER_CLASS (G_OBJECT_GET_CLASS (scope));
|
2011-05-27 08:14:19 +00:00
|
|
|
|
|
|
|
render = klass->render;
|
|
|
|
|
|
|
|
GST_LOG_OBJECT (scope, "chainfunc called");
|
|
|
|
|
|
|
|
/* resync on DISCONT */
|
|
|
|
if (GST_BUFFER_FLAG_IS_SET (buffer, GST_BUFFER_FLAG_DISCONT)) {
|
|
|
|
scope->next_ts = GST_CLOCK_TIME_NONE;
|
|
|
|
gst_adapter_clear (scope->adapter);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (GST_PAD_CAPS (scope->srcpad) == NULL) {
|
2011-06-04 11:33:29 +00:00
|
|
|
if (!gst_base_audio_visualizer_src_negotiate (scope))
|
2011-05-27 08:14:19 +00:00
|
|
|
return GST_FLOW_NOT_NEGOTIATED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Match timestamps from the incoming audio */
|
|
|
|
if (GST_BUFFER_TIMESTAMP (buffer) != GST_CLOCK_TIME_NONE)
|
|
|
|
scope->next_ts = GST_BUFFER_TIMESTAMP (buffer);
|
|
|
|
|
|
|
|
gst_adapter_push (scope->adapter, buffer);
|
|
|
|
|
|
|
|
/* this is what we want */
|
2011-05-27 20:12:00 +00:00
|
|
|
sbpf = scope->req_spf * scope->channels * sizeof (gint16);
|
2011-05-27 08:14:19 +00:00
|
|
|
|
|
|
|
inbuf = scope->inbuf;
|
|
|
|
/* FIXME: the timestamp in the adapter would be different */
|
|
|
|
gst_buffer_copy_metadata (inbuf, buffer, GST_BUFFER_COPY_ALL);
|
|
|
|
|
|
|
|
/* this is what we have */
|
|
|
|
avail = gst_adapter_available (scope->adapter);
|
2011-06-06 12:20:30 +00:00
|
|
|
GST_LOG_OBJECT (scope, "avail: %u, bpf: %u", avail, sbpf);
|
|
|
|
while (avail >= sbpf) {
|
2011-05-27 08:14:19 +00:00
|
|
|
GstBuffer *outbuf;
|
|
|
|
|
|
|
|
ret = gst_pad_alloc_buffer_and_set_caps (scope->srcpad,
|
|
|
|
GST_BUFFER_OFFSET_NONE,
|
2011-05-27 20:25:00 +00:00
|
|
|
scope->bpf, GST_PAD_CAPS (scope->srcpad), &outbuf);
|
2011-05-27 08:14:19 +00:00
|
|
|
|
|
|
|
/* no buffer allocated, we don't care why. */
|
|
|
|
if (ret != GST_FLOW_OK)
|
|
|
|
break;
|
|
|
|
|
2011-05-27 20:25:00 +00:00
|
|
|
/* sync controlled properties */
|
|
|
|
gst_object_sync_values (G_OBJECT (scope), scope->next_ts);
|
|
|
|
|
2011-05-27 08:14:19 +00:00
|
|
|
GST_BUFFER_TIMESTAMP (outbuf) = scope->next_ts;
|
|
|
|
GST_BUFFER_DURATION (outbuf) = scope->frame_duration;
|
2011-05-27 20:25:00 +00:00
|
|
|
if (scope->shader) {
|
|
|
|
memcpy (GST_BUFFER_DATA (outbuf), scope->pixelbuf, scope->bpf);
|
|
|
|
} else {
|
|
|
|
memset (GST_BUFFER_DATA (outbuf), 0, scope->bpf);
|
|
|
|
}
|
2011-05-27 08:14:19 +00:00
|
|
|
|
|
|
|
GST_BUFFER_DATA (inbuf) =
|
2011-05-27 20:12:00 +00:00
|
|
|
(guint8 *) gst_adapter_peek (scope->adapter, sbpf);
|
|
|
|
GST_BUFFER_SIZE (inbuf) = sbpf;
|
2011-05-27 08:14:19 +00:00
|
|
|
|
|
|
|
/* call class->render() vmethod */
|
2011-05-27 20:25:00 +00:00
|
|
|
if (render) {
|
2011-05-27 08:14:19 +00:00
|
|
|
if (!render (scope, inbuf, outbuf)) {
|
|
|
|
ret = GST_FLOW_ERROR;
|
2011-05-27 20:25:00 +00:00
|
|
|
} else {
|
|
|
|
/* run various post processing (shading and geometri transformation */
|
|
|
|
if (scope->shader) {
|
|
|
|
scope->shader (scope, GST_BUFFER_DATA (outbuf), scope->pixelbuf);
|
|
|
|
}
|
2011-05-27 08:14:19 +00:00
|
|
|
}
|
2011-05-27 20:25:00 +00:00
|
|
|
}
|
2011-05-27 08:14:19 +00:00
|
|
|
|
|
|
|
ret = gst_pad_push (scope->srcpad, outbuf);
|
|
|
|
outbuf = NULL;
|
|
|
|
|
2011-05-27 20:12:00 +00:00
|
|
|
GST_LOG_OBJECT (scope, "avail: %u, bpf: %u", avail, sbpf);
|
|
|
|
/* we want to take less or more, depending on spf : req_spf */
|
2011-06-06 12:20:30 +00:00
|
|
|
if (avail - sbpf >= sbpf) {
|
2011-05-27 20:12:00 +00:00
|
|
|
gst_adapter_flush (scope->adapter, sbpf);
|
2011-06-06 12:20:30 +00:00
|
|
|
} else if (avail - sbpf >= 0) {
|
|
|
|
/* just flush a bit and stop */
|
2011-05-27 20:12:00 +00:00
|
|
|
gst_adapter_flush (scope->adapter, (avail - sbpf));
|
2011-06-06 12:20:30 +00:00
|
|
|
break;
|
|
|
|
}
|
2011-05-27 20:12:00 +00:00
|
|
|
avail = gst_adapter_available (scope->adapter);
|
2011-05-27 08:14:19 +00:00
|
|
|
|
|
|
|
if (ret != GST_FLOW_OK)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (scope->next_ts != GST_CLOCK_TIME_NONE)
|
|
|
|
scope->next_ts += scope->frame_duration;
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_object_unref (scope);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstStateChangeReturn
|
2011-06-04 11:33:29 +00:00
|
|
|
gst_base_audio_visualizer_change_state (GstElement * element,
|
|
|
|
GstStateChange transition)
|
2011-05-27 08:14:19 +00:00
|
|
|
{
|
2011-06-04 11:33:29 +00:00
|
|
|
GstBaseAudioVisualizer *scope;
|
2011-05-27 08:14:19 +00:00
|
|
|
|
2011-06-04 11:33:29 +00:00
|
|
|
scope = GST_BASE_AUDIO_VISUALIZER (element);
|
2011-05-27 08:14:19 +00:00
|
|
|
|
|
|
|
switch (transition) {
|
|
|
|
case GST_STATE_CHANGE_READY_TO_PAUSED:
|
|
|
|
scope->next_ts = GST_CLOCK_TIME_NONE;
|
|
|
|
gst_adapter_clear (scope->adapter);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
|
|
|
|
}
|