2003-12-15 22:27:28 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2008-05-28 13:28:20 +00:00
|
|
|
/**
|
|
|
|
* SECTION:element-cacasink
|
|
|
|
* @see_also: #GstAASink
|
|
|
|
*
|
|
|
|
* Displays video as color ascii art.
|
2009-01-28 15:46:06 +00:00
|
|
|
*
|
|
|
|
* <refsect2>
|
2008-05-28 13:28:20 +00:00
|
|
|
* <title>Example launch line</title>
|
2009-01-28 15:46:06 +00:00
|
|
|
* |[
|
2008-05-28 13:28:20 +00:00
|
|
|
* CACA_GEOMETRY=160x60 CACA_FONT=5x7 gst-launch filesrc location=test.avi ! decodebin ! ffmpegcolorspace ! cacasink
|
2009-01-28 15:46:06 +00:00
|
|
|
* ]| This pipeline renders a video to ascii art into a separate window using a
|
2008-05-28 13:28:20 +00:00
|
|
|
* small font and specifying the ascii resolution.
|
2009-01-28 15:46:06 +00:00
|
|
|
* |[
|
2008-05-28 13:28:20 +00:00
|
|
|
* CACA_DRIVER=ncurses gst-launch filesrc location=test.avi ! decodebin ! ffmpegcolorspace ! cacasink
|
2009-01-28 15:46:06 +00:00
|
|
|
* ]| This pipeline renders a video to ascii art into the current terminal.
|
2008-05-28 13:28:20 +00:00
|
|
|
* </refsect2>
|
|
|
|
*/
|
2003-12-15 22:27:28 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
|
|
|
#include "gstcacasink.h"
|
|
|
|
|
2009-01-28 15:46:06 +00:00
|
|
|
#define GST_CACA_DEFAULT_SCREEN_WIDTH 80
|
|
|
|
#define GST_CACA_DEFAULT_SCREEN_HEIGHT 25
|
|
|
|
#define GST_CACA_DEFAULT_BPP 24
|
|
|
|
#define GST_CACA_DEFAULT_RED_MASK GST_VIDEO_BYTE1_MASK_32_INT
|
|
|
|
#define GST_CACA_DEFAULT_GREEN_MASK GST_VIDEO_BYTE2_MASK_32_INT
|
|
|
|
#define GST_CACA_DEFAULT_BLUE_MASK GST_VIDEO_BYTE3_MASK_32_INT
|
|
|
|
|
|
|
|
//#define GST_CACA_DEFAULT_RED_MASK R_MASK_32_REVERSE_INT
|
|
|
|
//#define GST_CACA_DEFAULT_GREEN_MASK G_MASK_32_REVERSE_INT
|
|
|
|
//#define GST_CACA_DEFAULT_BLUE_MASK B_MASK_32_REVERSE_INT
|
|
|
|
|
2003-12-15 22:27:28 +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_cacasink_details =
|
2006-03-30 15:37:05 +00:00
|
|
|
GST_ELEMENT_DETAILS ("A colored ASCII art video sink",
|
|
|
|
"Sink/Video",
|
|
|
|
"A colored ASCII art videosink",
|
|
|
|
"Zeeshan Ali <zak147@yahoo.com>");
|
2003-12-15 22:27:28 +00:00
|
|
|
|
|
|
|
/* cacasink signals and args */
|
2004-03-14 22:34:33 +00:00
|
|
|
enum
|
|
|
|
{
|
2003-12-15 22:27:28 +00:00
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
enum
|
|
|
|
{
|
2003-12-15 22:27:28 +00:00
|
|
|
ARG_0,
|
2004-01-11 22:16:49 +00:00
|
|
|
ARG_SCREEN_WIDTH,
|
|
|
|
ARG_SCREEN_HEIGHT,
|
2003-12-15 22:27:28 +00:00
|
|
|
ARG_DITHER,
|
2004-01-13 00:40:31 +00:00
|
|
|
ARG_ANTIALIASING
|
2003-12-15 22:27:28 +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_VIDEO_CAPS_RGB ";" GST_VIDEO_CAPS_RGBx ";"
|
2004-03-15 19:32:27 +00:00
|
|
|
GST_VIDEO_CAPS_RGB_16 ";" GST_VIDEO_CAPS_RGB_15)
|
2004-03-14 22:34:33 +00:00
|
|
|
);
|
2003-12-15 22:27:28 +00:00
|
|
|
|
2004-01-12 23:26:27 +00:00
|
|
|
static void gst_cacasink_base_init (gpointer g_class);
|
2004-03-14 22:34:33 +00:00
|
|
|
static void gst_cacasink_class_init (GstCACASinkClass * klass);
|
|
|
|
static void gst_cacasink_init (GstCACASink * cacasink);
|
2003-12-15 22:27:28 +00:00
|
|
|
|
2005-05-08 12:22:04 +00:00
|
|
|
static gboolean gst_cacasink_setcaps (GstBaseSink * pad, GstCaps * caps);
|
|
|
|
static void gst_cacasink_get_times (GstBaseSink * sink, GstBuffer * buffer,
|
|
|
|
GstClockTime * start, GstClockTime * end);
|
|
|
|
static GstFlowReturn gst_cacasink_render (GstBaseSink * basesink,
|
|
|
|
GstBuffer * buffer);
|
2003-12-15 22:27:28 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static void gst_cacasink_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_cacasink_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec);
|
2003-12-15 22:27:28 +00:00
|
|
|
|
2005-09-02 15:44:50 +00:00
|
|
|
static GstStateChangeReturn gst_cacasink_change_state (GstElement * element,
|
|
|
|
GstStateChange transition);
|
2003-12-15 22:27:28 +00:00
|
|
|
|
|
|
|
static GstElementClass *parent_class = NULL;
|
|
|
|
|
|
|
|
GType
|
|
|
|
gst_cacasink_get_type (void)
|
|
|
|
{
|
|
|
|
static GType cacasink_type = 0;
|
|
|
|
|
|
|
|
if (!cacasink_type) {
|
|
|
|
static const GTypeInfo cacasink_info = {
|
2004-03-14 22:34:33 +00:00
|
|
|
sizeof (GstCACASinkClass),
|
2003-12-15 22:27:28 +00:00
|
|
|
gst_cacasink_base_init,
|
|
|
|
NULL,
|
|
|
|
(GClassInitFunc) gst_cacasink_class_init,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2004-03-14 22:34:33 +00:00
|
|
|
sizeof (GstCACASink),
|
2003-12-15 22:27:28 +00:00
|
|
|
0,
|
2004-01-11 22:16:49 +00:00
|
|
|
(GInstanceInitFunc) gst_cacasink_init,
|
2003-12-15 22:27:28 +00:00
|
|
|
};
|
2004-03-14 22:34:33 +00:00
|
|
|
|
|
|
|
cacasink_type =
|
2005-07-10 12:52:20 +00:00
|
|
|
g_type_register_static (GST_TYPE_BASE_SINK, "GstCACASink",
|
2004-03-15 19:32:27 +00:00
|
|
|
&cacasink_info, 0);
|
2003-12-15 22:27:28 +00:00
|
|
|
}
|
|
|
|
return cacasink_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define GST_TYPE_CACADITHER (gst_cacasink_dither_get_type())
|
|
|
|
static GType
|
|
|
|
gst_cacasink_dither_get_type (void)
|
|
|
|
{
|
|
|
|
static GType dither_type = 0;
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2006-05-10 10:29:54 +00:00
|
|
|
static const GEnumValue dither_types[] = {
|
2005-11-22 18:11:58 +00:00
|
|
|
{CACA_DITHERING_NONE, "No dithering", "none"},
|
|
|
|
{CACA_DITHERING_ORDERED2, "Ordered 2x2 Bayer dithering", "2x2"},
|
|
|
|
{CACA_DITHERING_ORDERED4, "Ordered 4x4 Bayer dithering", "4x4"},
|
|
|
|
{CACA_DITHERING_ORDERED8, "Ordered 8x8 Bayer dithering", "8x8"},
|
|
|
|
{CACA_DITHERING_RANDOM, "Random dithering", "random"},
|
|
|
|
{0, NULL, NULL},
|
|
|
|
};
|
2003-12-15 22:27:28 +00:00
|
|
|
|
2005-11-22 18:11:58 +00:00
|
|
|
if (!dither_type) {
|
|
|
|
dither_type = g_enum_register_static ("GstCACASinkDithering", dither_types);
|
2003-12-15 22:27:28 +00:00
|
|
|
}
|
|
|
|
return dither_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_cacasink_base_init (gpointer g_class)
|
|
|
|
{
|
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
|
|
|
|
|
|
|
|
gst_element_class_set_details (element_class, &gst_cacasink_details);
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
|
|
gst_static_pad_template_get (&sink_template));
|
2003-12-15 22:27:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_cacasink_class_init (GstCACASinkClass * klass)
|
2003-12-15 22:27:28 +00:00
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
GstElementClass *gstelement_class;
|
2005-05-08 12:22:04 +00:00
|
|
|
GstBaseSinkClass *gstbasesink_class;
|
2003-12-15 22:27:28 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
gobject_class = (GObjectClass *) klass;
|
|
|
|
gstelement_class = (GstElementClass *) klass;
|
2005-05-08 12:22:04 +00:00
|
|
|
gstbasesink_class = (GstBaseSinkClass *) klass;
|
2003-12-15 22:27:28 +00:00
|
|
|
|
2006-04-08 21:21:45 +00:00
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
2005-05-08 12:22:04 +00:00
|
|
|
|
|
|
|
gobject_class->set_property = gst_cacasink_set_property;
|
|
|
|
gobject_class->get_property = gst_cacasink_get_property;
|
|
|
|
gstelement_class->change_state = gst_cacasink_change_state;
|
2003-12-15 22:27:28 +00:00
|
|
|
|
2006-11-28 12:30:10 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_SCREEN_WIDTH,
|
|
|
|
g_param_spec_int ("screen-width", "Screen Width",
|
|
|
|
"The width of the screen", 0, G_MAXINT, GST_CACA_DEFAULT_SCREEN_WIDTH,
|
|
|
|
G_PARAM_READABLE));
|
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_SCREEN_HEIGHT,
|
|
|
|
g_param_spec_int ("screen-height", "Screen Height",
|
|
|
|
"The height of the screen", 0, G_MAXINT,
|
|
|
|
GST_CACA_DEFAULT_SCREEN_HEIGHT, G_PARAM_READABLE));
|
2004-03-14 22:34:33 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_DITHER,
|
|
|
|
g_param_spec_enum ("dither", "Dither Type", "Set type of Dither",
|
2005-11-22 18:11:58 +00:00
|
|
|
GST_TYPE_CACADITHER, CACA_DITHERING_NONE, G_PARAM_READWRITE));
|
2004-01-13 00:40:31 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_ANTIALIASING,
|
2006-11-28 12:30:10 +00:00
|
|
|
g_param_spec_boolean ("anti-aliasing", "Anti Aliasing",
|
2004-03-15 19:32:27 +00:00
|
|
|
"Enables Anti-Aliasing", TRUE, G_PARAM_READWRITE));
|
2003-12-15 22:27:28 +00:00
|
|
|
|
2005-05-08 12:22:04 +00:00
|
|
|
gstbasesink_class->set_caps = GST_DEBUG_FUNCPTR (gst_cacasink_setcaps);
|
|
|
|
gstbasesink_class->get_times = GST_DEBUG_FUNCPTR (gst_cacasink_get_times);
|
|
|
|
gstbasesink_class->preroll = GST_DEBUG_FUNCPTR (gst_cacasink_render);
|
|
|
|
gstbasesink_class->render = GST_DEBUG_FUNCPTR (gst_cacasink_render);
|
2003-12-15 22:27:28 +00:00
|
|
|
}
|
|
|
|
|
2004-01-11 22:16:49 +00:00
|
|
|
static void
|
2005-05-08 12:22:04 +00:00
|
|
|
gst_cacasink_get_times (GstBaseSink * sink, GstBuffer * buffer,
|
|
|
|
GstClockTime * start, GstClockTime * end)
|
2004-01-11 22:16:49 +00:00
|
|
|
{
|
2005-05-08 12:22:04 +00:00
|
|
|
*start = GST_BUFFER_TIMESTAMP (buffer);
|
|
|
|
*end = *start + GST_BUFFER_DURATION (buffer);
|
2004-01-11 22:16:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2005-05-08 12:22:04 +00:00
|
|
|
gst_cacasink_setcaps (GstBaseSink * basesink, GstCaps * caps)
|
2003-12-15 22:27:28 +00:00
|
|
|
{
|
|
|
|
GstCACASink *cacasink;
|
2004-01-11 22:16:49 +00:00
|
|
|
GstStructure *structure;
|
2003-12-15 22:27:28 +00:00
|
|
|
|
2005-05-08 12:22:04 +00:00
|
|
|
cacasink = GST_CACASINK (basesink);
|
2003-12-15 22:27:28 +00:00
|
|
|
|
2004-01-11 22:16:49 +00:00
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
2005-05-08 12:22:04 +00:00
|
|
|
gst_structure_get_int (structure, "width", &(cacasink->width));
|
|
|
|
gst_structure_get_int (structure, "height", &(cacasink->height));
|
2005-06-29 16:36:15 +00:00
|
|
|
gst_structure_get_int (structure, "bpp", (int *) &cacasink->bpp);
|
|
|
|
gst_structure_get_int (structure, "red_mask", (int *) &cacasink->red_mask);
|
|
|
|
gst_structure_get_int (structure, "green_mask",
|
|
|
|
(int *) &cacasink->green_mask);
|
|
|
|
gst_structure_get_int (structure, "blue_mask", (int *) &cacasink->blue_mask);
|
2004-01-11 22:16:49 +00:00
|
|
|
|
2004-01-14 00:37:17 +00:00
|
|
|
if (cacasink->bpp == 24) {
|
2004-03-14 22:34:33 +00:00
|
|
|
cacasink->red_mask = GUINT32_FROM_BE (cacasink->red_mask) >> 8;
|
2004-01-14 00:37:17 +00:00
|
|
|
cacasink->green_mask = GUINT32_FROM_BE (cacasink->green_mask) >> 8;
|
2004-03-14 22:34:33 +00:00
|
|
|
cacasink->blue_mask = GUINT32_FROM_BE (cacasink->blue_mask) >> 8;
|
2004-01-14 00:37:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
else if (cacasink->bpp == 32) {
|
2004-03-14 22:34:33 +00:00
|
|
|
cacasink->red_mask = GUINT32_FROM_BE (cacasink->red_mask);
|
2004-01-14 00:37:17 +00:00
|
|
|
cacasink->green_mask = GUINT32_FROM_BE (cacasink->green_mask);
|
2004-03-14 22:34:33 +00:00
|
|
|
cacasink->blue_mask = GUINT32_FROM_BE (cacasink->blue_mask);
|
2004-01-14 00:37:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
else if (cacasink->bpp == 16 || cacasink->bpp == 15) {
|
2004-03-14 22:34:33 +00:00
|
|
|
cacasink->red_mask = GUINT16_FROM_BE (cacasink->red_mask);
|
2004-01-14 00:37:17 +00:00
|
|
|
cacasink->green_mask = GUINT16_FROM_BE (cacasink->green_mask);
|
2004-03-14 22:34:33 +00:00
|
|
|
cacasink->blue_mask = GUINT16_FROM_BE (cacasink->blue_mask);
|
2004-01-14 00:37:17 +00:00
|
|
|
}
|
|
|
|
|
2004-01-12 23:26:27 +00:00
|
|
|
if (cacasink->bitmap) {
|
2003-12-15 22:27:28 +00:00
|
|
|
caca_free_bitmap (cacasink->bitmap);
|
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
cacasink->bitmap = caca_create_bitmap (cacasink->bpp,
|
2005-05-08 12:22:04 +00:00
|
|
|
cacasink->width,
|
|
|
|
cacasink->height,
|
|
|
|
cacasink->width * cacasink->bpp / 8,
|
2004-03-14 22:34:33 +00:00
|
|
|
cacasink->red_mask, cacasink->green_mask, cacasink->blue_mask, 0);
|
2004-01-12 23:26:27 +00:00
|
|
|
|
|
|
|
if (!cacasink->bitmap) {
|
2005-05-08 12:22:04 +00:00
|
|
|
return FALSE;
|
2004-01-12 23:26:27 +00:00
|
|
|
}
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2005-05-08 12:22:04 +00:00
|
|
|
return TRUE;
|
2003-12-15 22:27:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_cacasink_init (GstCACASink * cacasink)
|
2003-12-15 22:27:28 +00:00
|
|
|
{
|
2004-01-11 22:16:49 +00:00
|
|
|
cacasink->screen_width = GST_CACA_DEFAULT_SCREEN_WIDTH;
|
|
|
|
cacasink->screen_height = GST_CACA_DEFAULT_SCREEN_HEIGHT;
|
2003-12-15 22:27:28 +00:00
|
|
|
cacasink->bpp = GST_CACA_DEFAULT_BPP;
|
|
|
|
cacasink->red_mask = GST_CACA_DEFAULT_RED_MASK;
|
|
|
|
cacasink->green_mask = GST_CACA_DEFAULT_GREEN_MASK;
|
|
|
|
cacasink->blue_mask = GST_CACA_DEFAULT_BLUE_MASK;
|
|
|
|
}
|
|
|
|
|
2005-05-08 12:22:04 +00:00
|
|
|
static GstFlowReturn
|
|
|
|
gst_cacasink_render (GstBaseSink * basesink, GstBuffer * buffer)
|
2003-12-15 22:27:28 +00:00
|
|
|
{
|
2005-05-08 12:22:04 +00:00
|
|
|
GstCACASink *cacasink = GST_CACASINK (basesink);
|
2003-12-15 22:27:28 +00:00
|
|
|
|
2005-05-08 12:22:04 +00:00
|
|
|
GST_DEBUG ("render");
|
2003-12-15 22:27:28 +00:00
|
|
|
|
2004-01-12 23:26:27 +00:00
|
|
|
caca_clear ();
|
2004-03-14 22:34:33 +00:00
|
|
|
caca_draw_bitmap (0, 0, cacasink->screen_width - 1,
|
2005-05-08 12:22:04 +00:00
|
|
|
cacasink->screen_height - 1, cacasink->bitmap, GST_BUFFER_DATA (buffer));
|
2003-12-15 22:27:28 +00:00
|
|
|
caca_refresh ();
|
|
|
|
|
2005-05-08 12:22:04 +00:00
|
|
|
return GST_FLOW_OK;
|
2003-12-15 22:27:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_cacasink_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
2003-12-15 22:27:28 +00:00
|
|
|
{
|
|
|
|
GstCACASink *cacasink;
|
|
|
|
|
|
|
|
g_return_if_fail (GST_IS_CACASINK (object));
|
|
|
|
|
|
|
|
cacasink = GST_CACASINK (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
2004-03-14 22:34:33 +00:00
|
|
|
case ARG_DITHER:{
|
2003-12-15 22:27:28 +00:00
|
|
|
cacasink->dither = g_value_get_enum (value);
|
2004-01-12 23:26:27 +00:00
|
|
|
caca_set_dithering (cacasink->dither + CACA_DITHERING_NONE);
|
2003-12-15 22:27:28 +00:00
|
|
|
break;
|
|
|
|
}
|
2004-03-14 22:34:33 +00:00
|
|
|
case ARG_ANTIALIASING:{
|
2004-01-13 00:40:31 +00:00
|
|
|
cacasink->antialiasing = g_value_get_boolean (value);
|
|
|
|
if (cacasink->antialiasing) {
|
2004-03-15 19:32:27 +00:00
|
|
|
caca_set_feature (CACA_ANTIALIASING_MAX);
|
2008-05-28 13:28:20 +00:00
|
|
|
} else {
|
2004-03-15 19:32:27 +00:00
|
|
|
caca_set_feature (CACA_ANTIALIASING_MIN);
|
2004-01-13 00:40:31 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2003-12-15 22:27:28 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_cacasink_get_property (GObject * object, guint prop_id, GValue * value,
|
|
|
|
GParamSpec * pspec)
|
2003-12-15 22:27:28 +00:00
|
|
|
{
|
|
|
|
GstCACASink *cacasink;
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
cacasink = GST_CACASINK (object);
|
2003-12-15 22:27:28 +00:00
|
|
|
|
|
|
|
switch (prop_id) {
|
2004-03-14 22:34:33 +00:00
|
|
|
case ARG_SCREEN_WIDTH:{
|
2003-12-15 22:27:28 +00:00
|
|
|
g_value_set_int (value, cacasink->screen_width);
|
|
|
|
break;
|
|
|
|
}
|
2004-03-14 22:34:33 +00:00
|
|
|
case ARG_SCREEN_HEIGHT:{
|
2003-12-15 22:27:28 +00:00
|
|
|
g_value_set_int (value, cacasink->screen_height);
|
|
|
|
break;
|
|
|
|
}
|
2004-03-14 22:34:33 +00:00
|
|
|
case ARG_DITHER:{
|
2003-12-15 22:27:28 +00:00
|
|
|
g_value_set_enum (value, cacasink->dither);
|
|
|
|
break;
|
|
|
|
}
|
2004-03-14 22:34:33 +00:00
|
|
|
case ARG_ANTIALIASING:{
|
2004-01-13 00:40:31 +00:00
|
|
|
g_value_set_boolean (value, cacasink->antialiasing);
|
|
|
|
break;
|
|
|
|
}
|
2004-03-14 22:34:33 +00:00
|
|
|
default:{
|
2003-12-15 22:27:28 +00:00
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_cacasink_open (GstCACASink * cacasink)
|
2003-12-15 22:27:28 +00:00
|
|
|
{
|
2004-04-13 12:17:21 +00:00
|
|
|
cacasink->bitmap = NULL;
|
2009-10-19 18:59:23 +00:00
|
|
|
|
|
|
|
if (caca_init () < 0) {
|
|
|
|
GST_ELEMENT_ERROR (cacasink, RESOURCE, OPEN_WRITE, (NULL),
|
|
|
|
("caca_init() failed"));
|
|
|
|
return FALSE;
|
|
|
|
}
|
2004-04-13 12:17:21 +00:00
|
|
|
|
|
|
|
cacasink->screen_width = caca_get_width ();
|
|
|
|
cacasink->screen_height = caca_get_height ();
|
|
|
|
cacasink->antialiasing = TRUE;
|
|
|
|
caca_set_feature (CACA_ANTIALIASING_MAX);
|
|
|
|
cacasink->dither = 0;
|
|
|
|
caca_set_dithering (CACA_DITHERING_NONE);
|
|
|
|
|
2003-12-15 22:27:28 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_cacasink_close (GstCACASink * cacasink)
|
2003-12-15 22:27:28 +00:00
|
|
|
{
|
2004-04-13 12:17:21 +00:00
|
|
|
if (cacasink->bitmap) {
|
|
|
|
caca_free_bitmap (cacasink->bitmap);
|
|
|
|
cacasink->bitmap = NULL;
|
|
|
|
}
|
|
|
|
caca_end ();
|
2003-12-15 22:27:28 +00:00
|
|
|
}
|
|
|
|
|
2005-09-02 15:44:50 +00:00
|
|
|
static GstStateChangeReturn
|
|
|
|
gst_cacasink_change_state (GstElement * element, GstStateChange transition)
|
2003-12-15 22:27:28 +00:00
|
|
|
{
|
2005-09-02 15:44:50 +00:00
|
|
|
GstStateChangeReturn ret;
|
2003-12-15 22:27:28 +00:00
|
|
|
|
2005-05-17 17:44:58 +00:00
|
|
|
switch (transition) {
|
2005-09-02 15:44:50 +00:00
|
|
|
case GST_STATE_CHANGE_READY_TO_PAUSED:
|
2003-12-15 22:27:28 +00:00
|
|
|
if (!gst_cacasink_open (GST_CACASINK (element)))
|
2005-09-02 15:44:50 +00:00
|
|
|
return GST_STATE_CHANGE_FAILURE;
|
2005-05-17 17:44:58 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2003-12-15 22:27:28 +00:00
|
|
|
}
|
|
|
|
|
2005-09-02 15:44:50 +00:00
|
|
|
ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
|
2003-12-15 22:27:28 +00:00
|
|
|
|
2005-05-17 17:44:58 +00:00
|
|
|
switch (transition) {
|
2005-09-02 15:44:50 +00:00
|
|
|
case GST_STATE_CHANGE_PAUSED_TO_READY:
|
2005-05-17 17:44:58 +00:00
|
|
|
gst_cacasink_close (GST_CACASINK (element));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return ret;
|
2003-12-15 22:27:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2004-03-14 22:34:33 +00:00
|
|
|
plugin_init (GstPlugin * plugin)
|
2003-12-15 22:27:28 +00:00
|
|
|
{
|
2004-03-14 22:34:33 +00:00
|
|
|
if (!gst_element_register (plugin, "cacasink", GST_RANK_NONE,
|
2004-03-15 19:32:27 +00:00
|
|
|
GST_TYPE_CACASINK))
|
2003-12-15 22:27:28 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
|
|
|
"cacasink",
|
|
|
|
"Colored ASCII Art video sink",
|
2005-11-14 02:13:35 +00:00
|
|
|
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|