2002-03-02 12:36:07 +00:00
|
|
|
/* gstmonoscope.c: implementation of monoscope drawing element
|
|
|
|
* Copyright (C) <2002> Richard Boulton <richard@tartarus.org>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2003-06-29 19:46:12 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2003-11-07 12:47:01 +00:00
|
|
|
|
2002-03-02 12:36:07 +00:00
|
|
|
#include <gst/gst.h>
|
2003-07-06 20:49:52 +00:00
|
|
|
#include <gst/video/video.h>
|
2003-12-22 01:47:09 +00:00
|
|
|
#include <gst/audio/audio.h>
|
2002-03-02 12:36:07 +00:00
|
|
|
#include "monoscope.h"
|
|
|
|
|
ext/lame/gstlame.c: send tag events downstream
Original commit message from CVS:
2004-07-28 Zaheer Abbas Merali <zaheerabbas at merali dot org>
* ext/lame/gstlame.c: (gst_lame_chain): send tag events downstream
* ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
(gst_shout2send_get_type), (gst_shout2send_set_clock),
(gst_shout2send_class_init), (gst_shout2send_init),
(set_shout_metadata), (gst_shout2send_set_metadata),
(gst_shout2send_chain), (gst_shout2send_set_property),
(gst_shout2send_get_property), (gst_shout2send_connect),
(gst_shout2send_change_state):
* ext/shout2/gstshout2.h:
- fix for sending mp3 audio to icecast2 server, if pad link function not
called before PAUSED state
- added option to use GStreamer clock sync (as opposed to libshout's own sync)
- added tagging support for mp3 audio broadcasted
* gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
debug info
2004-07-28 20:26:31 +00:00
|
|
|
GST_DEBUG_CATEGORY (monoscope_debug);
|
|
|
|
#define GST_CAT_DEFAULT monoscope_debug
|
|
|
|
|
|
|
|
|
2002-03-02 12:36:07 +00:00
|
|
|
#define GST_TYPE_MONOSCOPE (gst_monoscope_get_type())
|
|
|
|
#define GST_MONOSCOPE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_MONOSCOPE,GstMonoscope))
|
|
|
|
#define GST_MONOSCOPE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_MONOSCOPE,GstMonoscope))
|
|
|
|
#define GST_IS_MONOSCOPE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_MONOSCOPE))
|
|
|
|
#define GST_IS_MONOSCOPE_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_MONOSCOPE))
|
|
|
|
|
|
|
|
typedef struct _GstMonoscope GstMonoscope;
|
|
|
|
typedef struct _GstMonoscopeClass GstMonoscopeClass;
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
struct _GstMonoscope
|
|
|
|
{
|
2002-03-02 12:36:07 +00:00
|
|
|
GstElement element;
|
|
|
|
|
|
|
|
/* pads */
|
2004-03-14 22:34:33 +00:00
|
|
|
GstPad *sinkpad, *srcpad;
|
2002-03-02 12:36:07 +00:00
|
|
|
|
2002-03-08 16:59:38 +00:00
|
|
|
/* the timestamp of the next frame */
|
2002-03-02 12:36:07 +00:00
|
|
|
guint64 next_time;
|
2002-03-08 16:43:08 +00:00
|
|
|
gint16 datain[512];
|
2002-03-02 12:36:07 +00:00
|
|
|
|
2002-03-08 16:59:38 +00:00
|
|
|
/* video state */
|
2003-12-22 01:47:09 +00:00
|
|
|
gdouble fps;
|
2002-03-02 12:36:07 +00:00
|
|
|
gint width;
|
|
|
|
gint height;
|
|
|
|
gboolean first_buffer;
|
2002-03-08 16:43:08 +00:00
|
|
|
|
2002-03-08 16:59:38 +00:00
|
|
|
/* visualisation state */
|
2004-03-14 22:34:33 +00:00
|
|
|
struct monoscope_state *visstate;
|
2002-03-02 12:36:07 +00:00
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
struct _GstMonoscopeClass
|
|
|
|
{
|
2002-03-02 12:36:07 +00:00
|
|
|
GstElementClass parent_class;
|
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
GType gst_monoscope_get_type (void);
|
2002-03-02 12:36:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* elementfactory information */
|
Define GstElementDetails as const and also static (when defined as global)
Original commit message from CVS:
* ext/aalib/gstaasink.c:
* ext/annodex/gstcmmldec.c:
* ext/annodex/gstcmmlenc.c:
* ext/cairo/gsttextoverlay.c:
* ext/cairo/gsttimeoverlay.c:
* ext/cdio/gstcdiocddasrc.c:
* ext/dv/gstdvdec.c:
* ext/dv/gstdvdemux.c:
* ext/esd/esdmon.c:
* ext/esd/esdsink.c:
* ext/flac/gstflacenc.c:
* ext/flac/gstflactag.c:
* ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init):
* ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init):
* ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init):
* ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init):
* ext/gdk_pixbuf/pixbufscale.c:
* ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
* ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
* ext/jpeg/gstjpegdec.c:
* ext/jpeg/gstjpegenc.c:
* ext/jpeg/gstsmokedec.c:
* ext/jpeg/gstsmokeenc.c:
* ext/libcaca/gstcacasink.c:
* ext/libmng/gstmngdec.c:
* ext/libmng/gstmngenc.c:
* ext/libpng/gstpngdec.c:
* ext/libpng/gstpngenc.c:
* ext/mikmod/gstmikmod.c:
* ext/raw1394/gstdv1394src.c:
* ext/shout2/gstshout2.c: (gst_shout2send_init):
* ext/shout2/gstshout2.h:
* ext/speex/gstspeexdec.c:
* ext/speex/gstspeexenc.c:
* gst/alpha/gstalpha.c:
* gst/alpha/gstalphacolor.c:
* gst/apetag/gstapedemux.c:
* gst/auparse/gstauparse.c:
* gst/autodetect/gstautoaudiosink.c:
(gst_auto_audio_sink_base_init):
* gst/autodetect/gstautovideosink.c:
(gst_auto_video_sink_base_init):
* gst/avi/gstavidemux.c: (gst_avi_demux_base_init):
* gst/avi/gstavimux.c: (gst_avimux_base_init):
* gst/cutter/gstcutter.c:
* gst/debug/breakmydata.c:
* gst/debug/efence.c:
* gst/debug/gstnavigationtest.c:
* gst/debug/gstnavseek.c:
* gst/debug/negotiation.c:
* gst/debug/progressreport.c:
* gst/debug/testplugin.c:
* gst/effectv/gstaging.c:
* gst/effectv/gstdice.c:
* gst/effectv/gstedge.c:
* gst/effectv/gstquark.c:
* gst/effectv/gstrev.c:
* gst/effectv/gstshagadelic.c:
* gst/effectv/gstvertigo.c:
* gst/effectv/gstwarp.c:
* gst/flx/gstflxdec.c:
* gst/goom/gstgoom.c:
* gst/icydemux/gsticydemux.c:
* gst/id3demux/gstid3demux.c:
* gst/interleave/deinterleave.c:
* gst/interleave/interleave.c:
* gst/law/alaw-decode.c: (gst_alawdec_base_init):
* gst/law/alaw-encode.c: (gst_alawenc_base_init):
* gst/law/mulaw-decode.c: (gst_mulawdec_base_init):
* gst/law/mulaw-encode.c: (gst_mulawenc_base_init):
* gst/level/gstlevel.c:
* gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init):
* gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init):
* gst/median/gstmedian.c:
* gst/monoscope/gstmonoscope.c:
* gst/multipart/multipartdemux.c:
* gst/multipart/multipartmux.c:
* gst/oldcore/gstaggregator.c:
* gst/oldcore/gstfdsink.c:
* gst/oldcore/gstmd5sink.c:
* gst/oldcore/gstmultifilesrc.c:
* gst/oldcore/gstpipefilter.c:
* gst/oldcore/gstshaper.c:
* gst/oldcore/gststatistics.c:
* gst/rtp/gstasteriskh263.c:
* gst/rtp/gstrtpL16depay.c:
* gst/rtp/gstrtpL16pay.c:
* gst/rtp/gstrtpamrdepay.c:
* gst/rtp/gstrtpamrpay.c:
* gst/rtp/gstrtpdepay.c:
* gst/rtp/gstrtpgsmpay.c:
* gst/rtp/gstrtph263pay.c:
* gst/rtp/gstrtph263pdepay.c:
* gst/rtp/gstrtph263ppay.c:
* gst/rtp/gstrtpilbcdepay.c:
* gst/rtp/gstrtpmp4gpay.c:
* gst/rtp/gstrtpmp4vdepay.c:
* gst/rtp/gstrtpmp4vpay.c:
* gst/rtp/gstrtpmpadepay.c:
* gst/rtp/gstrtpmpapay.c:
* gst/rtp/gstrtppcmadepay.c:
* gst/rtp/gstrtppcmapay.c:
* gst/rtp/gstrtppcmudepay.c:
* gst/rtp/gstrtppcmupay.c:
* gst/rtp/gstrtpspeexdepay.c:
* gst/rtp/gstrtpspeexpay.c:
* gst/rtsp/gstrtpdec.c:
* gst/rtsp/gstrtspsrc.c:
* gst/smpte/gstsmpte.c:
* gst/udp/gstdynudpsink.c:
* gst/udp/gstmultiudpsink.c:
* gst/udp/gstudpsink.c:
* gst/udp/gstudpsrc.c:
* gst/videobox/gstvideobox.c:
* gst/videofilter/gstgamma.c: (gst_gamma_base_init):
* gst/videofilter/gstvideobalance.c:
* gst/videofilter/gstvideoflip.c:
* gst/videofilter/gstvideotemplate.c:
(gst_videotemplate_base_init):
* gst/videomixer/videomixer.c:
* gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
(gst_wavparse_class_init), (gst_wavparse_dispose),
(gst_wavparse_reset), (gst_wavparse_init),
(gst_wavparse_perform_seek), (gst_wavparse_peek_chunk_info),
(gst_wavparse_peek_chunk), (gst_wavparse_stream_headers),
(gst_wavparse_parse_stream_init), (gst_wavparse_send_event),
(gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
(gst_wavparse_chain), (gst_wavparse_srcpad_event),
(gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull),
(gst_wavparse_change_state):
* gst/wavparse/gstwavparse.h:
* sys/oss/gstossmixerelement.c:
* sys/oss/gstosssink.c:
* sys/oss/gstosssrc.c:
* sys/osxaudio/gstosxaudioelement.c:
* sys/osxaudio/gstosxaudiosink.c:
* sys/osxaudio/gstosxaudiosrc.c:
* sys/sunaudio/gstsunaudiomixer.c:
* sys/sunaudio/gstsunaudiosink.c:
Define GstElementDetails as const and also static (when defined as
global)
2006-04-25 21:39:46 +00:00
|
|
|
static const GstElementDetails gst_monoscope_details =
|
2006-03-30 15:37:05 +00:00
|
|
|
GST_ELEMENT_DETAILS ("Monoscope",
|
|
|
|
"Visualization",
|
|
|
|
"Displays a highly stabilised waveform of audio input",
|
|
|
|
"Richard Boulton <richard@tartarus.org>");
|
2002-03-02 12:36:07 +00:00
|
|
|
|
|
|
|
/* signals and args */
|
2004-03-14 22:34:33 +00:00
|
|
|
enum
|
|
|
|
{
|
2002-03-02 12:36:07 +00:00
|
|
|
/* FILL ME */
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
enum
|
|
|
|
{
|
2004-05-21 22:39:30 +00:00
|
|
|
ARG_0
|
|
|
|
/* FILL ME */
|
2002-03-02 12:36:07 +00:00
|
|
|
};
|
|
|
|
|
2004-04-27 16:26:53 +00:00
|
|
|
#if G_BYTE_ORDER == G_BIG_ENDIAN
|
2004-03-14 22:34:33 +00:00
|
|
|
static GstStaticPadTemplate src_template = GST_STATIC_PAD_TEMPLATE ("src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
2004-04-27 15:59:57 +00:00
|
|
|
GST_STATIC_CAPS ("video/x-raw-rgb, "
|
|
|
|
"bpp = (int) 32, "
|
2004-04-27 16:26:53 +00:00
|
|
|
"depth = (int) 24, "
|
|
|
|
"endianness = (int) BIG_ENDIAN, "
|
2004-04-27 15:59:57 +00:00
|
|
|
"red_mask = (int) " GST_VIDEO_BYTE2_MASK_32 ", "
|
|
|
|
"green_mask = (int) " GST_VIDEO_BYTE3_MASK_32 ", "
|
|
|
|
"blue_mask = (int) " GST_VIDEO_BYTE4_MASK_32 ", "
|
2004-04-27 16:26:53 +00:00
|
|
|
"width = (int)256, "
|
|
|
|
"height = (int)128, " "framerate = " GST_VIDEO_FPS_RANGE)
|
|
|
|
);
|
2004-04-27 15:59:57 +00:00
|
|
|
#else
|
2004-04-27 16:26:53 +00:00
|
|
|
static GstStaticPadTemplate src_template = GST_STATIC_PAD_TEMPLATE ("src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS ("video/x-raw-rgb, "
|
|
|
|
"bpp = (int) 32, "
|
|
|
|
"depth = (int) 24, "
|
|
|
|
"endianness = (int) BIG_ENDIAN, "
|
2004-04-27 15:59:57 +00:00
|
|
|
"red_mask = (int) " GST_VIDEO_BYTE3_MASK_32 ", "
|
|
|
|
"green_mask = (int) " GST_VIDEO_BYTE2_MASK_32 ", "
|
|
|
|
"blue_mask = (int) " GST_VIDEO_BYTE1_MASK_32 ", "
|
|
|
|
"width = (int)256, "
|
|
|
|
"height = (int)128, " "framerate = " GST_VIDEO_FPS_RANGE)
|
2004-03-14 22:34:33 +00:00
|
|
|
);
|
2004-04-27 16:26:53 +00:00
|
|
|
#endif
|
2003-12-22 01:47:09 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS (GST_AUDIO_INT_STANDARD_PAD_TEMPLATE_CAPS)
|
|
|
|
);
|
2002-03-02 12:36:07 +00:00
|
|
|
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static void gst_monoscope_class_init (GstMonoscopeClass * klass);
|
|
|
|
static void gst_monoscope_base_init (GstMonoscopeClass * klass);
|
|
|
|
static void gst_monoscope_init (GstMonoscope * monoscope);
|
2002-03-02 12:36:07 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static void gst_monoscope_chain (GstPad * pad, GstData * _data);
|
2002-03-02 12:36:07 +00:00
|
|
|
|
2003-07-06 20:49:52 +00:00
|
|
|
static GstPadLinkReturn
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_monoscope_srcconnect (GstPad * pad, const GstCaps * caps);
|
2002-03-02 12:36:07 +00:00
|
|
|
|
|
|
|
static GstElementClass *parent_class = NULL;
|
|
|
|
|
|
|
|
GType
|
|
|
|
gst_monoscope_get_type (void)
|
|
|
|
{
|
|
|
|
static GType type = 0;
|
|
|
|
|
|
|
|
if (!type) {
|
|
|
|
static const GTypeInfo info = {
|
2004-03-14 22:34:33 +00:00
|
|
|
sizeof (GstMonoscopeClass),
|
|
|
|
(GBaseInitFunc) gst_monoscope_base_init,
|
|
|
|
NULL,
|
2002-03-02 12:36:07 +00:00
|
|
|
(GClassInitFunc) gst_monoscope_class_init,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
sizeof (GstMonoscope),
|
|
|
|
0,
|
|
|
|
(GInstanceInitFunc) gst_monoscope_init,
|
|
|
|
};
|
2004-03-15 19:32:27 +00:00
|
|
|
|
2002-03-02 12:36:07 +00:00
|
|
|
type = g_type_register_static (GST_TYPE_ELEMENT, "GstMonoscope", &info, 0);
|
|
|
|
}
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
2003-11-02 21:25:42 +00:00
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_monoscope_base_init (GstMonoscopeClass * klass)
|
2003-11-02 21:25:42 +00:00
|
|
|
{
|
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
|
|
|
|
|
|
|
|
gst_element_class_add_pad_template (element_class,
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_static_pad_template_get (&src_template));
|
2003-11-02 21:25:42 +00:00
|
|
|
gst_element_class_add_pad_template (element_class,
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_static_pad_template_get (&sink_template));
|
2003-11-02 21:25:42 +00:00
|
|
|
gst_element_class_set_details (element_class, &gst_monoscope_details);
|
|
|
|
}
|
|
|
|
|
2002-03-02 12:36:07 +00:00
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_monoscope_class_init (GstMonoscopeClass * klass)
|
2002-03-02 12:36:07 +00:00
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
GstElementClass *gstelement_class;
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
gobject_class = (GObjectClass *) klass;
|
|
|
|
gstelement_class = (GstElementClass *) klass;
|
2002-03-02 12:36:07 +00:00
|
|
|
|
2006-04-08 21:21:45 +00:00
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
ext/lame/gstlame.c: send tag events downstream
Original commit message from CVS:
2004-07-28 Zaheer Abbas Merali <zaheerabbas at merali dot org>
* ext/lame/gstlame.c: (gst_lame_chain): send tag events downstream
* ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
(gst_shout2send_get_type), (gst_shout2send_set_clock),
(gst_shout2send_class_init), (gst_shout2send_init),
(set_shout_metadata), (gst_shout2send_set_metadata),
(gst_shout2send_chain), (gst_shout2send_set_property),
(gst_shout2send_get_property), (gst_shout2send_connect),
(gst_shout2send_change_state):
* ext/shout2/gstshout2.h:
- fix for sending mp3 audio to icecast2 server, if pad link function not
called before PAUSED state
- added option to use GStreamer clock sync (as opposed to libshout's own sync)
- added tagging support for mp3 audio broadcasted
* gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
debug info
2004-07-28 20:26:31 +00:00
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_INIT (monoscope_debug, "monoscope", 0,
|
|
|
|
"monoscope element");
|
2002-03-02 12:36:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_monoscope_init (GstMonoscope * monoscope)
|
2002-03-02 12:36:07 +00:00
|
|
|
{
|
|
|
|
/* create the sink and src pads */
|
2004-03-14 22:34:33 +00:00
|
|
|
monoscope->sinkpad =
|
|
|
|
gst_pad_new_from_template (gst_static_pad_template_get (&sink_template),
|
|
|
|
"sink");
|
|
|
|
monoscope->srcpad =
|
|
|
|
gst_pad_new_from_template (gst_static_pad_template_get (&src_template),
|
|
|
|
"src");
|
2002-03-02 12:36:07 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (monoscope), monoscope->sinkpad);
|
|
|
|
gst_element_add_pad (GST_ELEMENT (monoscope), monoscope->srcpad);
|
|
|
|
|
|
|
|
gst_pad_set_chain_function (monoscope->sinkpad, gst_monoscope_chain);
|
2003-07-06 20:49:52 +00:00
|
|
|
gst_pad_set_link_function (monoscope->srcpad, gst_monoscope_srcconnect);
|
2002-03-02 12:36:07 +00:00
|
|
|
|
|
|
|
monoscope->next_time = 0;
|
|
|
|
|
2002-03-08 16:59:38 +00:00
|
|
|
/* reset the initial video state */
|
2002-03-02 12:36:07 +00:00
|
|
|
monoscope->first_buffer = TRUE;
|
|
|
|
monoscope->width = 256;
|
|
|
|
monoscope->height = 128;
|
2004-03-15 19:32:27 +00:00
|
|
|
monoscope->fps = 25.; /* desired frame rate */
|
2002-03-02 12:36:07 +00:00
|
|
|
}
|
|
|
|
|
2003-07-06 20:49:52 +00:00
|
|
|
static GstPadLinkReturn
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_monoscope_srcconnect (GstPad * pad, const GstCaps * caps)
|
2003-07-06 20:49:52 +00:00
|
|
|
{
|
|
|
|
GstMonoscope *monoscope = GST_MONOSCOPE (gst_pad_get_parent (pad));
|
2003-12-22 01:47:09 +00:00
|
|
|
GstStructure *structure;
|
2003-07-06 20:49:52 +00:00
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
|
|
|
|
|
|
|
gst_structure_get_int (structure, "width", &monoscope->width);
|
|
|
|
gst_structure_get_int (structure, "height", &monoscope->height);
|
|
|
|
gst_structure_get_double (structure, "framerate", &monoscope->fps);
|
2003-07-06 20:49:52 +00:00
|
|
|
|
close #333784 unref the result of gst_pad_get_parent() by: Christophe Fergeau.
Original commit message from CVS:
* ext/cairo/gsttextoverlay.c: (gst_text_overlay_setcaps):
* ext/esd/esdmon.c: (gst_esdmon_get):
* ext/flac/gstflactag.c: (gst_flac_tag_chain):
* ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
(gst_gdk_pixbuf_sink_getcaps):
* ext/jpeg/gstjpegenc.c: (gst_jpegenc_getcaps),
(gst_jpegenc_setcaps):
* ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
* ext/jpeg/gstsmokeenc.c: (gst_smokeenc_getcaps),
(gst_smokeenc_setcaps):
* ext/libmng/gstmngdec.c: (gst_mngdec_sinklink),
(gst_mngdec_src_getcaps):
* ext/libmng/gstmngenc.c: (gst_mngenc_sinklink),
(gst_mngenc_chain):
* ext/libpng/gstpngenc.c: (gst_pngenc_setcaps):
* ext/mikmod/gstmikmod.c: (gst_mikmod_srclink):
* ext/speex/gstspeexdec.c: (speex_dec_convert),
(speex_dec_src_event), (speex_dec_chain):
* gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect),
(gst_avimux_audsinkconnect), (gst_avimux_handle_event):
* gst/debug/negotiation.c: (gst_negotiation_getcaps),
(gst_negotiation_pad_link), (gst_negotiation_chain):
* gst/flx/gstflxdec.c: (gst_flxdec_src_query_handler),
(gst_flxdec_chain):
* gst/interleave/deinterleave.c: (deinterleave_sink_link),
(deinterleave_chain):
* gst/law/mulaw-encode.c: (mulawenc_setcaps):
* gst/median/gstmedian.c: (gst_median_link):
* gst/monoscope/gstmonoscope.c: (gst_monoscope_srcconnect),
(gst_monoscope_chain):
* gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_sinkconnect):
* gst/wavenc/gstwavenc.c: (gst_wavenc_sink_setcaps):
* sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_chain):
* sys/osxaudio/gstosxaudiosrc.c: (gst_osxaudiosrc_get):
close #333784 unref the result of gst_pad_get_parent()
by: Christophe Fergeau.
2006-03-13 15:49:08 +00:00
|
|
|
gst_object_unref (monoscope);
|
|
|
|
|
2004-01-12 02:01:51 +00:00
|
|
|
return GST_PAD_LINK_OK;
|
2003-07-06 20:49:52 +00:00
|
|
|
}
|
|
|
|
|
2002-03-02 12:36:07 +00:00
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_monoscope_chain (GstPad * pad, GstData * _data)
|
2002-03-02 12:36:07 +00:00
|
|
|
{
|
2003-10-08 16:08:18 +00:00
|
|
|
GstBuffer *bufin = GST_BUFFER (_data);
|
2002-03-02 12:36:07 +00:00
|
|
|
GstMonoscope *monoscope;
|
|
|
|
GstBuffer *bufout;
|
|
|
|
guint32 samples_in;
|
|
|
|
gint16 *data;
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
monoscope = GST_MONOSCOPE (gst_pad_get_parent (pad));
|
|
|
|
|
2003-06-29 19:46:12 +00:00
|
|
|
GST_DEBUG ("Monoscope: chainfunc called");
|
2002-03-02 12:36:07 +00:00
|
|
|
|
|
|
|
samples_in = GST_BUFFER_SIZE (bufin) / sizeof (gint16);
|
|
|
|
|
2003-06-29 19:46:12 +00:00
|
|
|
GST_DEBUG ("input buffer has %d samples", samples_in);
|
2002-03-02 12:36:07 +00:00
|
|
|
|
|
|
|
/* FIXME: should really select the first 1024 samples after the timestamp. */
|
|
|
|
if (GST_BUFFER_TIMESTAMP (bufin) < monoscope->next_time || samples_in < 1024) {
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_DEBUG ("timestamp is %" G_GUINT64_FORMAT ": want >= %" G_GUINT64_FORMAT,
|
2004-03-15 19:32:27 +00:00
|
|
|
GST_BUFFER_TIMESTAMP (bufin), monoscope->next_time);
|
2002-03-02 12:36:07 +00:00
|
|
|
gst_buffer_unref (bufin);
|
close #333784 unref the result of gst_pad_get_parent() by: Christophe Fergeau.
Original commit message from CVS:
* ext/cairo/gsttextoverlay.c: (gst_text_overlay_setcaps):
* ext/esd/esdmon.c: (gst_esdmon_get):
* ext/flac/gstflactag.c: (gst_flac_tag_chain):
* ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
(gst_gdk_pixbuf_sink_getcaps):
* ext/jpeg/gstjpegenc.c: (gst_jpegenc_getcaps),
(gst_jpegenc_setcaps):
* ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
* ext/jpeg/gstsmokeenc.c: (gst_smokeenc_getcaps),
(gst_smokeenc_setcaps):
* ext/libmng/gstmngdec.c: (gst_mngdec_sinklink),
(gst_mngdec_src_getcaps):
* ext/libmng/gstmngenc.c: (gst_mngenc_sinklink),
(gst_mngenc_chain):
* ext/libpng/gstpngenc.c: (gst_pngenc_setcaps):
* ext/mikmod/gstmikmod.c: (gst_mikmod_srclink):
* ext/speex/gstspeexdec.c: (speex_dec_convert),
(speex_dec_src_event), (speex_dec_chain):
* gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect),
(gst_avimux_audsinkconnect), (gst_avimux_handle_event):
* gst/debug/negotiation.c: (gst_negotiation_getcaps),
(gst_negotiation_pad_link), (gst_negotiation_chain):
* gst/flx/gstflxdec.c: (gst_flxdec_src_query_handler),
(gst_flxdec_chain):
* gst/interleave/deinterleave.c: (deinterleave_sink_link),
(deinterleave_chain):
* gst/law/mulaw-encode.c: (mulawenc_setcaps):
* gst/median/gstmedian.c: (gst_median_link):
* gst/monoscope/gstmonoscope.c: (gst_monoscope_srcconnect),
(gst_monoscope_chain):
* gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_sinkconnect):
* gst/wavenc/gstwavenc.c: (gst_wavenc_sink_setcaps):
* sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_chain):
* sys/osxaudio/gstosxaudiosrc.c: (gst_osxaudiosrc_get):
close #333784 unref the result of gst_pad_get_parent()
by: Christophe Fergeau.
2006-03-13 15:49:08 +00:00
|
|
|
gst_object_unref (monoscope);
|
2002-03-02 12:36:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
data = (gint16 *) GST_BUFFER_DATA (bufin);
|
2002-03-08 16:59:38 +00:00
|
|
|
/* FIXME: Select samples in a better way. */
|
2004-03-14 22:34:33 +00:00
|
|
|
for (i = 0; i < 512; i++) {
|
2002-03-08 16:43:08 +00:00
|
|
|
monoscope->datain[i] = *data++;
|
2002-03-02 12:36:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (monoscope->first_buffer) {
|
2002-03-08 16:43:08 +00:00
|
|
|
monoscope->visstate = monoscope_init (monoscope->width, monoscope->height);
|
2004-03-14 22:34:33 +00:00
|
|
|
g_assert (monoscope->visstate != 0);
|
2003-06-29 19:46:12 +00:00
|
|
|
GST_DEBUG ("making new pad");
|
2004-01-12 02:01:51 +00:00
|
|
|
if (!gst_pad_is_negotiated (monoscope->srcpad)) {
|
|
|
|
if (gst_pad_renegotiate (monoscope->srcpad) <= 0) {
|
2004-03-15 19:32:27 +00:00
|
|
|
GST_ELEMENT_ERROR (monoscope, CORE, NEGOTIATION, (NULL), (NULL));
|
close #333784 unref the result of gst_pad_get_parent() by: Christophe Fergeau.
Original commit message from CVS:
* ext/cairo/gsttextoverlay.c: (gst_text_overlay_setcaps):
* ext/esd/esdmon.c: (gst_esdmon_get):
* ext/flac/gstflactag.c: (gst_flac_tag_chain):
* ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
(gst_gdk_pixbuf_sink_getcaps):
* ext/jpeg/gstjpegenc.c: (gst_jpegenc_getcaps),
(gst_jpegenc_setcaps):
* ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
* ext/jpeg/gstsmokeenc.c: (gst_smokeenc_getcaps),
(gst_smokeenc_setcaps):
* ext/libmng/gstmngdec.c: (gst_mngdec_sinklink),
(gst_mngdec_src_getcaps):
* ext/libmng/gstmngenc.c: (gst_mngenc_sinklink),
(gst_mngenc_chain):
* ext/libpng/gstpngenc.c: (gst_pngenc_setcaps):
* ext/mikmod/gstmikmod.c: (gst_mikmod_srclink):
* ext/speex/gstspeexdec.c: (speex_dec_convert),
(speex_dec_src_event), (speex_dec_chain):
* gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect),
(gst_avimux_audsinkconnect), (gst_avimux_handle_event):
* gst/debug/negotiation.c: (gst_negotiation_getcaps),
(gst_negotiation_pad_link), (gst_negotiation_chain):
* gst/flx/gstflxdec.c: (gst_flxdec_src_query_handler),
(gst_flxdec_chain):
* gst/interleave/deinterleave.c: (deinterleave_sink_link),
(deinterleave_chain):
* gst/law/mulaw-encode.c: (mulawenc_setcaps):
* gst/median/gstmedian.c: (gst_median_link):
* gst/monoscope/gstmonoscope.c: (gst_monoscope_srcconnect),
(gst_monoscope_chain):
* gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_sinkconnect):
* gst/wavenc/gstwavenc.c: (gst_wavenc_sink_setcaps):
* sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_chain):
* sys/osxaudio/gstosxaudiosrc.c: (gst_osxaudiosrc_get):
close #333784 unref the result of gst_pad_get_parent()
by: Christophe Fergeau.
2006-03-13 15:49:08 +00:00
|
|
|
gst_object_unref (monoscope);
|
2004-03-15 19:32:27 +00:00
|
|
|
return;
|
2003-07-06 20:49:52 +00:00
|
|
|
}
|
2002-03-02 12:36:07 +00:00
|
|
|
}
|
|
|
|
monoscope->first_buffer = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
bufout = gst_buffer_new ();
|
|
|
|
GST_BUFFER_SIZE (bufout) = monoscope->width * monoscope->height * 4;
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_BUFFER_DATA (bufout) =
|
|
|
|
(guchar *) monoscope_update (monoscope->visstate, monoscope->datain);
|
2002-03-02 12:36:07 +00:00
|
|
|
GST_BUFFER_TIMESTAMP (bufout) = monoscope->next_time;
|
|
|
|
GST_BUFFER_FLAG_SET (bufout, GST_BUFFER_DONTFREE);
|
|
|
|
|
2002-06-02 13:25:40 +00:00
|
|
|
monoscope->next_time += GST_SECOND / monoscope->fps;
|
2002-03-02 12:36:07 +00:00
|
|
|
|
2003-10-08 16:08:18 +00:00
|
|
|
gst_pad_push (monoscope->srcpad, GST_DATA (bufout));
|
2002-03-02 12:36:07 +00:00
|
|
|
|
|
|
|
gst_buffer_unref (bufin);
|
close #333784 unref the result of gst_pad_get_parent() by: Christophe Fergeau.
Original commit message from CVS:
* ext/cairo/gsttextoverlay.c: (gst_text_overlay_setcaps):
* ext/esd/esdmon.c: (gst_esdmon_get):
* ext/flac/gstflactag.c: (gst_flac_tag_chain):
* ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
(gst_gdk_pixbuf_sink_getcaps):
* ext/jpeg/gstjpegenc.c: (gst_jpegenc_getcaps),
(gst_jpegenc_setcaps):
* ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
* ext/jpeg/gstsmokeenc.c: (gst_smokeenc_getcaps),
(gst_smokeenc_setcaps):
* ext/libmng/gstmngdec.c: (gst_mngdec_sinklink),
(gst_mngdec_src_getcaps):
* ext/libmng/gstmngenc.c: (gst_mngenc_sinklink),
(gst_mngenc_chain):
* ext/libpng/gstpngenc.c: (gst_pngenc_setcaps):
* ext/mikmod/gstmikmod.c: (gst_mikmod_srclink):
* ext/speex/gstspeexdec.c: (speex_dec_convert),
(speex_dec_src_event), (speex_dec_chain):
* gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect),
(gst_avimux_audsinkconnect), (gst_avimux_handle_event):
* gst/debug/negotiation.c: (gst_negotiation_getcaps),
(gst_negotiation_pad_link), (gst_negotiation_chain):
* gst/flx/gstflxdec.c: (gst_flxdec_src_query_handler),
(gst_flxdec_chain):
* gst/interleave/deinterleave.c: (deinterleave_sink_link),
(deinterleave_chain):
* gst/law/mulaw-encode.c: (mulawenc_setcaps):
* gst/median/gstmedian.c: (gst_median_link):
* gst/monoscope/gstmonoscope.c: (gst_monoscope_srcconnect),
(gst_monoscope_chain):
* gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_sinkconnect):
* gst/wavenc/gstwavenc.c: (gst_wavenc_sink_setcaps):
* sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_chain):
* sys/osxaudio/gstosxaudiosrc.c: (gst_osxaudiosrc_get):
close #333784 unref the result of gst_pad_get_parent()
by: Christophe Fergeau.
2006-03-13 15:49:08 +00:00
|
|
|
gst_object_unref (monoscope);
|
2002-03-02 12:36:07 +00:00
|
|
|
|
2003-06-29 19:46:12 +00:00
|
|
|
GST_DEBUG ("Monoscope: exiting chainfunc");
|
2002-03-02 12:36:07 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2004-03-14 22:34:33 +00:00
|
|
|
plugin_init (GstPlugin * plugin)
|
2002-03-02 12:36:07 +00:00
|
|
|
{
|
2004-03-14 22:34:33 +00:00
|
|
|
return gst_element_register (plugin, "monoscope",
|
|
|
|
GST_RANK_NONE, GST_TYPE_MONOSCOPE);
|
2002-03-02 12:36:07 +00:00
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
|
|
|
"monoscope",
|
|
|
|
"Monoscope visualization",
|
2005-11-14 02:13:35 +00:00
|
|
|
plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);
|