2003-09-14 12:21:06 +00:00
|
|
|
/*
|
|
|
|
* GStreamer Video sink.
|
|
|
|
*
|
|
|
|
* Copyright (C) <2003> Julien Moutte <julien@moutte.net>
|
|
|
|
*
|
2004-08-11 21:06:48 +00:00
|
|
|
* 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.
|
2003-09-14 12:21:06 +00:00
|
|
|
*
|
2004-08-11 21:06:48 +00:00
|
|
|
* 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.
|
2003-09-14 12:21:06 +00:00
|
|
|
*
|
2004-08-11 21:06:48 +00:00
|
|
|
* 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-09-14 12:21:06 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2004-03-01 16:17:21 +00:00
|
|
|
#include "videosink.h"
|
2003-09-14 12:21:06 +00:00
|
|
|
|
|
|
|
static GstElementClass *parent_class = NULL;
|
|
|
|
|
|
|
|
|
|
|
|
/* Initing stuff */
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_videosink_init (GstVideoSink * videosink)
|
2003-09-14 12:21:06 +00:00
|
|
|
{
|
2003-11-19 22:41:45 +00:00
|
|
|
videosink->width = 0;
|
|
|
|
videosink->height = 0;
|
2003-09-14 12:21:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_videosink_class_init (GstVideoSinkClass * klass)
|
2003-09-14 12:21:06 +00:00
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
GstElementClass *gstelement_class;
|
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
gobject_class = (GObjectClass *) klass;
|
|
|
|
gstelement_class = (GstElementClass *) klass;
|
2003-09-14 12:21:06 +00:00
|
|
|
|
|
|
|
parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Public methods */
|
|
|
|
|
|
|
|
GType
|
|
|
|
gst_videosink_get_type (void)
|
|
|
|
{
|
|
|
|
static GType videosink_type = 0;
|
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
if (!videosink_type) {
|
|
|
|
static const GTypeInfo videosink_info = {
|
|
|
|
sizeof (GstVideoSinkClass),
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
(GClassInitFunc) gst_videosink_class_init,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
sizeof (GstVideoSink),
|
|
|
|
0,
|
|
|
|
(GInstanceInitFunc) gst_videosink_init,
|
|
|
|
};
|
|
|
|
|
2005-03-31 09:43:49 +00:00
|
|
|
videosink_type = g_type_register_static (GST_TYPE_BASESINK,
|
2004-03-15 19:32:28 +00:00
|
|
|
"GstVideoSink", &videosink_info, 0);
|
2004-03-14 22:34:34 +00:00
|
|
|
}
|
|
|
|
|
2003-09-14 12:21:06 +00:00
|
|
|
return videosink_type;
|
|
|
|
}
|