It should work now, but it does'nt (All i see is a black-window) :(

Original commit message from CVS:
It should work now, but it does'nt (All i see is a black-window) :(
This commit is contained in:
Zeeshan Ali 2004-01-11 22:16:49 +00:00
parent 4ec54daec5
commit 7c663da045
2 changed files with 153 additions and 111 deletions

View file

@ -23,6 +23,7 @@
#include <string.h> #include <string.h>
#include <sys/time.h> #include <sys/time.h>
#include <gst/navigation/navigation.h>
#include "gstcacasink.h" #include "gstcacasink.h"
@ -36,37 +37,32 @@ static GstElementDetails gst_cacasink_details = {
/* cacasink signals and args */ /* cacasink signals and args */
enum { enum {
SIGNAL_FRAME_DISPLAYED,
SIGNAL_HAVE_SIZE,
LAST_SIGNAL LAST_SIGNAL
}; };
enum { enum {
ARG_0, ARG_0,
ARG_WIDTH, ARG_SCREEN_WIDTH,
ARG_HEIGHT, ARG_SCREEN_HEIGHT,
ARG_DITHER, ARG_DITHER,
ARG_FRAMES_DISPLAYED,
ARG_FRAME_TIME,
}; };
GST_PAD_TEMPLATE_FACTORY (sink_template, static GstStaticPadTemplate sink_template =
GST_STATIC_PAD_TEMPLATE (
"sink", "sink",
GST_PAD_SINK, GST_PAD_SINK,
GST_PAD_ALWAYS, GST_PAD_ALWAYS,
gst_caps_new ( GST_STATIC_CAPS (GST_VIDEO_RGB_PAD_TEMPLATE_CAPS_24));
"cacasink_caps",
"video/x-raw-rgb",
GST_VIDEO_RGB_PAD_TEMPLATE_PROPS_24_32
)
)
static void gst_cacasink_base_init (gpointer g_class); static void gst_cacasink_base_init (gpointer g_class);
static void gst_cacasink_class_init (GstCACASinkClass *klass); static void gst_cacasink_class_init (GstCACASinkClass *klass);
static void gst_cacasink_init (GstCACASink *cacasink); static void gst_cacasink_init (GstCACASink *cacasink);
static void gst_cacasink_interface_init (GstImplementsInterfaceClass *klass);
static gboolean gst_cacasink_interface_supported (GstImplementsInterface *iface, GType type);
static void gst_cacasink_navigation_init (GstNavigationInterface *iface);
static void gst_cacasink_navigation_send_event (GstNavigation *navigation, GstStructure *structure);
static void gst_cacasink_set_clock (GstElement *element, GstClock *clock);
static void gst_cacasink_chain (GstPad *pad, GstData *_data); static void gst_cacasink_chain (GstPad *pad, GstData *_data);
static void gst_cacasink_set_property (GObject *object, guint prop_id, static void gst_cacasink_set_property (GObject *object, guint prop_id,
@ -77,7 +73,6 @@ static void gst_cacasink_get_property (GObject *object, guint prop_id,
static GstElementStateReturn gst_cacasink_change_state (GstElement *element); static GstElementStateReturn gst_cacasink_change_state (GstElement *element);
static GstElementClass *parent_class = NULL; static GstElementClass *parent_class = NULL;
static guint gst_cacasink_signals[LAST_SIGNAL] = { 0 };
GType GType
gst_cacasink_get_type (void) gst_cacasink_get_type (void)
@ -94,9 +89,27 @@ gst_cacasink_get_type (void)
NULL, NULL,
sizeof(GstCACASink), sizeof(GstCACASink),
0, 0,
(GInstanceInitFunc)gst_cacasink_init, (GInstanceInitFunc) gst_cacasink_init,
}; };
cacasink_type = g_type_register_static(GST_TYPE_ELEMENT, "GstCACASink", &cacasink_info, 0);
static const GInterfaceInfo iface_info = {
(GInterfaceInitFunc) gst_cacasink_interface_init,
NULL,
NULL,
};
static const GInterfaceInfo navigation_info = {
(GInterfaceInitFunc) gst_cacasink_navigation_init,
NULL,
NULL,
};
cacasink_type = g_type_register_static (GST_TYPE_VIDEOSINK, "GstCACASink", &cacasink_info, 0);
g_type_add_interface_static (cacasink_type, GST_TYPE_IMPLEMENTS_INTERFACE,
&iface_info);
g_type_add_interface_static (cacasink_type, GST_TYPE_NAVIGATION,
&navigation_info);
} }
return cacasink_type; return cacasink_type;
} }
@ -110,7 +123,7 @@ gst_cacasink_dither_get_type (void)
GEnumValue *dithers; GEnumValue *dithers;
gint n_dithers; gint n_dithers;
gint i; gint i;
gchar caca_dithernames[] = { gchar *caca_dithernames[] = {
"NONE", "ORDERED2", "ORDERED4", "ORDERED8", "RANDOM", NULL}; "NONE", "ORDERED2", "ORDERED4", "ORDERED8", "RANDOM", NULL};
n_dithers = 5; n_dithers = 5;
@ -136,9 +149,9 @@ gst_cacasink_base_init (gpointer g_class)
{ {
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class); GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
gst_element_class_add_pad_template (element_class,
GST_PAD_TEMPLATE_GET (sink_template));
gst_element_class_set_details (element_class, &gst_cacasink_details); gst_element_class_set_details (element_class, &gst_cacasink_details);
gst_element_class_add_pad_template (element_class,
gst_static_pad_template_get (&sink_template));
} }
static void static void
@ -146,64 +159,90 @@ gst_cacasink_class_init (GstCACASinkClass *klass)
{ {
GObjectClass *gobject_class; GObjectClass *gobject_class;
GstElementClass *gstelement_class; GstElementClass *gstelement_class;
GstVideoSinkClass *gstvs_class;
gobject_class = (GObjectClass*)klass; gobject_class = (GObjectClass*)klass;
gstelement_class = (GstElementClass*)klass; gstelement_class = (GstElementClass*)klass;
gstvs_class = (GstVideoSinkClass*) klass;
parent_class = g_type_class_ref (GST_TYPE_ELEMENT); parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_WIDTH, g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_SCREEN_WIDTH,
g_param_spec_int("width","width","width", g_param_spec_int("screen_width","screen_width","screen_width",
G_MININT,G_MAXINT,0,G_PARAM_READABLE)); /* CHECKME */ G_MININT,G_MAXINT,0,G_PARAM_READABLE)); /* CHECKME */
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_HEIGHT, g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_SCREEN_HEIGHT,
g_param_spec_int("height","height","height", g_param_spec_int("screen_height","screen_height","screen_height",
G_MININT,G_MAXINT,0,G_PARAM_READABLE)); /* CHECKME */ G_MININT,G_MAXINT,0,G_PARAM_READABLE)); /* CHECKME */
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_DITHER, g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_DITHER,
g_param_spec_enum("dither","dither","dither", g_param_spec_enum("dither","dither","dither",
GST_TYPE_CACADITHER,0,G_PARAM_READWRITE)); /* CHECKME! */ GST_TYPE_CACADITHER, 0, G_PARAM_READWRITE));
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_FRAMES_DISPLAYED,
g_param_spec_int("frames_displayed","frames_displayed","frames_displayed",
G_MININT,G_MAXINT,0,G_PARAM_READABLE)); /* CHECKME */
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_FRAME_TIME,
g_param_spec_int("frame_time","frame_time","frame_time",
G_MININT,G_MAXINT,0,G_PARAM_READABLE)); /* CHECKME */
gobject_class->set_property = gst_cacasink_set_property; gobject_class->set_property = gst_cacasink_set_property;
gobject_class->get_property = gst_cacasink_get_property; gobject_class->get_property = gst_cacasink_get_property;
gst_cacasink_signals[SIGNAL_FRAME_DISPLAYED] =
g_signal_new ("frame_displayed", G_TYPE_FROM_CLASS(klass), G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (GstCACASinkClass, frame_displayed), NULL, NULL,
g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
gst_cacasink_signals[SIGNAL_HAVE_SIZE] =
g_signal_new ("have_size", G_TYPE_FROM_CLASS(klass), G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (GstCACASinkClass, have_size), NULL, NULL,
gst_marshal_VOID__INT_INT, G_TYPE_NONE, 2,
G_TYPE_UINT, G_TYPE_UINT);
gstelement_class->change_state = gst_cacasink_change_state; gstelement_class->change_state = gst_cacasink_change_state;
gstelement_class->set_clock = gst_cacasink_set_clock;
} }
static void
gst_cacasink_interface_init (GstImplementsInterfaceClass *klass)
{
klass->supported = gst_cacasink_interface_supported;
}
static gboolean
gst_cacasink_interface_supported (GstImplementsInterface *iface, GType type)
{
g_assert (type == GST_TYPE_NAVIGATION);
return (GST_STATE (iface) != GST_STATE_NULL);
}
static void
gst_cacasink_navigation_init (GstNavigationInterface *iface)
{
iface->send_event = gst_cacasink_navigation_send_event;
}
static void
gst_cacasink_navigation_send_event (GstNavigation *navigation,
GstStructure *structure)
{
GstCACASink *cacasink = GST_CACASINK (navigation);
GstEvent *event;
event = gst_event_new (GST_EVENT_NAVIGATION);
/*GST_EVENT_TIMESTAMP (event) = 0;*/
event->event_data.structure.structure = structure;
/* FIXME
* Obviously, the pointer x,y coordinates need to be adjusted by the
* window size and relation to the bounding window. */
gst_pad_send_event (gst_pad_get_peer (GST_VIDEOSINK_PAD(cacasink)),
event);
}
static GstPadLinkReturn static GstPadLinkReturn
gst_cacasink_sinkconnect (GstPad *pad, GstCaps *caps) gst_cacasink_sinkconnect (GstPad *pad, const GstCaps *caps)
{ {
GstCACASink *cacasink; GstCACASink *cacasink;
GstStructure *structure;
cacasink = GST_CACASINK (gst_pad_get_parent (pad)); cacasink = GST_CACASINK (gst_pad_get_parent (pad));
if (!GST_CAPS_IS_FIXED (caps)) /*if (!GST_CAPS_IS_FIXED (caps))
return GST_PAD_LINK_DELAYED; return GST_PAD_LINK_DELAYED;*/
gst_caps_get_int (caps, "width", &cacasink->image_width); structure = gst_caps_get_structure (caps, 0);
gst_caps_get_int (caps, "height", &cacasink->image_height); gst_structure_get_int (structure, "width",
gst_caps_get_int (caps, "bpp", &cacasink->bpp); &(GST_VIDEOSINK_WIDTH (cacasink)));
gst_caps_get_int (caps, "red_mask", &cacasink->red_mask); gst_structure_get_int (structure, "height",
gst_caps_get_int (caps, "green_mask", &cacasink->green_mask); &(GST_VIDEOSINK_HEIGHT (cacasink)));
gst_caps_get_int (caps, "blue_mask", &cacasink->blue_mask); gst_structure_get_int (structure, "bpp", &cacasink->bpp);
gst_structure_get_int (structure, "red_mask", &cacasink->red_mask);
gst_structure_get_int (structure, "green_mask", &cacasink->green_mask);
gst_structure_get_int (structure, "blue_mask", &cacasink->blue_mask);
g_signal_emit( G_OBJECT (cacasink), gst_cacasink_signals[SIGNAL_HAVE_SIZE], 0, gst_video_sink_got_video_size (GST_VIDEOSINK (cacasink), GST_VIDEOSINK_WIDTH (cacasink), GST_VIDEOSINK_HEIGHT (cacasink));
cacasink->image_width, cacasink->image_height);
/*if (cacasink->bitmap != NULL) { /*if (cacasink->bitmap != NULL) {
caca_free_bitmap (cacasink->bitmap); caca_free_bitmap (cacasink->bitmap);
@ -214,33 +253,24 @@ gst_cacasink_sinkconnect (GstPad *pad, GstCaps *caps)
return GST_PAD_LINK_OK; return GST_PAD_LINK_OK;
} }
static void
gst_cacasink_set_clock (GstElement *element, GstClock *clock)
{
GstCACASink *cacasink = GST_CACASINK (element);
cacasink->clock = clock;
}
static void static void
gst_cacasink_init (GstCACASink *cacasink) gst_cacasink_init (GstCACASink *cacasink)
{ {
cacasink->sinkpad = gst_pad_new_from_template ( GST_VIDEOSINK_PAD (cacasink) = gst_pad_new_from_template (
GST_PAD_TEMPLATE_GET (sink_template), "sink"); gst_static_pad_template_get (&sink_template), "sink");
gst_element_add_pad (GST_ELEMENT (cacasink), cacasink->sinkpad); gst_element_add_pad (GST_ELEMENT (cacasink), GST_VIDEOSINK_PAD (cacasink));
gst_pad_set_chain_function (cacasink->sinkpad, gst_cacasink_chain); gst_pad_set_chain_function (GST_VIDEOSINK_PAD (cacasink),
gst_pad_set_link_function (cacasink->sinkpad, gst_cacasink_sinkconnect); gst_cacasink_chain);
gst_pad_set_link_function (GST_VIDEOSINK_PAD (cacasink),
gst_cacasink_sinkconnect);
cacasink->screen_width = -1; cacasink->screen_width = GST_CACA_DEFAULT_SCREEN_WIDTH;
cacasink->screen_height = -1; cacasink->screen_height = GST_CACA_DEFAULT_SCREEN_HEIGHT;
cacasink->image_width = GST_CACA_DEFAULT_IMAGE_WIDTH;
cacasink->image_height = GST_CACA_DEFAULT_IMAGE_HEIGHT;
cacasink->bpp = GST_CACA_DEFAULT_BPP; cacasink->bpp = GST_CACA_DEFAULT_BPP;
cacasink->red_mask = GST_CACA_DEFAULT_RED_MASK; cacasink->red_mask = GST_CACA_DEFAULT_RED_MASK;
cacasink->green_mask = GST_CACA_DEFAULT_GREEN_MASK; cacasink->green_mask = GST_CACA_DEFAULT_GREEN_MASK;
cacasink->blue_mask = GST_CACA_DEFAULT_BLUE_MASK; cacasink->blue_mask = GST_CACA_DEFAULT_BLUE_MASK;
cacasink->clock = NULL;
cacasink->bitmap = NULL; cacasink->bitmap = NULL;
GST_FLAG_SET(cacasink, GST_ELEMENT_THREAD_SUGGESTED); GST_FLAG_SET(cacasink, GST_ELEMENT_THREAD_SUGGESTED);
@ -251,6 +281,8 @@ gst_cacasink_chain (GstPad *pad, GstData *_data)
{ {
GstBuffer *buf = GST_BUFFER (_data); GstBuffer *buf = GST_BUFFER (_data);
GstCACASink *cacasink; GstCACASink *cacasink;
GstClockTime time = GST_BUFFER_TIMESTAMP (buf);
gint64 jitter;
g_return_if_fail (pad != NULL); g_return_if_fail (pad != NULL);
g_return_if_fail (GST_IS_PAD (pad)); g_return_if_fail (GST_IS_PAD (pad));
@ -258,18 +290,32 @@ gst_cacasink_chain (GstPad *pad, GstData *_data)
cacasink = GST_CACASINK (gst_pad_get_parent (pad)); cacasink = GST_CACASINK (gst_pad_get_parent (pad));
GST_DEBUG ("videosink: clock wait: %" G_GUINT64_FORMAT, GST_BUFFER_TIMESTAMP(buf)); if (GST_VIDEOSINK_CLOCK (cacasink) && time != -1) {
GstClockReturn ret;
if (cacasink->clock) { cacasink->id = gst_clock_new_single_shot_id (
GstClockID id = gst_clock_new_single_shot_id (cacasink->clock, GST_BUFFER_TIMESTAMP(buf)); GST_VIDEOSINK_CLOCK (cacasink), time);
gst_element_clock_wait (GST_ELEMENT (cacasink), id, NULL);
gst_clock_id_free (id); GST_DEBUG ("videosink: clock %s wait: %" G_GUINT64_FORMAT " %u",
GST_OBJECT_NAME (GST_VIDEOSINK_CLOCK (cacasink)),
time, GST_BUFFER_SIZE (buf));
ret = gst_clock_id_wait (cacasink->id, &jitter);
gst_clock_id_free (cacasink->id);
cacasink->id = NULL;
} }
//caca_clear ();
caca_draw_bitmap (0, 0, cacasink->screen_width-1, cacasink->screen_height-1, cacasink->bitmap, GST_BUFFER_DATA (buf)); caca_draw_bitmap (0, 0, cacasink->screen_width-1, cacasink->screen_height-1, cacasink->bitmap, GST_BUFFER_DATA (buf));
caca_refresh (); caca_refresh ();
g_signal_emit(G_OBJECT(cacasink),gst_cacasink_signals[SIGNAL_FRAME_DISPLAYED], 0); if (GST_VIDEOSINK_CLOCK (cacasink)) {
jitter = gst_clock_get_time (GST_VIDEOSINK_CLOCK (cacasink)) - time;
cacasink->correction = (cacasink->correction + jitter) >> 1;
cacasink->correction = 0;
}
gst_buffer_unref(buf); gst_buffer_unref(buf);
} }
@ -304,11 +350,11 @@ gst_cacasink_get_property (GObject *object, guint prop_id, GValue *value, GParam
cacasink = GST_CACASINK(object); cacasink = GST_CACASINK(object);
switch (prop_id) { switch (prop_id) {
case ARG_WIDTH: { case ARG_SCREEN_WIDTH: {
g_value_set_int (value, cacasink->screen_width); g_value_set_int (value, cacasink->screen_width);
break; break;
} }
case ARG_HEIGHT: { case ARG_SCREEN_HEIGHT: {
g_value_set_int (value, cacasink->screen_height); g_value_set_int (value, cacasink->screen_height);
break; break;
} }
@ -316,14 +362,6 @@ gst_cacasink_get_property (GObject *object, guint prop_id, GValue *value, GParam
g_value_set_enum (value, cacasink->dither); g_value_set_enum (value, cacasink->dither);
break; break;
} }
case ARG_FRAMES_DISPLAYED: {
g_value_set_int (value, cacasink->frames_displayed);
break;
}
case ARG_FRAME_TIME: {
g_value_set_int (value, cacasink->frame_time/1000000);
break;
}
default: { default: {
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break; break;
@ -338,18 +376,19 @@ gst_cacasink_open (GstCACASink *cacasink)
caca_init (); caca_init ();
screen_width = caca_get_width (); cacasink->screen_width = caca_get_width ();
screen_height = caca_get_height (); cacasink->screen_height = caca_get_height ();
caca_set_dithering (cacasink->dither); caca_set_dithering (cacasink->dither + CACA_DITHERING_NONE);
caca->bitmap = caca_create_bitmap ( cacasink->bitmap = caca_create_bitmap (
cacasink->bpp, cacasink->bpp,
cacasink->image_width, GST_VIDEOSINK_WIDTH (cacasink),
cacasink->image_height, GST_VIDEOSINK_HEIGHT (cacasink),
cacasink->image_width * cacasink->bpp/8, GST_VIDEOSINK_WIDTH (cacasink) * cacasink->bpp/8,
cacasink->red_mask, cacasink->red_mask,
cacasink->green_mask, cacasink->green_mask,
cacasink->blue_mask); cacasink->blue_mask,
0);
GST_FLAG_SET (cacasink, GST_CACASINK_OPEN); GST_FLAG_SET (cacasink, GST_CACASINK_OPEN);
@ -392,6 +431,10 @@ gst_cacasink_change_state (GstElement *element)
static gboolean static gboolean
plugin_init (GstPlugin *plugin) plugin_init (GstPlugin *plugin)
{ {
/* Loading the library containing GstVideoSink, our parent object */
if (!gst_library_load ("gstvideo"))
return FALSE;
if (!gst_element_register (plugin, "cacasink", GST_RANK_NONE, GST_TYPE_CACASINK)) if (!gst_element_register (plugin, "cacasink", GST_RANK_NONE, GST_TYPE_CACASINK))
return FALSE; return FALSE;
@ -405,7 +448,7 @@ GST_PLUGIN_DEFINE (
"Colored ASCII Art video sink", "Colored ASCII Art video sink",
plugin_init, plugin_init,
VERSION, VERSION,
"GPL", GST_LICENSE,
GST_PACKAGE, GST_PACKAGE,
GST_ORIGIN GST_ORIGIN
) )

View file

@ -22,6 +22,7 @@
#define __GST_CACASINK_H__ #define __GST_CACASINK_H__
#include <gst/gst.h> #include <gst/gst.h>
#include <gst/video/gstvideosink.h>
#include <gst/video/video.h> #include <gst/video/video.h>
#include <caca.h> #include <caca.h>
@ -30,13 +31,16 @@
extern "C" { extern "C" {
#endif /* __cplusplus */ #endif /* __cplusplus */
#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 R_MASK_32_INT
#define GST_CACA_DEFAULT_GREEN_MASK G_MASK_32_INT
#define GST_CACA_DEFAULT_BLUE_MASK B_MASK_32_INT
#define GST_CACA_DEFAULT_IMAGE_WIDTH 320 //#define GST_CACA_DEFAULT_RED_MASK R_MASK_32_REVERSE_INT
#define GST_CACA_DEFAULT_IMAGE_HEIGHT 240 //#define GST_CACA_DEFAULT_GREEN_MASK G_MASK_32_REVERSE_INT
#define GST_CACA_DEFAULT_BPP 32 //#define GST_CACA_DEFAULT_BLUE_MASK B_MASK_32_REVERSE_INT
#define GST_CACA_DEFAULT_RED_MASK R_MASK_32
#define GST_CACA_DEFAULT_GREEN_MASK G_MASK_32
#define GST_CACA_DEFAULT_BLUE_MASK B_MASK_32
#define GST_TYPE_CACASINK \ #define GST_TYPE_CACASINK \
(gst_cacasink_get_type()) (gst_cacasink_get_type())
@ -59,31 +63,26 @@ typedef struct _GstCACASink GstCACASink;
typedef struct _GstCACASinkClass GstCACASinkClass; typedef struct _GstCACASinkClass GstCACASinkClass;
struct _GstCACASink { struct _GstCACASink {
GstElement element; GstVideoSink videosink;
GstPad *sinkpad; GstPad *sinkpad;
gulong format; gulong format;
gint screen_width, screen_height; gint screen_width, screen_height;
gint image_width, image_height;
guint bpp; guint bpp;
guint dither; guint dither;
guint red_mask, green_mask, blue_mask; guint red_mask, green_mask, blue_mask;
gint frames_displayed; gint64 correction;
guint64 frame_time; GstClockID id;
GstClock *clock;
struct caca_bitmap *bitmap; struct caca_bitmap *bitmap;
}; };
struct _GstCACASinkClass { struct _GstCACASinkClass {
GstElementClass parent_class; GstVideoSinkClass parent_class;
/* signals */ /* signals */
void (*frame_displayed) (GstElement *element);
void (*have_size) (GstElement *element, guint width, guint height);
}; };
GType gst_cacasink_get_type(void); GType gst_cacasink_get_type(void);