2004-06-15 09:11:06 +00:00
|
|
|
/* GStreamer
|
|
|
|
*
|
|
|
|
* gstv4l.c: plugin for v4l elements
|
|
|
|
*
|
2003-09-13 08:58:48 +00:00
|
|
|
* Copyright (C) 2001-2002 Ronald Bultje <rbultje@ronald.bitfreak.net>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2004-01-19 15:45:55 +00:00
|
|
|
#include "gst/gst-i18n-plugin.h"
|
|
|
|
|
2003-09-13 08:58:48 +00:00
|
|
|
#include <gst/gst.h>
|
|
|
|
|
|
|
|
#include "gstv4lelement.h"
|
|
|
|
#include "gstv4lsrc.h"
|
|
|
|
#include "gstv4lmjpegsrc.h"
|
|
|
|
#include "gstv4lmjpegsink.h"
|
|
|
|
|
2004-04-27 11:33:52 +00:00
|
|
|
GST_DEBUG_CATEGORY (v4l_debug); /* used in v4l_calls.c and v4lsrc_calls.c */
|
2004-06-15 09:11:06 +00:00
|
|
|
GST_DEBUG_CATEGORY_EXTERN (v4loverlay_debug);
|
2004-04-27 11:33:52 +00:00
|
|
|
|
2003-09-13 08:58:48 +00:00
|
|
|
static gboolean
|
2004-03-14 22:34:34 +00:00
|
|
|
plugin_init (GstPlugin * plugin)
|
2003-09-13 08:58:48 +00:00
|
|
|
{
|
2004-04-27 11:33:52 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (v4l_debug, "v4l", 0, "V4L API calls");
|
2004-06-15 09:11:06 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (v4loverlay_debug, "v4loverlay", 0,
|
|
|
|
"V4L overlay calls");
|
2004-04-27 11:33:52 +00:00
|
|
|
|
2003-11-02 14:47:52 +00:00
|
|
|
/* actually, we can survive without it, but I'll create
|
|
|
|
* that handling later on. */
|
|
|
|
if (!gst_library_load ("xwindowlistener"))
|
2003-09-13 08:58:48 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2003-11-07 12:47:02 +00:00
|
|
|
if (!gst_element_register (plugin, "v4lelement",
|
2004-03-15 19:32:28 +00:00
|
|
|
GST_RANK_NONE, GST_TYPE_V4LELEMENT) ||
|
2003-11-07 12:47:02 +00:00
|
|
|
!gst_element_register (plugin, "v4lsrc",
|
2004-03-15 19:32:28 +00:00
|
|
|
GST_RANK_NONE, GST_TYPE_V4LSRC) ||
|
2003-11-07 12:47:02 +00:00
|
|
|
!gst_element_register (plugin, "v4lmjpegsrc",
|
2004-03-15 19:32:28 +00:00
|
|
|
GST_RANK_NONE, GST_TYPE_V4LMJPEGSRC) ||
|
2003-11-07 12:47:02 +00:00
|
|
|
!gst_element_register (plugin, "v4lmjpegsink",
|
2004-03-15 19:32:28 +00:00
|
|
|
GST_RANK_NONE, GST_TYPE_V4LMJPEGSINK))
|
2003-11-02 14:47:52 +00:00
|
|
|
return FALSE;
|
2003-09-13 08:58:48 +00:00
|
|
|
|
2004-01-19 15:45:55 +00:00
|
|
|
#ifdef ENABLE_NLS
|
|
|
|
setlocale (LC_ALL, "");
|
|
|
|
bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
|
|
|
|
#endif /* ENABLE_NLS */
|
|
|
|
|
2003-11-02 14:47:52 +00:00
|
|
|
return TRUE;
|
2003-09-13 08:58:48 +00:00
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
|
|
|
"video4linux",
|
|
|
|
"elements for Video 4 Linux",
|
|
|
|
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE, GST_ORIGIN)
|